/* WIGAN CONCRETE */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --yellow: #fcea1c;
    --blue: #204be6;
    --dark: #0e0e10;
    --white: #fff;
    --font-heading: 'Cal Sans', sans-serif;
    --font-body: 'Golos Text', sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--dark); overflow-x: hidden; }
::selection { background: var(--yellow); color: var(--dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
address { font-style: normal; }


/* ================================================================
   HEADER
   ================================================================ */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}

.header--solid {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    border-bottom-color: rgba(0, 0, 0, .06);
}

.header--solid .header__nav a {
    color: #111;
    font-weight: 500;
}

.header--solid .header__nav a:hover {
    color: var(--dark);
}

.header--solid .header__phone-icon {
    border-color: rgba(0, 0, 0, .12);
    color: var(--dark);
}

.header--solid .header__phone-info small {
    color: #111;
}

.header--solid .header__phone-info strong {
    color: var(--dark);
}

.header--solid .header__burger span {
    background: var(--dark);
}

.header--solid .header__cta {
    background: #022eb3;
    color: var(--white);
}

.header__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
}

.header__logo img { height: 44px; }

/* Nav - positioned after logo with gap */
.header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 52px;
    margin-right: auto;
}

.header__nav a {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    transition: color .3s, background .3s;
    letter-spacing: .2px;
}

.header__nav a:hover { color: var(--white); }

/* Right side actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.header__phone-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: border-color .3s;
}

.header__phone-wrap:hover .header__phone-icon { border-color: var(--yellow); }

.header__phone-info { display: flex; flex-direction: column; }
.header__phone-info small { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .5px; }
.header__phone-info strong { font-size: 17px; font-weight: 800; color: var(--white); transition: color .3s; }
.header__phone-wrap:hover .header__phone-info strong { color: var(--yellow); }

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 8px 8px 8px 22px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all .35s var(--ease);
}

.header__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--yellow);
    margin-left: 14px;
    transition: transform .35s var(--ease);
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 234, 28, .3);
}

.header__cta:hover .header__cta-icon {
    transform: rotate(45deg);
}

.header--solid .header__cta {
    background: #022eb3;
    color: #fff;
}

.header--solid .header__cta-icon {
    background: var(--yellow);
    color: #111;
}

/* Burger - Antra style dots in circle */
.header__burger {
    display: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: none;
    cursor: pointer;
    z-index: 110;
    align-items: center;
    justify-content: center;
    transition: border-color .3s;
    padding: 0;
    position: relative;
}

.header__burger:hover {
    border-color: rgba(255, 255, 255, .4);
}

.header--solid .header__burger {
    border-color: rgba(0, 0, 0, .12);
}

.header--solid .header__burger .burger-dots {
    background: transparent;
}

.header--solid .burger-dots span {
    background: var(--dark);
}

.burger-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 14px; height: 14px;
}

.burger-dots span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--white);
    transition: background .3s;
}

/* Mobile nav - Antra style slide-in from right */
.mob-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 60%;
    max-width: 480px;
    z-index: 105;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    padding: 0;
}

.mob-nav.active {
    transform: translateX(0);
}

/* Overlay behind the panel */
.mob-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 104;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.mob-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mob-nav__inner {
    padding: 28px 32px;
}

.mob-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mob-nav__header img {
    height: 36px;
}

.mob-nav__close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    font-size: 28px; color: var(--dark); font-weight: 300;
    transition: transform .3s var(--ease);
}

.mob-nav__close:hover {
    transform: rotate(90deg);
}

.mob-nav__links {
    display: flex;
    flex-direction: column;
}

.mob-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    transition: color .25s;
    transform: translateX(20px);
    opacity: 0;
    transition: all .4s var(--ease);
}

.mob-nav.active .mob-nav__links a {
    transform: translateX(0);
    opacity: 1;
}

.mob-nav.active .mob-nav__links a:nth-child(1) { transition-delay: .1s; }
.mob-nav.active .mob-nav__links a:nth-child(2) { transition-delay: .15s; }
.mob-nav.active .mob-nav__links a:nth-child(3) { transition-delay: .2s; }
.mob-nav.active .mob-nav__links a:nth-child(4) { transition-delay: .25s; }
.mob-nav.active .mob-nav__links a:nth-child(5) { transition-delay: .3s; }

