/* ═══════════════════════════════════════════════════
   RESTORER CLEANING SERVICES — index_new.css
   Design: refined navy + sky-blue + warm white
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --navy:      #0a1628;
    --navy-mid:  #122040;
    --navy-lite: #1c3058;
    --sky:       #34b4f4;
    --sky-dark:  #1a8fc4;
    --sky-lite:  #a8dcf8;
    --cream:     #f8f6f2;
    --white:     #ffffff;
    --grey-1:    #f0eeea;
    --grey-2:    #d4d0c8;
    --grey-3:    #8a8680;
    --text:      #1a1814;
    --text-lite: #5a5650;

    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
    --shadow:    0 6px 24px rgba(10,22,40,.12);
    --shadow-lg: 0 16px 48px rgba(10,22,40,.18);

    --nav-h: 72px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul, ol { list-style:none; }
input, textarea, select {
    font-family: var(--font-body);
    font-size:1rem;
    outline:none;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT HELPERS ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section-pad { padding: 5rem 0; }
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: .75rem;
}
.section-tag.light { color: var(--sky-lite); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}
.section-title.light { color: var(--white); }
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
    display: inline-block;
    padding: .85em 2.2em;
    background: var(--sky);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(52,180,244,.35);
}
.btn-primary:hover {
    background: var(--sky-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52,180,244,.4);
}
.btn-primary.full-width { width:100%; text-align:center; }

.btn-ghost {
    display: inline-block;
    padding: .85em 2.2em;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline {
    display: inline-block;
    padding: .8em 2em;
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid var(--navy);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }


/* ══════════════════════════════════
   SITE HEADER / NAVBAR
══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 2rem;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52,180,244,.4);
}
.nav-brand-text {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.nav-brand-text em {
    display: block;
    font-style: italic;
    color: var(--sky-lite);
    font-size: .9em;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}
.nav-link {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--sky);
    transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .caret { font-size: .7em; margin-left: .2em; transition: transform var(--transition); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: .5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: .55rem 1.2rem;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--sky); background: rgba(52,180,244,.07); }

/* CTA pill */
.nav-cta-btn {
    padding: .55em 1.4em;
    background: var(--sky);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: background var(--transition);
    white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--sky-dark); }
.nav-cta-btn::after { display:none !important; }

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: var(--navy);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 998;
    padding: 1.5rem 1.25rem;
}
.mobile-drawer.open {
    display: block;
    transform: translateX(0);
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav-links li a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
}
.mobile-nav-links li a:hover { color: var(--sky); }
.mobile-nav-links li a.active { color: var(--sky); }

/* Services row — label + rotating SVG chevron */
.mobile-services-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.mobile-services-row span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color var(--transition);
}
.mobile-services-row svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,.5);
    flex-shrink: 0;
    transition: transform var(--transition), stroke var(--transition);
}
.mobile-services-row:hover span,
.mobile-services-row.open span { color: var(--sky); }
.mobile-services-row:hover svg { stroke: var(--sky); }
.mobile-services-row.open svg {
    transform: rotate(90deg);
    stroke: var(--sky);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-left: 1rem;
}
.mobile-dropdown.open { max-height: 400px; }
.mobile-dropdown li a {
    font-size: .95rem;
    padding: .6rem 0;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.mobile-dropdown li a:hover { color: var(--sky); }

.mobile-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: .8em 2em;
    background: var(--sky);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
}


/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(52,180,244,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(52,180,244,.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-overlay { display:none; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2.5rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: .4em 1em;
    background: rgba(52,180,244,.15);
    color: var(--sky-lite);
    border: 1px solid rgba(52,180,244,.25);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}
.hero-accent {
    color: var(--sky);
    font-style: italic;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero carousel */
.hero-carousel {
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .8s cubic-bezier(.77,0,.18,1);
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
}
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
    background: var(--sky);
    transform: scale(1.3);
}


/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
    background: var(--sky);
    padding: .85rem 1.25rem;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: .03em;
}
.trust-icon { margin-right: .35em; font-weight: 700; }
.trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.4);
}


/* ══════════════════════════════════
   ABOUT INTRO
══════════════════════════════════ */
.about-intro { background: var(--white); }

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text p { color: var(--text-lite); line-height: 1.8; }

.about-image-block { position: relative; }
.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 3px solid var(--sky);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.about-img-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat-card {
    flex: 1;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--grey-2);
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
}
.stat-label {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-lite);
    margin-top: .3rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-us { background: var(--cream); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border: 1px solid var(--grey-2);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.why-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52,180,244,.1);
    border-radius: var(--radius-sm);
    color: var(--sky);
    flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
}
.why-card p { font-size: .9rem; color: var(--text-lite); line-height: 1.7; }


/* ══════════════════════════════════
   PILLARS
══════════════════════════════════ */
.pillars {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.pillars::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,180,244,.08) 0%, transparent 70%);
    pointer-events: none;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    border: 1.5px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    overflow: hidden;
}
.pillar-card {
    background: rgba(255,255,255,.03);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1.5px solid rgba(255,255,255,.06);
    transition: background var(--transition);
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: rgba(52,180,244,.06); }

.pillar-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(52,180,244,.2);
    line-height: 1;
}
.pillar-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--white);
}
.pillar-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }


