/* Ultra Modern Stylesheet for Annabelle's - White Body & Black Bookends */
:root {
    --bg-light: #ffffff;
    --bg-lighter: #f8f8fa;
    --text-main: #0a0a0c;
    --text-muted: #5a5a60;
    --accent: #d2a154; /* Champagne gold accent */
    --accent-hover: #e8bd78;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: auto; 
}

body.smooth-scroll {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



/* Typography Specifics */
h1, h2, h3, .syncopate { font-family: 'Syncopate', sans-serif; text-transform: uppercase; }
.playfair { font-family: 'Playfair Display', serif; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 4vw; }
.mt-4 { margin-top: 4rem; } .mt-6 { margin-top: 6rem; }
.text-center { text-align: center; }

/* Navbar - Transparent Dark Glass */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 2500;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.15); /* High transparency at the top */
    backdrop-filter: blur(10px);
    transition: padding 0.5s ease, background 0.5s ease, backdrop-filter 0.5s ease;
}
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.5); /* Deepens slightly when scrolling */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 4vw; }
.brand-logo img { height: 75px; transition: 0.3s; }
.nav-links { display: flex; gap: 3rem; }
.nav-links a { color: #ffffff; text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; font-weight: 500; text-transform: uppercase; }
.hover-underline { position: relative; }
.hover-underline::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--accent); transition: width 0.4s ease; }
.hover-underline:hover::after { width: 100%; }

/* Mobile phone icon — LEFT side of navbar on mobile, hidden on desktop */
.nav-phone-btn {
    display: none; /* hidden by default on desktop */
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}
.nav-phone-btn:hover { background: #b8892e; transform: scale(1.08); }
.nav-phone-btn i { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; }

/* Mobile-only hero logo: hidden on desktop */
.hero-mobile-logo { display: none; }

/* ==========================================================
   BUTTONS — Two clear variants:
   .btn-magnetic         → DARK button (hero, sections, white bg)
   .navbar .btn-magnetic → WHITE button (navbar, dark bg)
   ========================================================== */

/* DEFAULT: Dark solid button — works on white/light backgrounds */
.btn-magnetic {
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-main);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.4s ease, border-color 0.4s ease;
}
.btn-magnetic::before {
    content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 100%;
    background: var(--accent); transition: top 0.4s cubic-bezier(0.7, 0, 0.2, 1); z-index: 0;
}
.btn-magnetic .btn-text {
    position: relative;
    z-index: 1;
    color: inherit;
}
.btn-magnetic:hover { border-color: var(--accent); color: #000000; }
.btn-magnetic:hover::before { top: 0; }

/* NAVBAR OVERRIDE: White button — for dark glass navbar */
.navbar .btn-magnetic {
    border-color: rgba(255,255,255,0.35);
    color: #ffffff;
    background: transparent;
}
.navbar .btn-magnetic:hover { border-color: var(--accent); color: #000000; }


/* ═════════════════════════════════════════════════════
   HERO — Editorial Magazine (Full Redesign)
   ═════════════════════════════════════════════════════ */
.hero {
    position: relative;       /* containing block for abs children */
    height: 100svh;
    min-height: 680px;
    /* overflow stays visible so text is NEVER clipped by this element */
    /* The photo's overflow is handled by hero-bg-wrapper below */
    background: #F9F7F4;
}

/* ── Background: overflow:hidden HERE contains the photo + scale ── */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;  /* contains the scale(1.03) photo bleed */
}
.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 65% center;
    filter: brightness(1) saturate(1.05);
    transform: scale(1.03);
}

/* ── Overlay: bottom white fade, photo shows beautifully at top ── */
.glass-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top,
            rgba(249,247,244,1.0)  0%,
            rgba(249,247,244,0.92) 22%,
            rgba(249,247,244,0.55) 50%,
            rgba(249,247,244,0.1)  75%,
            rgba(249,247,244,0.0)  100%);
    z-index: 1;
}