.mob-nav__links a:hover {
    color: var(--yellow);
}

.mob-nav__links a::after {
    content: '›';
    font-size: 24px;
    font-weight: 300;
    color: rgba(0, 0, 0, .25);
    transition: transform .3s var(--ease);
}

.mob-nav__links a:hover::after {
    transform: translateX(4px);
    color: var(--yellow);
}

.mob-nav__foot {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.mob-nav__foot a {
    display: block;
    padding: 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s;
}

.mob-nav__foot a:hover {
    color: var(--yellow);
}

.mob-nav__foot-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.mob-nav__foot-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--dark);
    transition: all .25s;
}

.mob-nav__foot-social a:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero__slide.active {
    opacity: 1;
}

/* Overlay - darkened for bright stock image */
.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.5) 100%),
        linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 45%);
}

/* Content - flush left, sits at the bottom */
.hero__content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    right: auto;
    z-index: 3;
}

/* Label pill - like Antra's "FAST AND RELIABLE" */
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 16px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 28px;
}

.hero__label-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--yellow);
}

/* Title - Cal Sans, 120px */
.hero__title {
    font-family: var(--font-heading);
    font-size: 105px;
    font-weight: 400;
    color: var(--white);
    line-height: 0.93;
    letter-spacing: -2px;
    margin-bottom: 36px;
    padding-bottom: 12px;
}

.hero__title span { color: var(--yellow); }

/* Lower content block - indented like Antra */
.hero__lower {
    padding-left: 0;
}

/* Description */
.hero__desc {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 32px;
}

/* CTA - rounded pill with yellow icon circle */
.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 12px 12px 12px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: all .4s var(--ease);
}

.hero__cta-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    margin-left: 18px;
    transition: transform .4s var(--ease);
}

.hero__cta-btn:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.hero__cta-btn:hover .hero__cta-icon { transform: rotate(45deg); }


/* Glass card - bottom right, inset from edge */
.hero__card {
    position: absolute;
    bottom: 80px;
    right: calc(50% - 720px + 40px);
    z-index: 3;
    display: flex;
    align-items: stretch;
    gap: 10px;
    height: 260px;
}

.hero__card-stats {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 28px 32px;
    min-width: 280px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__card-number {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.hero__card-stats > p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.4;
}

.hero__card-divider {
    width: 100%; height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 14px 0;
}

.hero__card-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 4px;
}

.hero__card-list li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}

.hero__card-img {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.hero__card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}


/* ================================================================
   WHY CHOOSE US
   ================================================================ */

.why {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #f2f2f2 0%, #f2f2f2 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Concrete aggregate dot texture */
.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

/* Top area: pill left, heading right */
.why__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.why__label-wrap {
    flex-shrink: 0;
    padding-top: 14px;
}

.why__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px 10px 18px;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #022eb3;
    white-space: nowrap;
}

.why__heading {
    max-width: 640px;
    text-align: left;
    overflow: visible;
}

.why__heading h2 {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.0;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 24px;
}

.why__heading h2 span {
    color: var(--yellow);
}

.why__heading p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

/* Cards grid - full width, no container */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.why__card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 52px 40px 60px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}

.why__card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-6px);
}

/* Card top: title left, icon right */
.why__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
}

.why__card-top h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark);
    line-height: 1.15;
}

.why__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #022eb3;
}

.why__card-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.2;
}

/* Divider line */
.why__card-line {
    width: 48px;
    height: 2px;
    background: #022eb3;
    margin: 36px 0 32px;
    transition: width .4s var(--ease);
}

.why__card:hover .why__card-line {
    width: 80px;
}

/* Card text */
.why__card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}


/* ================================================================
   UTILITIES
   ================================================================ */

