.sovok-header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sovok-header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-header-social a:hover {
    background: #fff;
    color: #000;
}

.sovok-header-contact {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    margin-right: 18px;
    transition: opacity 0.3s ease;
}

.sovok-header-contact:hover {
    color: #fff;
    opacity: 0.75;
}

/* Projects section (home) */
.sovok-projects {
    background: #fff;
    padding: 72px 0 96px;
}

.sovok-projects-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.sovok-projects-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-projects-filter:hover {
    background: #fff;
    color: #000;
    opacity: 0.85;
}

.sovok-projects-filter.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sovok-projects-filter.is-active:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

.sovok-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 20px;
}

.sovok-project-card {
    min-width: 0;
}

.sovok-project-card-thumb {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    background: #b8b8b8;
}

.sovok-project-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sovok-project-card-thumb:hover img {
    transform: scale(1.03);
}

.sovok-project-card-title {
    margin: 14px 0 0;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.sovok-project-card-title a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sovok-project-card-title a:hover {
    color: #000;
    opacity: 0.75;
}

.sovok-projects-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 48px 0;
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    text-align: center;
}

.sovok-projects-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
}

.sovok-projects-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-projects-page:hover {
    background: #fff;
    color: #000;
    opacity: 0.85;
}

.sovok-projects-page.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 1199px) {
    .sovok-projects-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .sovok-projects {
        padding: 56px 0 72px;
    }

    .sovok-projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .sovok-projects-filters {
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .sovok-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .sovok-projects-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .sovok-project-card-thumb {
        border-radius: 16px;
    }
}

.sovok-contact-page {
    padding-top: 180px;
    padding-bottom: 120px;
    background: #fff;
}

/* Contact page hero */
.sovok-contact-hero .tp-breadcrumb-title {
    font-size: clamp(72px, 12vw, 160px);
    letter-spacing: -0.03em;
}

/* Page hero banners (home + contact) */
.sovok-page-hero .sovok-hero-banner {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sovok-page-hero .sovok-hero-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.sovok-page-hero .sovok-hero-banner__img--mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .sovok-page-hero .sovok-hero-banner__img--desktop {
        display: none;
    }

    .sovok-page-hero .sovok-hero-banner__img--mobile {
        display: block;
    }
}

/* Contact page body */
.sovok-contact-body {
    padding: 100px 0 120px;
    background: #fff;
}

.sovok-contact-info {
    color: #000;
    padding-right: 24px;
}

.sovok-contact-heading {
    margin: 0 0 20px;
    color: #000;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sovok-contact-text {
    margin: 0 0 36px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.sovok-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.sovok-contact-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sovok-contact-pills a:hover {
    background: #000;
    color: #fff;
}

.sovok-contact-pills a.sovok-contact-pill-whatsapp {
    gap: 10px;
    border-color: #000;
    background: #fff;
    color: #000;
}

.sovok-contact-pills a.sovok-contact-pill-whatsapp:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.sovok-contact-pill-whatsapp-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sovok-contact-pill-whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sovok-contact-form-wrap {
    background: #f5f5f5;
    padding: 36px 32px;
}

.sovok-contact-form-title {
    margin: 0 0 24px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sovok-contact-form-success {
    margin: 0 0 20px;
    padding: 14px 16px;
    background: #e8f8ee;
    color: #146c2e;
    font-size: 14px;
    font-weight: 600;
}

.sovok-contact-form-errors {
    margin: 0 0 20px;
    padding: 14px 16px;
    background: #fdecec;
    color: #9b1c1c;
    font-size: 14px;
    font-weight: 600;
}

.sovok-contact-form-errors p {
    margin: 0;
}

.sovok-contact-form-errors p + p {
    margin-top: 6px;
}

.sovok-contact-form-row {
    margin-bottom: 18px;
}

.sovok-contact-form-row label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sovok-contact-form-row label span {
    font-weight: 500;
    text-transform: none;
    color: #666;
}

.sovok-contact-form-row input,
.sovok-contact-form-row textarea {
    width: 100%;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 0;
    outline: none;
}

.sovok-contact-form-row input:focus,
.sovok-contact-form-row textarea:focus {
    border-color: #25d366;
}

.sovok-contact-form-row textarea {
    min-height: 140px;
    resize: vertical;
}

.sovok-contact-form-note {
    margin: 8px 0 22px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.sovok-contact-form-note a {
    color: #000;
    text-decoration: underline;
}

.sovok-contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sovok-contact-form-submit:hover:not(:disabled) {
    background: #fff;
    color: #000;
}

.sovok-contact-form-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.sovok-contact-map-wrap {
    margin-top: 64px;
}

/* Floating WhatsApp — same footprint as back-to-top */
.sovok-whatsapp-float {
    position: fixed;
    right: 50px;
    bottom: 110px;
    z-index: 100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    transition: transform 0.3s ease-out;
}

.sovok-whatsapp-float svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.sovok-whatsapp-float:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

@media (max-width: 574.98px) {
    .sovok-whatsapp-float {
        right: 20px;
        /* Sit above the back-to-top button (shown at bottom: 50px) */
        bottom: 120px;
    }
}

.sovok-contact-address {
    margin: 0 0 32px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sovok-contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-contact-social a:hover {
    background: #000;
    color: #fff;
}

.sovok-contact-map {
    width: 100%;
    min-height: 480px;
    background: #f0f0f0;
}

.sovok-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

@media (max-width: 991px) {
    .sovok-contact-body {
        padding: 72px 0 96px;
    }

    .sovok-contact-info {
        padding-right: 0;
        margin-bottom: 16px;
    }

    .sovok-contact-form-wrap {
        padding: 28px 22px;
    }

    .sovok-contact-map-wrap {
        margin-top: 48px;
    }

    .sovok-contact-map,
    .sovok-contact-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .sovok-contact-body {
        padding: 56px 0 72px;
    }

    .sovok-contact-pills,
    .sovok-contact-social {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sovok-contact-page-card {
    color: #000;
}

.sovok-contact-page-logo img {
    max-width: 220px;
    height: auto;
}

@media (max-width: 1199px) {
    .sovok-header-contact {
        margin-right: 12px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .sovok-header-contact {
        display: none;
    }
}

/* Contact popup (burger menu) */
.sovok-contact-popup {
    width: 520px;
    padding: 40px 44px 48px;
    background: #fff;
}

.sovok-popup-top {
    margin-bottom: 36px;
}

.sovok-popup-logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

.sovok-popup-intro {
    margin-bottom: 28px;
}

.sovok-popup-heading {
    margin: 0 0 18px;
    color: #000;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.sovok-popup-text {
    margin: 0;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.sovok-popup-gallery {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.sovok-popup-gallery-item {
    flex: 1;
    min-width: 0;
}

.sovok-popup-gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.sovok-popup-contact {
    margin-bottom: 28px;
}

.sovok-popup-contact-title {
    margin: 0 0 18px;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.sovok-popup-contact-item {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-popup-contact-item + .sovok-popup-contact-item {
    margin-top: 10px;
}

.sovok-popup-contact-item a {
    color: #000;
    text-decoration: none;
}

.sovok-popup-contact-item a:hover {
    opacity: 0.7;
}

.sovok-popup-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sovok-popup-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 999px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-popup-social a:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 574.98px) {
    .sovok-contact-popup {
        width: 100%;
        padding: 32px 28px 40px;
    }

    .sovok-popup-heading {
        font-size: 32px;
    }

    .sovok-popup-contact-title {
        font-size: 30px;
    }
}

/* Footer */
.sovok-footer {
    background: #000;
    padding: 72px 0 56px;
    color: #fff;
}

.sovok-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px 32px;
    align-items: end;
}

.sovok-footer-col {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.sovok-footer-col-left {
    justify-content: space-between;
    gap: 48px;
}

.sovok-footer-col-center {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sovok-footer-col-right {
    align-items: flex-end;
    text-align: right;
    justify-content: space-between;
    gap: 24px;
}

.sovok-footer-brand img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.sovok-footer-social {
    justify-content: flex-start;
}

.sovok-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.sovok-footer-nav a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sovok-footer-nav a:hover {
    opacity: 0.75;
    color: #fff;
}

.sovok-footer-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.sovok-footer-cta {
    margin: 0;
    max-width: 280px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sovok-footer-contact-link {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sovok-footer-contact-link:hover {
    color: #fff;
    opacity: 0.75;
}

.sovok-footer-email {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sovok-footer-email:hover {
    color: #fff;
    opacity: 0.75;
}

.sovok-footer-copy {
    margin: 0;
    max-width: 320px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .sovok-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sovok-footer-col-center {
        order: -1;
    }

    .sovok-footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .sovok-footer-cta,
    .sovok-footer-copy {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .sovok-footer {
        padding: 56px 0 40px;
    }

    .sovok-footer-social {
        flex-wrap: wrap;
    }

    .sovok-footer-nav {
        gap: 20px;
    }
}

/* Project detail page */
.sovok-project-hero {
    position: relative;
}

.sovok-project-hero .sovok-hero-banner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 0;
    line-height: 0;
}

.sovok-project-hero .sovok-hero-banner__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.sovok-project-hero .sovok-hero-banner__img--mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .sovok-project-hero .sovok-hero-banner__img--desktop {
        display: none;
    }

    .sovok-project-hero .sovok-hero-banner__img--mobile {
        display: block;
    }
}

.sovok-project-hero > .container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding-bottom: 32px;
}

.sovok-project-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.sovok-project-hero-title-wrap {
    display: inline-flex;
    padding: 14px 28px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
}

.sovok-project-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sovok-project-hero-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.sovok-project-hero-type:hover {
    color: #000;
    opacity: 0.8;
}

.sovok-project-hero-desc {
    max-width: 640px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.sovok-project-hero-desc p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.sovok-project-hero-location p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.sovok-project-gallery {
    background: #fff;
    padding: 72px 0 96px;
}

.sovok-project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.sovok-project-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: #b8b8b8;
}

.sovok-project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sovok-project-gallery-action {
    display: flex;
    justify-content: center;
}

.sovok-project-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 36px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sovok-project-all-btn:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

@media (max-width: 991px) {
    .sovok-project-gallery {
        padding: 56px 0 72px;
    }

    .sovok-project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 40px;
    }

    .sovok-project-hero > .container {
        padding-bottom: 24px;
    }

    .sovok-project-hero-location {
        text-align: left !important;
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .sovok-project-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    .sovok-project-hero-title-wrap {
        padding: 12px 22px;
    }
}