/* ── Trust row: INSIDE hero-content above heading, always visible ── */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Location badge — dark pill so it ALWAYS reads on any background */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(18, 17, 16, 0.72);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 7px 16px;
    border-radius: 50px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    white-space: nowrap;
}
.badge-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0   rgba(210,161,84,0.7); }
    50%       { box-shadow: 0 0 0 8px rgba(210,161,84,0.0); }
}

/* Trust pills — dark, bold, always readable */
.hero-trust-pills { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.trust-pill {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(18, 17, 16, 0.68);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    white-space: nowrap;
    transition: background 0.3s;
}
.trust-pill:hover { background: rgba(18,17,16,0.9); }

/* ── Main content: abs-positioned at bottom, fully centered ── */
.hero-content {
    position: absolute;
    bottom: 3.5rem;
    left: 0; right: 0;
    z-index: 2;
    padding: 0 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;       /* horizontal center */
    text-align: center;
    gap: 1rem;
}

/* ── Heading: centered ──
 * min(4.5vw, 5rem): at 1440px=64.8px → SERVICES=8×64.8×1.95=1011px in 1210px ✓ */
.hero-heading-block { margin-bottom: 0; width: 100%; }
.main-heading {
    font-size: min(4.5vw, 5rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    letter-spacing: -0.02em;
    text-align: center;
}
.hline {
    display: block;
    overflow: visible;
    padding: 0.06em 0;
    white-space: normal;
    text-align: center;
}
.hw-dark { color: var(--text-main); }
.hw-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.01em;
}

/* ── Gold rule divider ── */
.hero-rule {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.rule-line {
    display: block;
    height: 1px;
    width: 130px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(210,161,84,0) 100%);
}
.rule-short {
    width: 55px;
    background: linear-gradient(270deg, rgba(210,161,84,0) 0%, var(--accent) 100%);
}
.rule-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.57rem;
    letter-spacing: 3.5px;
    color: var(--text-main);
    opacity: 0.42;
    font-weight: 800;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
}

/* ── Hero foot: centered column — desc + seo text + CTA row ── */
.hero-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 100%;
}
.hero-desc {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.75;
    font-weight: 600;
    max-width: 520px;
    margin: 0;
}
.hero-seo-text {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-main);
    opacity: 0.5;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}
/* CTAs side-by-side */
.hero-cta-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

/* Trust pills row — below CTAs, clearly separated */
.hero-trust-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Gold-fill CTA button */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    padding: 1.05rem 1.8rem;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: background 0.35s ease, gap 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}
.btn-hero-cta:hover { background: var(--accent); gap: 1.8rem; transform: translateY(-2px); }
.cta-arr { font-size: 1rem; transition: transform 0.3s; }
.btn-hero-cta:hover .cta-arr { transform: translateX(3px); }

/* Phone link */
.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 3px;
    transition: color 0.3s, gap 0.3s;
}
.btn-hero-phone:hover { color: var(--accent); gap: 0.9rem; }
.btn-hero-phone i { width: 15px; height: 15px; stroke: currentColor; }



/* ── Hide old hero elements ── */
.mouse, .wheel, .subheading,
.hero-right, .hero-actions,
.hero-badge-strip,
.scroll-indicator { display: none !important; }

/* .accent-text — keep for service sections */
.accent-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--accent);
}
/* .btn-outline — keep for service sections */
.btn-outline { display: inline-flex; align-items: center; gap: 10px; color: var(--text-main); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 5px; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition-smooth); font-weight: 800; }
.btn-outline:hover { gap: 15px; color: var(--accent); }