.wa-fab {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    z-index: 90;
    transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.wa-fab:hover { transform: scale(1.1) translateY(-2px); }

.footer { background: #111; }

[data-hero] { opacity: 0; }
[data-reveal] { opacity: 0; }


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
    .header__nav, .header__actions { display: none; }
    .header__burger { display: flex; }
    .header__inner { padding: 0 24px; }

    .hero__content { left: 24px; right: 24px; }
    .hero__title { font-size: 72px; }
    .hero__lower { padding-left: 80px; }
    .hero__card { display: none; }

    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .why__card { box-shadow: inset 0 -1px 0 rgba(0,0,0,.06); }
    .why__card:last-child { box-shadow: none; }
    .why__top { flex-direction: column; gap: 24px; }
    .why__heading { max-width: 100%; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; height: 78vh; }

    /* Centre everything on mobile like Antra */
    .hero__content {
        left: 0;
        right: 0;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero__title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .header__logo img {
        height: 34px;
    }

    .hero__lower {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__desc {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
    }

    /* Overlay darker on mobile for readability */
    .hero::after {
        background:
            linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.5) 100%);
    }

    .why { padding: 80px 0; }
    .why__grid { grid-template-columns: 1fr; }
    .why__heading h2 { font-size: 36px; }
    .why__heading { text-align: center; }
    .why__heading p { text-align: center; }
    .why__label-wrap { align-self: center; }
    .why__card-top h3 { font-size: 20px; }
    .why__card { padding: 32px 24px 36px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 36px; letter-spacing: -1px; }
    .hero__label { font-size: 10px; padding: 6px 14px 6px 12px; }
    .hero__content { left: 16px; right: 16px; }
}

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f2f2f2; }
::-webkit-scrollbar-thumb { background: #022eb3; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #0136d4; }
* { scrollbar-width: thin; scrollbar-color: #022eb3 #f2f2f2; }

.why__label .hero__label-dot { background: #022eb3; }

/* ================================================================
   SERVICES
   ================================================================ */
.services {
    background: #fff;
    padding: 120px 0;
}

.services__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services__left {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 640px;
}

.services__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__left-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    background: rgba(2, 46, 179, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.services__left-caption p {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
}

.services__top {
    margin-bottom: 48px;
}

.services__top .why__label {
    margin-bottom: 24px;
}

.services__top h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 16px;
}

.services__top h2 span {
    color: var(--yellow);
}

.services__top p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
}

.services__list {
    display: flex;
    flex-direction: column;
}

.services__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: all .3s var(--ease);
    text-decoration: none;
}

.services__item:first-child {
    border-top: 1px solid rgba(0,0,0,.08);
}

.services__item-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.services__num {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #022eb3;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 24px;
}

.services__name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    transition: color .3s var(--ease);
}

.services__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022eb3;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.services__item:hover .services__name {
    color: #022eb3;
}

.services__item:hover .services__item-icon {
    background: #022eb3;
    border-color: #022eb3;
    color: #fff;
    transform: rotate(15deg);
}

.services__item:hover {
    padding-left: 8px;
}

@media (max-width: 1100px) {
    .services__inner { grid-template-columns: 1fr; gap: 60px; }
    .services__left { height: 400px; }
}

@media (max-width: 768px) {
    .services { padding: 80px 0; }
    .services__inner { padding: 0 20px; }
    .services__top h2 { font-size: 40px; }
    .services__name { font-size: 22px; }
}

/* ================================================================
   AREAS
   ================================================================ */
.areas {
    background: #022eb3;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.areas__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.areas__head {
    text-align: center;
    margin-bottom: 60px;
}

.areas__head .why__label {
    display: inline-flex;
    margin-bottom: 28px;
}

.areas__title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.areas__title span {
    color: var(--yellow);
}

.areas__sub {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

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

.areas__tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--font-body);
}

.areas__tab:hover {
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.areas__tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #111;
}

.areas__grid {
    position: relative;
}

.areas__region {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.areas__region.active {
    display: flex;
}

.areas__pill {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s var(--ease);
    background: rgba(255,255,255,.04);
}

.areas__pill:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #111;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .areas { padding: 80px 0; }
    .areas__inner { padding: 0 20px; }
    .areas__title { font-size: 36px; }
    .areas__tabs { gap: 8px; }
    .areas__tab { font-size: 13px; padding: 8px 18px; }
}

/* ================================================================
   SERVICES MOBILE FIX
   ================================================================ */