/* ══════════════════════════════════
   HIGHLIGHT SECTION
══════════════════════════════════ */
.highlight-section {
    background:
        linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.highlight-section::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,180,244,.12) 0%, transparent 70%);
    pointer-events: none;
}
.highlight-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.highlight-text p { color: rgba(255,255,255,.72); line-height: 1.8; }

.highlight-deco {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.deco-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--white);
    transition: background var(--transition), border-color var(--transition);
}
.deco-card:hover { background: rgba(52,180,244,.1); border-color: rgba(52,180,244,.3); }
.deco-icon { font-size: 1.5rem; flex-shrink: 0; }


/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-section { background: var(--cream); }
.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.gallery-track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}
.gallery-container {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .25rem;
}
.gallery-container::-webkit-scrollbar { display: none; }
.gallery-container > div {
    min-width: 220px;
    max-width: 220px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-container > div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.gallery-container img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-container > div:hover img { transform: scale(1.05); }

.gallery-arrow {
    width: clamp(36px, 3.5vw, 52px);
    height: clamp(36px, 3.5vw, 52px);
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--navy);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.gallery-arrow:hover {
    background: var(--sky);
    color: var(--white);
    transform: scale(1.08);
}
.gallery-arrow svg {
    width: clamp(16px, 1.8vw, 22px);
    height: clamp(16px, 1.8vw, 22px);
}

/* Videos */
.video-gallery {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.vid-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--navy);
}
.vid-wrap video {
    width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
}


/* ══════════════════════════════════
   LOCAL EXPERTS
══════════════════════════════════ */
.local-experts {
    background: var(--white);
    border-top: 1px solid var(--grey-2);
    border-bottom: 1px solid var(--grey-2);
}
.experts-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.experts-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--navy);
}
.experts-inner p { color: var(--text-lite); line-height: 1.8; }


/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { background: var(--cream); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border: 1px solid var(--grey-2);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--sky-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(52,180,244,.18);
    line-height: 1;
}
.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
}
.service-card p { font-size: .88rem; color: var(--text-lite); line-height: 1.7; flex: 1; }
.service-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--sky);
    transition: gap var(--transition);
}
.service-link:hover { color: var(--sky-dark); }


/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,180,244,.07) 0%, transparent 70%);
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    transition: background var(--transition), border-color var(--transition);
}
.contact-item:hover { background: rgba(52,180,244,.1); border-color: rgba(52,180,244,.25); }
.contact-item-icon {
    width: 40px; height: 40px;
    background: rgba(52,180,244,.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--sky);
    flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item > div { display: flex; flex-direction: column; gap: .2rem; }
.contact-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sky-lite); }
.contact-value { font-size: .95rem; color: var(--white); font-weight: 500; }

.social-links { display: flex; gap: .75rem; }
.social-btn {
    width: 42px; height: 42px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-btn:hover {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
}
.social-btn svg { width: 16px; height: 16px; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.contact-form h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.75rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text-lite);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--grey-2);
    border-radius: var(--radius-sm);
    font-size: .93rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(52,180,244,.15);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }


/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--grey-2);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow);
}
.stars { font-size: 1rem; color: #f59e0b; letter-spacing: .1em; }
.testimonial-card p {
    font-size: .9rem;
    color: var(--text-lite);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}
.author-avatar {
    width: 38px; height: 38px;
    background: var(--sky);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author span { font-weight: 600; font-size: .88rem; color: var(--navy); }


/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--grey-2); }
details {
    padding: 0;
    background: transparent;
    overflow: visible;
    height: auto;
    display: block;
}
summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--sky);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
details[open] summary { color: var(--sky); }
details[open] summary::after { transform: rotate(45deg); }
details > p {
    padding: 0 0 1.25rem;
    color: var(--text-lite);
    line-height: 1.8;
    font-size: .93rem;
}
summary:hover { color: var(--sky); }


/* ══════════════════════════════════
   MAP + FOOTER
══════════════════════════════════ */
.map-wrap { line-height: 0; }

.site-footer {
    background: var(--navy);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.footer-logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52,180,244,.3);
}
.footer-brand-text strong {
    display: block;
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
}
.footer-brand-text p {
    color: rgba(255,255,255,.45);
    font-size: .78rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--sky); }
.footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}


/* ══════════════════════════════════
   RESPONSIVE — TABLET (768px)
══════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-card { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,.06); }
    .pillar-card:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .highlight-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-content {
        padding: 3rem 1.25rem 2rem;
        text-align: center;
        align-items: center;
    }
    .hero-sub { text-align: center; }
    .hero-carousel {
        min-height: 55vw;
        max-height: 380px;
    }

    .grid-2col { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-frame img { height: 300px; }

    .why-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-card { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,.06); }

    .services-grid { grid-template-columns: 1fr; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .footer-links { gap: 1rem; }

    .trust-bar-inner { gap: .75rem 1.25rem; }
    .trust-divider { display: none; }

    .form-row { grid-template-columns: 1fr; }

    .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }

    .gallery-container > div { min-width: 160px; max-width: 160px; }
    .gallery-container img { height: 120px; }

    .contact-form-wrap { padding: 1.5rem; border-radius: var(--radius); }

    .about-stats { flex-direction: column; }

    .highlight-deco { gap: .75rem; }
}