/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 22px;
    cursor: pointer;
    z-index: 2000;
}
.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s ease-in-out;
}
.menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Hyper-Animated Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1500;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* The radial expanding background */
.mobile-menu-bg {
    position: absolute;
    top: 2rem; right: 4vw;
    width: 0; height: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: width 0.9s cubic-bezier(0.7, 0, 0.2, 1), height 0.9s cubic-bezier(0.7, 0, 0.2, 1);
    z-index: 1;
}
.mobile-menu-overlay.active .mobile-menu-bg {
    width: 300vmax; height: 300vmax; /* Covers entire screen */
}
.mobile-menu-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.4s, visibility 0.3s 0.4s;
    width: 80%;
}
.mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-link {
    font-size: 3rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    display: flex;
    align-items: center;
}
.mobile-link:hover { color: var(--accent); }
.mobile-link span.num { font-size: 1rem; color: var(--accent); font-family: 'Manrope'; margin-right: 20px; font-weight: 500;}
.mobile-menu-overlay.active .mobile-link { transform: translateY(0); opacity: 1; }
/* Staggering the entrance! */
.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.6s; }

.mobile-contact {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.active .mobile-contact { transform: translateY(0); opacity: 1; transition-delay: 0.7s; }

.btn-mobile-phone-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, #a27421 100%);
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210,161,84, 0.3);
    transition: all 0.3s ease;
}
.btn-mobile-phone-animated::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: phoneShine 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes phoneShine { 100% { left: 150%; } }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.8; }

.mouse { width: 22px; height: 34px; border: 2px solid var(--text-main); border-radius: 12px; position: relative; }
.wheel { width: 2px; height: 6px; background: var(--text-main); position: absolute; top: 6px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scrollDown 1.5s infinite; }
@keyframes scrollDown { 0% { top: 6px; opacity: 1; } 100% { top: 16px; opacity: 0; } }

/* Shared Section Styles */
section { padding: 8rem 0; position: relative; z-index: 2; background: var(--bg-light); }
.section-badge { font-family: 'Manrope'; font-size: 0.8rem; letter-spacing: 4px; color: var(--accent); margin-bottom: 1.5rem; display: inline-block; border: 1px solid var(--accent); padding: 5px 15px; border-radius: 30px; font-weight: 800; background: rgba(210,161,84,0.05); }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 2rem; font-weight: 800;}

/* The Standard (About) */
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text p { font-size: 1.2rem; color: var(--text-main); line-height: 1.8; font-weight: 600; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid var(--glass-border); padding-top: 3rem; }
.stat-item h4 { font-size: 3rem; font-family: 'Playfair Display'; margin-bottom: 0.5rem; display: inline-block; font-weight: 800; }
.stat-item span { font-size: 1.5rem; color: var(--accent); font-family: 'Playfair Display'; font-weight: 800; }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 800; }

.about-images { position: relative; height: 700px; display: flex; align-items: center; justify-content: center; }
.img-wrap { border-radius: 20px; overflow: hidden; position: relative; width: 80%; height: 80%; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 1px solid var(--glass-border); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.img-wrap:hover img { transform: scale(1.05); }
.blur-circle { position: absolute; width: 400px; height: 400px; background: rgba(210, 161, 84, 0.15); filter: blur(80px); border-radius: 50%; z-index: 1; top: 10%; right: -10%; }

/* Services */
.services-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; perspective: 1000px; }
.service-card { background: #ffffff; border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; transition: var(--transition-bounce); transform-style: preserve-3d; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-image-wrapper { height: 350px; position: relative; overflow: hidden; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-card:hover .card-image-wrapper img { transform: scale(1.1); }
.card-content { padding: 3rem 2rem; position: relative; z-index: 2; margin-top: -80px; }
.card-content h3 { font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 800; color: var(--text-main); }
.card-content p { color: var(--text-main); margin-bottom: 2rem; font-size: 0.95rem; font-weight: 600; opacity: 0.75; }
.card-link { color: var(--accent); text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; transition: 0.3s; font-weight: 800; }
.service-card:hover .card-link { gap: 12px; }

/* Marquee Locations */
.marquee-wrapper { border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 2rem 0; overflow: hidden; white-space: nowrap; background: var(--bg-lighter); }
.marquee { display: inline-block; animation: marqueeScroll 20s linear infinite; font-family: 'Syncopate'; font-size: 3rem; color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,0.35); opacity: 1; }
.marquee span.dot { -webkit-text-stroke: 0; color: var(--accent); font-size: 1.5rem; vertical-align: middle; margin: 0 3rem; opacity: 1; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.city-list { list-style: none; margin-top: 3rem; border-top: 2px solid var(--text-main); }
.city-item { padding: 2rem 0; border-bottom: 1px solid var(--glass-border); font-size: 1.5rem; font-family: 'Playfair Display'; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); transition: 0.3s; cursor: pointer; font-weight: 800; opacity: 0.7; }
.city-item:hover, .city-item.active { color: var(--text-main); padding-left: 20px; opacity: 1; }
.city-item i { stroke: var(--accent); opacity: 0; transition: 0.3s; }
.city-item:hover i, .city-item.active i { opacity: 1; transform: translate(5px, -5px); }