@media (max-width: 768px) {
    .services__top { text-align: center; }
    .services__top .why__label { justify-content: center; }
    .services__item { padding: 20px 0; }
    .services__item:hover { padding-left: 0; }
}

/* ================================================================
   FAQs
   ================================================================ */
.faqs {
    background: #fff;
    padding: 120px 0;
}

.faqs__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.faqs__top .why__label {
    display: inline-flex;
    margin-bottom: 24px;
}

.faqs__top {
    margin-bottom: 48px;
}

.faqs__top .why__label {
    margin-bottom: 24px;
}

.faqs__top h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
}

.faqs__top h2 span {
    color: var(--yellow);
}

.faqs__list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,.08);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
}

.faq-item__num {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #022eb3;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 24px;
    flex-shrink: 0;
}

.faq-item__q {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    flex: 1;
    transition: color .3s var(--ease);
}

.faq-item__question[aria-expanded="true"] .faq-item__q {
    color: #022eb3;
}

.faq-item__icon {
    font-size: 24px;
    font-weight: 300;
    color: #022eb3;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
    line-height: 1;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 0 24px 44px;
}

.faq-item__answer.open {
    display: block;
}

.faq-item__answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.faqs__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.faqs__img {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.faqs__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faqs__cta-card {
    background: #f8f8fa;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs__cta-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.faqs__cta-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.faqs__cta-card .header__cta {
    background: #022eb3;
    color: #fff;
}

.faqs__cta-card .header__cta-icon {
    background: var(--yellow);
    color: #111;
}

@media (max-width: 1100px) {
    .faqs__inner { grid-template-columns: 1fr; gap: 60px; }
    .faqs__right { position: static; }
}

@media (max-width: 768px) {
    .faqs { padding: 80px 0; }
    .faqs__inner { padding: 0 20px; }
    .faqs__top { text-align: center; }
    .faqs__top .why__label { justify-content: center; }
    .faqs__top h2 { font-size: 36px; }
    .faq-item__q { font-size: 16px; }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
    background: linear-gradient(to bottom, #fff 0%, #efefef 20%, #efefef 80%, #fff 100%);
    padding: 120px 0;
}

.contact__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__right-wrap {
    display: flex;
    flex-direction: column;
}

.contact__right-wrap .why__label {
    display: inline-flex;
    width: fit-content;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 32px;
}

.contact__title span { color: var(--yellow); }

.contact__address {
    margin-bottom: 24px;
}

.contact__address .contact__detail-label {
    margin-bottom: 6px;
}

.contact__tabs {
    margin-bottom: 28px;
    margin-top: 4px;
}

.contact__detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.contact__detail p,
.contact__detail a {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-decoration: none;
    transition: color .3s;
    display: block;
}

.contact__detail a:hover { color: #022eb3; }

.contact__map-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
    transition: color .3s;
}

.contact__map-link:hover { color: #022eb3; }

.contact__map-link svg {
    margin-top: 4px;
    flex-shrink: 0;
}

.contact__wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
    transition: opacity .3s;
}

.contact__wa-link:hover { opacity: .8; color: #25d366; }

.contact__img {
    border-radius: 24px;
    overflow: hidden;
    height: 580px;
    position: relative;
}

.contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 28px;
    background: rgba(2, 46, 179, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
}

.contact__img-caption p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}

.contact__tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.contact__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(0,0,0,.1);
    background: transparent;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--font-body);
}

.contact__tab[data-tab="whatsapp"] {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: #111 !important;
    opacity: 1 !important;
}

.contact__tab[data-tab="email"] {
    background: #022eb3 !important;
    border-color: #022eb3 !important;
    color: #fff !important;
    opacity: 1 !important;
}

.contact__tab--call {
    background: var(--dark) !important;
    border-color: var(--dark) !important;
    color: #fff !important;
    text-decoration: none;
    opacity: 1 !important;
}

.contact__form-wrap {
    display: none;
}

.contact__form-wrap.active {
    display: block;
}

.contact__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.contact__field label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
    padding: 16px 20px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-family: var(--font-body);
    color: #333;
    background: #fff;
    box-shadow: 0 0 0 1.5px rgba(0,0,0,.08);
    transition: box-shadow .3s;
    outline: none;
    resize: none;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
    box-shadow: 0 0 0 2px #022eb3;
}

.contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 14px 14px 14px 28px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .35s var(--ease);
    margin-top: 8px;
}

.contact__submit--wa {
    background: var(--yellow);
    color: #111;
}

.contact__submit--em {
    background: #022eb3;
    color: #fff;
}

.contact__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.contact__submit .header__cta-icon {
    margin-left: 14px;
}

@media (max-width: 1100px) {
    .contact__body { grid-template-columns: 1fr; gap: 48px; }
    .contact__img { min-height: 360px; }
}

@media (max-width: 768px) {
    .contact { padding: 80px 0; }
    .contact__inner { padding: 0 20px; }
    .contact__title { font-size: 36px; letter-spacing: -1px; text-align: center; }
    .contact__address { text-align: center; }
    .contact__address .contact__map-link { justify-content: center; display: flex; flex-wrap: wrap; }
    .contact__form-grid { grid-template-columns: 1fr; }
    .contact__tabs { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .contact__tab { justify-content: center; font-size: 13px; padding: 10px 16px; }
    .contact__submit { width: 100%; justify-content: center; }
    .contact__right-wrap { text-align: center; align-items: center; display: flex; flex-direction: column; }
    .contact__right-wrap .why__label { justify-content: center; }
    .contact__field { text-align: left; }
    .contact__img { height: 300px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: #022eb3;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.footer__main {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer__logo {
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer__logo-text strong {
    color: var(--yellow);
    font-weight: 900;
}

.footer__tagline {
    font-size: 15px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
    font-weight: 500;
}

.footer__address {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color .3s;
    font-weight: 500;
}

.footer__col a:hover {
    color: var(--yellow);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__phone {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
    transition: color .3s;
}

.footer__phone:hover { color: var(--yellow); }

.footer__email {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: color .3s;
    font-weight: 500;
}

.footer__email:hover { color: var(--yellow); }

.footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.footer__social a svg {
    fill: #022eb3;
    stroke: none;
}

.footer__social a:hover {
    background: #fff;
    transform: translateY(-3px);
}

.footer__social a:hover svg {
    fill: #022eb3;
}

.footer__bottom {
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer__bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__bottom-inner p {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.footer__credit-inline {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .3s;
    font-weight: 600;
}

.footer__credit-inline:hover { color: var(--yellow); }

@media (max-width: 1100px) {
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .footer__main { padding: 60px 0 40px; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; text-align: center; }
    .footer__tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
    .footer__logo { display: flex; justify-content: center; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__col h4 { text-align: center; }
    .footer__col a { text-align: center; }
    .footer__contact { align-items: center; }
    .footer__social { justify-content: center; }
    .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 0 20px; }
}

/* ================================================================
   HOW WE MIX
   ================================================================ */
.mix {
    background: #022eb3;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.mix::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.mix__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.mix__head {
    text-align: center;
    margin-bottom: 64px;
}

.mix__head .why__label {
    display: inline-flex;
    margin-bottom: 24px;
}

.mix__head h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.0;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 16px;
}

.mix__head h2 span {
    color: var(--yellow);
}

.mix__head p {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
}

.mix__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mix__card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 48px 40px 52px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.mix__card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.2);
}

.mix__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #022eb3;
    flex-shrink: 0;
}

.mix__card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #022eb3;
}

.mix__card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.mix__card p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .mix__grid { grid-template-columns: 1fr; gap: 20px; }
    .mix__head h2 { font-size: 48px; }
}

@media (max-width: 768px) {
    .mix { padding: 80px 0; }
    .mix__inner { padding: 0 20px; }
    .mix__head h2 { font-size: 38px; }
    .mix__card { padding: 36px 28px 40px; text-align: center; align-items: center; }
    .mix__card h3 { font-size: 24px; }
    .mix__card-line { margin-left: auto; margin-right: auto; }
}

.mix__card-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 20px;
}

/* ================================================================
   GROUNDWORKS
   ================================================================ */
.groundworks {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.groundworks::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.groundworks__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.groundworks__left .why__label {
    display: inline-flex;
    margin-bottom: 24px;
}

.groundworks__left h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 20px;
}