.abstract-map { width: 100%; height: 500px; background: var(--bg-lighter); border-radius: 30px; border: 1px solid var(--glass-border); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 10px 20px rgba(0,0,0,0.02);}
.glass-planet { width: 300px; height: 300px; border-radius: 50%; background: #ffffff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 20px 40px rgba(210,161,84, 0.1); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.pulse-point { position: absolute; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 0 rgba(210, 161, 84, 0.7); animation: pulseMap 2s infinite; }
@keyframes pulseMap { 0% { box-shadow: 0 0 0 0 rgba(210, 161, 84, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(210, 161, 84, 0); } 100% { box-shadow: 0 0 0 0 rgba(210, 161, 84, 0); } }

/* FAQ */
.faq-section { background: var(--bg-lighter); }
.accordion { max-width: 900px; margin: 4rem auto 0; border-top: 2px solid var(--text-main); }
.accordion-item { border-bottom: 1px solid var(--glass-border); }
.accordion-header { padding: 2.5rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-header h4 { font-family: 'Manrope'; font-size: 1.3rem; font-weight: 800; text-transform: none; color: var(--text-main); }
.icon-cross { font-size: 2.5rem; font-weight: 300; transition: transform 0.4s ease; color: var(--text-main); line-height: 0.5; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.accordion-content p { padding-bottom: 2.5rem; color: var(--text-main); line-height: 1.8; max-width: 800px; font-weight: 600; opacity: 0.75; }
.accordion-item.active .icon-cross { transform: rotate(45deg); color: var(--accent); }
.accordion-item.active .accordion-content { max-height: 300px; }

/* Booking Form Section */
.booking-section { padding: 10rem 0; position: relative; background: var(--bg-lighter); }
.booking-header { margin-bottom: 3rem; }
.booking-header .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.lc-form-wrapper { max-width: 900px; margin: 0 auto; }
.lc-form-wrapper iframe { display: block; }


.glass-panel { background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.05); padding: 4rem; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); backdrop-filter: blur(20px); }
.modern-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.input-group { position: relative; margin-bottom: 2rem; }
.input-group input, .input-group textarea, .input-group select { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(0,0,0,0.1); padding: 15px 0; color: var(--text-main); font-family: 'Manrope'; font-weight: 700; font-size: 1rem; outline: none; transition: 0.3s; }
.input-group select { appearance: none; cursor: pointer; color: var(--text-muted); }
.input-group select option { background: #ffffff; color: var(--text-main); }
.input-group label { position: absolute; top: 15px; left: 0; color: var(--text-muted); font-weight: 700; pointer-events: none; transition: 0.3s ease; }
.input-group textarea { resize: none; }
.input-group input:focus, .input-group textarea:focus, .input-group select:focus { border-bottom-color: var(--accent); }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -15px; font-size: 0.8rem; color: var(--accent); }

.btn-submit { width: 100%; background: var(--text-main); color: #ffffff; border: none; padding: 1.2rem; font-family: 'Syncopate'; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 10px; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden; margin-top: 1rem; }
.btn-submit:hover { background: var(--accent); box-shadow: 0 10px 20px rgba(210, 161, 84, 0.2); }

/* PURE BLACK FOOTER BOOKEND */
.hyper-footer { position: relative; background: #000000; overflow: hidden; padding-top: 8rem; border-top: 1px solid var(--glass-border); color: #ffffff; }
.footer-overlay { position: absolute; top: -50%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(210,161,84,0.05) 0%, rgba(0,0,0,0) 70%); z-index: 1; }
.footer-content-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; min-height: 60vh; justify-content: space-between; }
.footer-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 4rem; }
.footer-brand { max-width: 300px; }
.f-logo { height: 85px; margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 1.1rem; line-height: 1.8; }
.footer-nav { display: flex; gap: 6rem; }
.nav-col h5 { font-family: 'Syncopate'; font-size: 0.9rem; margin-bottom: 1.5rem; color: var(--accent); font-weight: 800; }
.nav-col a { display: block; color: rgba(255,255,255,0.9); text-decoration: none; margin-bottom: 1rem; transition: 0.3s; font-size: 1rem; font-weight: 600; }
.nav-col a:hover { color: #ffffff; transform: translateX(5px); }
.social-links a i { stroke: #ffffff; transition: 0.3s; width: 24px; margin-right: 15px; stroke-width: 2; }
.social-links a:hover i { stroke: var(--accent); }

.footer-massive-text { text-align: center; overflow: hidden; margin-top: 4rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-massive-text h1 { font-size: 16vw; line-height: 0.8; color: transparent; background: url('assets/images/house_cleaning_kitchen_1776730783519.png') center/cover; -webkit-background-clip: text; background-attachment: fixed; opacity: 1; font-weight: 800; filter: contrast(1.1) brightness(1.2); }

.footer-bottom { padding: 3rem 0; display: flex; justify-content: space-between; color: rgba(255,255,255,0.75); font-size: 1rem; font-weight: 700; }
.legal-links a { color: inherit; text-decoration: none; margin-left: 2rem; transition: 0.3s; }
.legal-links a:hover { color: #ffffff; }

/* Reveal Animations */
.scroll-reveal { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Text Reveals */
.reveal-text .word { overflow: hidden; display: inline-block; vertical-align: bottom; }
.fade-up-delay { opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards; transform: translateY(20px); }
.fade-up-delay-2 { opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards; transform: translateY(20px); }
.fade-up-delay-3 { opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards; transform: translateY(20px); }

@keyframes fadeUp { 100% { opacity: 1; transform: translateY(0); } }

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section { padding: 8rem 0; background: var(--bg-light); }
.service-detail-section.alt-bg { background: var(--bg-lighter); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.08); border: 1px solid var(--glass-border); max-height: 550px; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.service-detail-image:hover img { transform: scale(1.04); }
.service-detail-text .section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.service-detail-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.9; font-weight: 600; margin-bottom: 2rem; }

.service-list { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.service-list li { display: flex; align-items:flex-start; gap: 1rem; font-weight: 700; color: var(--text-main); font-size: 1rem; line-height: 1.5; }
.service-list li i { stroke: var(--accent); min-width: 20px; margin-top: 2px; flex-shrink: 0; }

.service-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* ===== BOOKING / FORM SECTION ===== */
.booking-section { padding: 8rem 0; background: var(--bg-lighter); }
.booking-header { margin-bottom: 3rem; }

/* Form wrapper: fixed height matches the CRM form's data-height="923" */
.lc-form-wrapper {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    min-height: 950px; /* fallback */
}
.lc-form-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 950px;
}

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 8rem 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.contact-card { background: #ffffff; border: 1px solid var(--glass-border); border-radius: 20px; padding: 2.5rem 2rem; text-decoration: none; color: var(--text-main); display: flex; flex-direction: column; align-items: center; text-align: center; transition: var(--transition-bounce); box-shadow: 0 5px 20px rgba(0,0,0,0.04); }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent); }
.contact-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(210,161,84,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.contact-icon i { stroke: var(--accent); width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; line-height: 1.5; }

/* ===== MAP EMBED ===== */
.map-embed-wrapper { width: 100%; height: 500px; border-radius: 24px; overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 20px 40px rgba(0,0,0,0.07); }
.map-embed-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {

    /* NAV */
    .nav-links, .btn-magnetic.hide-on-mobile { display: none; }
    .menu-toggle { display: flex; }
    .brand-logo img { height: 55px; }

    /* HERO — tablet: trust-row wraps naturally, just tighten spacing */
    .hero-trust-row { gap: 0.4rem; }
    .trust-pill { font-size: 0.58rem; padding: 4px 10px; }
    .hero-badge-pill { font-size: 0.62rem; padding: 6px 13px; }
    .hero-content { bottom: 2.5rem; padding: 0 6vw; gap: 0.85rem; }
    .hero-foot { gap: 1rem; }
    .hero-desc-col { max-width: 100%; }
    .hero-cta-col { gap: 1rem; }
    .hero-scroll-track { display: none; }

    /* ABOUT */
    .layout-split { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 400px; }

    /* SERVICES CARDS */
    .services-track { grid-template-columns: 1fr; gap: 2rem; }

    /* SERVICE DETAIL */
    .service-detail-grid,
    .service-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
    .service-detail-grid.reverse > * { direction: ltr; }
    .service-detail-image { max-height: 350px; }

    /* LOCATIONS */
    .locations-grid { grid-template-columns: 1fr; gap: 3rem; }
    .marquee { font-size: 2rem; }
    .map-embed-wrapper { height: 350px; }

    /* BOOKING */
    .booking-wrapper { padding: 3rem 2rem; grid-template-columns: 1fr; }
    .glass-panel { padding: 2rem; }

    /* CONTACT */
    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* FOOTER */
    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-nav { flex-wrap: wrap; gap: 3rem; }
    .footer-massive-text h1 { font-size: 22vw; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

    /* GLOBAL */
    section { padding: 5rem 0; }
    .container { padding: 0 5vw; }

    /* NAV — mobile: 3-col grid so logo is perfectly centered */
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 0 5vw;
    }
    /* Hide desktop-only nav elements */
    .nav-links    { display: none; }
    .hide-on-mobile { display: none !important; }
    /* Phone icon — left column */
    .nav-phone-btn {
        display: flex;
        justify-self: start;
    }
    /* Logo — center column, bigger on mobile */
    .brand-logo {
        display: flex;
        justify-self: center;
    }
    .brand-logo img {
        height: 65px;   /* bigger than desktop's previous */
        width: auto;
    }
    /* Hamburger — right column */
    .menu-toggle {
        display: flex;
        justify-self: end;
    }

    /* ── HERO — mobile: full screen, content vertically centered ── */
    .hero {
        height: 100svh;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        padding-top: 70px;   /* clear the fixed navbar */
    }
    /* hero-content fills the remaining height and centers its children */
    .hero-content {
        position: relative;
        flex: 1;             /* fills 100svh minus navbar height */
        bottom: auto;
        left: auto;
        right: auto;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;  /* Stop overlapping nav vertically */
        align-items: center;
        text-align: center;
        padding: 0rem 5vw 1.5rem;
        margin-top: 10vh;             /* STRICT spacing to force it below the glass header! */
        gap: 0.6rem;
        overflow: visible;         /* Never clip words horizontally */
    }
    /* photo still fills the full 100svh background */
    .hero-bg-wrapper { position: absolute; inset: 0; }
    .glass-overlay {
        background:
            linear-gradient(to top,
                rgba(249,247,244,0.98) 0%,
                rgba(249,247,244,0.82) 30%,
                rgba(249,247,244,0.45) 62%,
                rgba(249,247,244,0.0)  100%);
    }
    /* Logo: slightly smaller to save space */
    .hero-mobile-logo {
        display: block;
        height: 50px;
        width: auto;
        margin: 0 auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
    }
    /* Heading - Fixed to prevent mid-word wrapping on 12-letter words */
    .main-heading { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1; word-break: break-word; hyphens: auto; }
    /* Gold rule */
    .hero-rule { justify-content: center; margin: 1rem 0; }
    .rule-line { width: 40px; }
    .rule-short { width: 22px; }
    .rule-label { font-size: 0.55rem; letter-spacing: 1.5px; }
    /* Description + CTAs */
    .hero-foot { gap: 1rem; }
    .hero-desc { font-size: 0.95rem; line-height: 1.6; max-width: 95%; margin: 0 auto; }
    .hero-seo-text { font-size: 0.55rem; }
    .hero-cta-col { flex-direction: column; gap: 0.75rem; width: 100%; align-items: center; }
    .btn-hero-cta { width: 100%; max-width: 320px; padding: 1.1rem 1.5rem; justify-content: center; font-size: 0.95rem; }
    .btn-hero-phone { justify-content: center; font-size: 1rem; }
    .hero-scroll-track { display: none; }
    /* Badge + trust pills */
    .hero-badge-pill { font-size: 0.65rem; padding: 7px 16px; margin-bottom: 0.5rem; }
    .hero-trust-pills { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
    .trust-pill { font-size: 0.6rem; padding: 6px 12px; }

    /* ABOUT — centered on mobile */
    .about-section .container { text-align: center; }
    .about-text p { font-size: 1rem; }
    .about-text .section-badge { display: block; margin: 0 auto 1.5rem; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 2rem; }
    .stat-item { flex-direction: column; text-align: center; }
    .stat-item h4 { font-size: 1.8rem; display: inline-block; margin-bottom: 0px;}
    .stat-item h4 .suffix { font-size: 1rem; }
    .stat-item p { font-size: 0.7rem; }
    .about-images { height: 300px; width: 100%; }
    .blur-circle { display: none; }

    /* SECTION TITLES — centered */
    .section-title { font-size: clamp(1.7rem, 6vw, 2.5rem); margin-bottom: 1.5rem; text-align: center; }
    .section-badge { display: block; text-align: center; margin-left: auto; margin-right: auto; }
    .section-header { margin-bottom: 2rem; text-align: center; }
    .section-header p { text-align: center; }

    /* SERVICES CARDS — centered + readable */
    .services-track { gap: 1.5rem; margin-top: 2rem; }
    .card-image-wrapper { height: 260px; }
    .card-content { padding: 2rem 1.5rem; margin-top: -60px; text-align: center; }
    .card-content h3 { font-size: 1.2rem; }
    .card-link { justify-content: center; }

    /* SERVICE DETAIL SECTIONS — centered on mobile */
    .service-detail-section { padding: 4rem 0; }
    .service-detail-image { max-height: 280px; border-radius: 16px; }
    .service-detail-text { text-align: center; }
    .service-detail-text .section-title { font-size: clamp(1.5rem, 5vw, 2rem); text-align: center; }
    .service-detail-text p { font-size: 1rem; text-align: center; }
    .service-list { align-items: center; }
    .service-list li { font-size: 0.9rem; text-align: left; }
    .service-list li i { width: 18px; }
    .service-cta { flex-direction: column; align-items: center; gap: 1rem; }
    .service-cta .btn-outline { margin-left: 0 !important; }

    /* LOCATIONS — centered */
    .locations-section .container { text-align: center; }
    .location-info { text-align: center; }
    .location-info p { text-align: center; }
    .city-list { text-align: left; }
    .marquee { font-size: 1.5rem; }
    .marquee-wrapper { padding: 1.2rem 0; }
    .city-item { font-size: 1.1rem; padding: 1.2rem 0; }
    .map-embed-wrapper { height: 280px; border-radius: 16px; }

    /* FAQ — centered, readable */
    .faq-section .section-header { text-align: center; }
    .accordion { margin-top: 2rem; }
    .accordion-header { padding: 1.5rem 0; }
    .accordion-header h4 { font-size: 1rem; font-weight: 800; line-height: 1.4; }
    .icon-cross { font-size: 2rem; }
    .accordion-content p { font-size: 0.95rem; padding-bottom: 1.5rem; line-height: 1.8; }

    /* BOOKING — centered */
    .booking-section { padding: 5rem 0; }
    .booking-header { text-align: center; }
    .booking-header p { text-align: center; }
    .booking-header .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); text-align: center; }
    .lc-form-wrapper { border-radius: 16px; min-height: 1100px; }
    .lc-form-wrapper iframe { min-height: 1100px; height: auto; }

    /* CONTACT CARDS — centered */
    .contact-section .section-header { text-align: center; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
    .contact-card { padding: 1.8rem 1rem; border-radius: 16px; }
    .contact-card h3 { font-size: 0.95rem; }
    .contact-card p { font-size: 0.8rem; }
    .contact-icon { width: 48px; height: 48px; margin-bottom: 1rem; }

    /* FOOTER — centered on mobile */
    .hyper-footer { padding-top: 5rem; }
    .footer-brand { max-width: 100%; text-align: center; }
    .f-logo { height: 65px; display: block; margin: 0 auto 1.5rem; }
    .footer-brand p { font-size: 0.95rem; }
    .footer-nav { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
    .nav-col { text-align: center; }
    .nav-col h5 { font-size: 0.75rem; margin-bottom: 1rem; }
    .nav-col a { font-size: 0.9rem; margin-bottom: 0.6rem; }
    .social-links { display: flex; justify-content: center; }
    .footer-massive-text h1 { font-size: 26vw; }
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: center; text-align: center; padding: 2rem 0; }
    .legal-links a { margin-left: 1rem; }

    /* GLASS PANEL */
    .glass-panel { padding: 1.5rem; border-radius: 20px; }
    .modern-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================================ */
@media (max-width: 480px) {

    /* GLOBAL */
    section { padding: 4rem 0; }
    .container { padding: 0 5vw; }

    /* HERO — tiny phone layout adjustments */
    .main-heading { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-desc { font-size: 0.88rem; }
    .hero-foot { gap: 1rem; }
    .btn-hero-cta { font-size: 0.9rem; padding: 1rem 1.4rem; }
    .hero-badge-pill span:last-child { display: none; } /* show only dot on tiny screens */

    /* ABOUT STATS — horizontal side-by-side */
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding-top: 1.5rem; }
    .stat-item { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; border-bottom: none; padding-bottom: 0; gap: 0.25rem; }
    .stat-item h4 { font-size: 1.6rem; margin-bottom: 0; display: inline-block; white-space: nowrap; }
    .stat-item h4 .suffix { font-size: 0.9rem; margin-left: 0.1rem; color: var(--accent); white-space: nowrap;}
    .stat-item p { font-size: 0.55rem; margin: 0; line-height: 1.2; text-align: center; word-wrap: break-word; font-weight: 800;}

    /* CONTACT CARDS — single column */
    .contact-grid { grid-template-columns: 1fr; gap: 0.8rem; }

    /* SERVICE DETAIL */
    .service-detail-image { max-height: 220px; }
    .service-detail-section { padding: 3.5rem 0; }

    /* LOCATIONS */
    .map-embed-wrapper { height: 240px; border-radius: 12px; }
    .city-item { font-size: 1rem; padding: 1rem 0; }

    /* MOBILE MENU */
    .mobile-menu-content { gap: 1.5rem; width: 90%; }
    .mobile-link { font-size: 2.2rem; display: flex; align-items: center; }
    .mobile-link span.num { margin-right: 15px; font-size: 1rem; opacity: 0.6; }

    /* FOOTER */
    .footer-massive-text h1 { font-size: 30vw; }
    .f-logo { height: 50px; }

    /* BOOKING FORM */
    .lc-form-wrapper iframe { min-height: 1150px; height: auto; }
}