.groundworks__left h2 span {
    color: var(--yellow);
}

.groundworks__intro {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 40px;
}

.groundworks__list {
    display: flex;
    flex-direction: column;
}

.groundworks__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: all .3s var(--ease);
    text-decoration: none;
}

.groundworks__item:first-child {
    border-top: 1px solid rgba(0,0,0,.08);
}

.groundworks__item-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.groundworks__num {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 24px;
}

.groundworks__name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    transition: color .3s var(--ease);
}

.groundworks__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022eb3;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.groundworks__item:hover .groundworks__name {
    color: var(--yellow);
}

.groundworks__item:hover .groundworks__item-icon {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #111;
}

.groundworks__item:hover {
    padding-left: 8px;
}

.groundworks__img {
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    position: relative;
}

.groundworks__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.groundworks__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 28px;
    background: rgba(2, 46, 179, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
}

.groundworks__img-caption p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}

@media (max-width: 1100px) {
    .groundworks__inner { grid-template-columns: 1fr; gap: 48px; }
    .groundworks__img { height: 400px; }
}

@media (max-width: 768px) {
    .groundworks { padding: 80px 0; }
    .groundworks__inner { padding: 0 20px; }
    .groundworks__left h2 { font-size: 38px; }
    .groundworks__name { font-size: 20px; }
    .groundworks__left { text-align: center; }
    .groundworks__left .why__label { justify-content: center; }
    .groundworks__item { padding-left: 0 !important; }
    .groundworks__item-left { gap: 16px; }
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 30%, #f2f2f2 70%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.gallery__head {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 40px;
    position: relative;
}

.gallery__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px 10px 18px;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #022eb3;
    white-space: nowrap;
    margin-bottom: 24px;
}

.gallery__watermark {
    font-family: var(--font-body);
    font-size: 120px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(2,46,179,.06);
    text-transform: uppercase;
    letter-spacing: 24px;
    white-space: nowrap;
    user-select: none;
    display: block;
    line-height: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    pointer-events: none;
    z-index: 0;
}

.gallery__track-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.gallery__track {
    overflow: hidden;
    width: 100%;
}

.gallery__inner {
    display: flex;
    gap: 16px;
    width: max-content;
    align-items: center;
}

.gallery__track--left .gallery__inner {
    animation: scrollLeft 50s linear infinite;
}

.gallery__track--right .gallery__inner {
    animation: scrollRight 50s linear infinite;
}

.gallery__item {
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.gallery__item--tall {
    width: 260px;
    height: 360px;
}

.gallery__item--short {
    width: 300px;
    height: 260px;
}

.gallery__item--wide {
    width: 360px;
    height: 300px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery__track:hover .gallery__inner {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .gallery__watermark { font-size: 60px; letter-spacing: 12px; }
    .gallery__item--tall { width: 180px; height: 260px; }
    .gallery__item--short { width: 220px; height: 180px; }
    .gallery__item--wide { width: 260px; height: 200px; }
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.0;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 0;
}

.gallery__title span {
    color: var(--yellow);
}

/* ================================================================
   SEO SERVICE-LOCATION PAGE
   ================================================================ */
.seo-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
}

.seo-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/images/HeroConcrete.png') center/cover no-repeat;
    z-index: 0;
}

.seo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.8) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.5) 100%),
                linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
    z-index: 1;
}

.seo-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 160px 40px 80px;
    width: 100%;
}

.seo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255,255,255,.8);
}

.seo-breadcrumb a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .3s;
}

.seo-breadcrumb a:hover { color: var(--yellow); }

.seo-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 16px;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #022eb3;
    margin-bottom: 24px;
}

.seo-hero__title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 400;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 28px;
    padding-bottom: 8px;
}

.seo-hero__title span { color: var(--yellow); }

.seo-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 500;
}

.seo-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.seo-hero__call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

.seo-hero__call:hover {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.04);
}

/* USPs */
.seo-usps {
    background: #022eb3;
    padding: 0;
    position: relative;
    z-index: 1;
}

.seo-usps__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.seo-usp {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative;
}

.seo-usp:last-child { border-right: none; }

.seo-usp__num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .5;
}

.seo-usp h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.seo-usp p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

/* Body content */
.seo-body {
    background: #fff;
    padding: 100px 0;
}

.seo-body__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.seo-body__services .seo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.seo-tab {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--font-body);
}

.seo-tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #022eb3;
}

.seo-region {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-region.active {
    display: flex;
}

.seo-region a {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(2,46,179,.15);
    color: #022eb3;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: rgba(2,46,179,.04);
    transition: all .3s var(--ease);
}

.seo-region a:hover {
    background: #022eb3;
    border-color: #022eb3;
    color: #fff;
}

.seo-body__content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 24px;
}

.seo-body__content h2 span { color: var(--yellow); }

.seo-body__content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark);
    margin: 32px 0 12px;
}

.seo-body__content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-body__content a {
    color: #022eb3;
    text-decoration: none;
    font-weight: 600;
}

.seo-services__list {
    display: flex;
    flex-direction: column;
}

.seo-service__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    text-decoration: none;
    transition: all .3s var(--ease);
}

.seo-service__item:first-child { border-top: 1px solid rgba(0,0,0,.08); }

.seo-service__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.seo-service__num {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #022eb3;
    font-weight: 700;
    min-width: 24px;
}

.seo-service__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    transition: color .3s;
}

.seo-service__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022eb3;
    transition: all .3s;
    flex-shrink: 0;
}

.seo-service__item:hover .seo-service__name { color: #022eb3; }
.seo-service__item:hover .seo-service__icon { background: #022eb3; border-color: #022eb3; color: #fff; }
.seo-service__item:hover { padding-left: 8px; }

.seo-service__item--active .seo-service__name { color: #022eb3; }
.seo-service__item--active .seo-service__icon { background: var(--yellow); border-color: var(--yellow); color: #111; }

@media (max-width: 1100px) {
    .seo-usps__inner { grid-template-columns: repeat(2, 1fr); }
    .seo-usp { border-bottom: 1px solid rgba(255,255,255,.08); }
    .seo-body__inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .seo-body__inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
    .seo-body { padding: 60px 0; }
    .seo-body__content { text-align: center; }
    .seo-body__content .why__label { justify-content: center; }
    .seo-body__content h2 { font-size: 32px; }
    .seo-body__content h3 { text-align: center; }
    .seo-body__content p { text-align: left; }
    .seo-body__content a.hero__cta-btn { display: inline-flex; margin: 0 auto; }
    .seo-body__services { text-align: center; }
    .seo-body__services .why__label { justify-content: center; }
    .seo-body__services .seo-tabs { justify-content: center; }
    .seo-region { justify-content: center; }
    .seo-services__list { padding: 0; }
    .seo-service__item:hover { padding-left: 0; }
    .seo-service__item { justify-content: flex-start; }
}

/* ================================================================
   SEO PAGE CONTACT MOBILE FIXES
   ================================================================ */
@media (max-width: 768px) {
    .contact__right-wrap {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .contact__right-wrap .why__label { justify-content: center; }
    .contact__address { text-align: center; }
    .contact__map-link { 
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: normal;
        text-align: center;
    }
    .contact__map-link svg { flex-shrink: 0; margin-top: 0; }
    .contact__tabs { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .contact__tab { font-size: 12px; padding: 8px 14px; }
    .contact__field { text-align: left; }
    .contact__submit { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .contact__tabs {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    .contact__tab {
        flex: 1 1 auto !important;
        justify-content: center !important;
    }
    .contact__tab--call {
        flex: 0 0 auto !important;
        width: auto !important;
    }
    .contact__form-wrap {
        width: 100% !important;
    }
    .contact__form-grid {
        grid-template-columns: 1fr !important;
    }
    .contact__field input,
    .contact__field select,
    .contact__field textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.faqs + .contact {
    position: relative;
}

.faqs + .contact::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #f8f8fa, var(--contact-bg, #f2f2f2));
    pointer-events: none;
    z-index: 0;
}

.faqs + .contact {
    margin-top: 0;
}

.faqs {
    border-bottom: none !important;
}

.contact {
    border-top: none !important;
}
