/* ========================================
   Lightning McClean LLC - Multi-Page Website
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --success: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #f8fafc;
    --gray-800: #f1f5f9;
    --gray-700: #e2e8f0;
    --gray-600: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #e2e8f0;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --text: #0f172a;
    --text-light: #334155;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-light: #f8fafc;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient: linear-gradient(135deg, var(--accent) 0%, #f97316 50%, var(--accent-light) 100%);
    --gradient-blue: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body { font-family: var(--font-primary); color: var(--text-secondary); line-height: 1.7; background: var(--bg); overflow-x: clip; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: var(--dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--accent);
    color: var(--dark);
    padding: 10px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    z-index: 99999;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 8px;
}

/* ---------- Preloader ---------- */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.5s ease, visibility 0.5s ease; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-bolt { position: relative; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.loader-bolt i { font-size: 40px; color: var(--accent); animation: boltStrike 1.5s ease-in-out infinite; filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8)); }
@keyframes boltStrike {
    0%, 100% { opacity: 0.3; transform: scale(0.8); filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.3)); }
    20% { opacity: 1; transform: scale(1.3); filter: drop-shadow(0 0 25px rgba(245, 158, 11, 1)); }
    30% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.9)); }
    70% { opacity: 0.4; transform: scale(0.9); }
}
.loader i { font-size: 48px; color: var(--accent); animation: pulse 1s ease-in-out infinite; }
.loader span { font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } }

/* ---------- Gradient Text ---------- */
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---------- Global heading typography: display serif for all headings by default.
   Specific components may override weight/size/color, but font family stays consistent. ---------- */
h1, h2, h3, .h1, .h2, .h3 { font-family: var(--font-display); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-primary); }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); color: var(--text-primary); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: var(--transition); font-family: var(--font-primary); white-space: nowrap; touch-action: manipulation; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-primary { background: var(--gradient); color: var(--dark); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-glass { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Focus-visible for keyboard navigation */
.btn:focus-visible,
.nav-links a:focus-visible,
.service-link:focus-visible,
.carousel-btn:focus-visible,
.area-yelp:focus-visible,
.faq-question:focus-visible,
.back-to-top:focus-visible,
.dark-mode-toggle:focus-visible,
.hamburger:focus-visible,
.lang-toggle:focus-visible,
.prop-btn:focus-visible,
.addon-check:focus-visible,
.gallery-arrow:focus-visible,
.platform-link:focus-visible,
.promo-cta:focus-visible,
.promo-close:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
/* Strengthen form input focus ring */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.estimator-group select:focus,
.sqft-input-wrap input:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

/* ---------- Navigation ---------- */
#navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; padding: 12px 0; transition: padding 0.4s ease, background 0.4s ease; background: transparent; }
#navbar.scrolled { padding: 6px 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 50%, #1e3a8a 100%); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
#navbar.scrolled::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%); animation: navMeshMove 15s ease-in-out infinite alternate; pointer-events: none; }
#navbar.scrolled::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }
@keyframes navMeshMove { 0% { transform: translateX(0); } 100% { transform: translateX(-5%); } }

/* Nav inner page background — always solid on sub-pages */
body.inner-page #navbar { background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 50%, #1e3a8a 100%); padding: 6px 0; }
body.inner-page #navbar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%); pointer-events: none; }
body.inner-page #navbar::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; }

.nav-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0; transition: opacity 0.4s ease; }
#navbar.scrolled .nav-particles, body.inner-page .nav-particles { opacity: 1; }
.nav-particle { position: absolute; bottom: -4px; background: var(--accent); border-radius: 50%; opacity: 0; box-shadow: 0 0 6px rgba(245, 158, 11, 0.5), 0 0 12px rgba(245, 158, 11, 0.2); animation: float-nav-particle linear infinite; }
@keyframes float-nav-particle { 0% { opacity: 0; transform: translateY(20px) scale(0); } 15% { opacity: 0.9; } 85% { opacity: 0.9; } 100% { opacity: 0; transform: translateY(-60px) scale(1.2); } }

.nav-logo-row { display: flex; justify-content: center; transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease; max-height: 220px; opacity: 1; overflow: hidden; margin-bottom: 0; }
.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo-img { width: 200px; height: 200px; object-fit: contain; border-radius: 8px; mix-blend-mode: screen; filter: drop-shadow(0 0 6px rgba(255,255,255,0.7)) drop-shadow(0 0 2px rgba(255,255,255,0.9)); }
#navbar.scrolled .nav-logo-row, body.inner-page .nav-logo-row { max-height: 0; opacity: 0; margin-bottom: 0; padding: 0; pointer-events: none; line-height: 0; font-size: 0; height: 0; overflow: hidden; display: none; }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 9999; }
.logo { display: none; align-items: center; gap: 12px; font-size: 22px; color: var(--white); font-weight: 300; z-index: 1001; min-width: 44px; min-height: 44px; }
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: transparent; mix-blend-mode: screen; transition: var(--transition); filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
.logo:hover .logo-img { transform: scale(1.05); }
/* Nav logo: hidden at all times in the navbar. Only footer .logo shows via .footer-brand .logo override. */
#navbar.scrolled .nav-container .logo { display: none; }

.footer-logo-img { width: 280px; height: auto; filter: drop-shadow(0 0 6px rgba(255,255,255,0.7)) drop-shadow(0 0 2px rgba(255,255,255,0.9)); }

.nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; position: relative; padding: 4px 0; touch-action: manipulation; display: flex; align-items: center; }
.nav-links a::after { content: ''; position: absolute; bottom: 6px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ---------- Nav Dropdown ---------- */
.nav-item { position: relative; display: flex; align-items: stretch; }
.nav-item > a { display: flex; align-items: center; gap: 6px; align-self: stretch; }
.nav-dropdown-arrow { font-size: 10px; transition: transform 0.2s ease; pointer-events: none; }
.nav-item:hover .nav-dropdown-arrow,
.nav-item.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 14px 0 6px;
    min-width: 210px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-dropdown a.active { color: var(--accent); }

/* ---------- Back Button (service detail pages) ---------- */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 10px 12px;
    min-height: 44px;
    border-radius: 4px;
    transition: color 0.2s, gap 0.2s;
    touch-action: manipulation;
}
.back-btn:hover { color: var(--white); gap: 12px; }
.back-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.back-btn i { font-size: 14px; transition: transform 0.2s; }
.back-btn:hover i { transform: translateX(-4px); }

.nav-cta { display: inline-flex; padding: 10px 20px; background: var(--gradient); color: var(--dark); border-radius: var(--radius); font-weight: 700; font-size: 14px; white-space: nowrap; box-shadow: 0 4px 12px rgba(245,158,11,0.3); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); }

.lang-toggle { display: flex; align-items: center; gap: 6px; padding: 10px 14px; min-height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-primary); }
.lang-toggle:hover { background: rgba(255,255,255,0.2); color: var(--white); border-color: rgba(255,255,255,0.4); }
.lang-toggle.active-flash { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.lang-toggle i { font-size: 14px; color: var(--accent-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; touch-action: manipulation; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 4px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page Header (inner pages) ---------- */
.page-header { background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 40%, #3b82f6 60%, #1e3a8a 100%); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 40%), radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.18) 0%, transparent 40%); animation: meshMove 20s ease-in-out infinite alternate; }
.page-header::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 56px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-header p { font-size: clamp(15px, 2.2vw, 18px); color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.page-header p strong { color: var(--accent-light); }

/* Breadcrumbs — hidden per design */
.breadcrumbs { display: none; }

/* ---------- Hero Section (home only) ---------- */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 40%, #3b82f6 60%, #1e3a8a 100%); overflow: hidden; }
.hero-bg::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 40%), radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.18) 0%, transparent 40%), radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 35%); animation: meshMove 20s ease-in-out infinite alternate; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
@keyframes meshMove { 0% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-3%, -3%) rotate(2deg); } 100% { transform: translate(-5%, -5%) rotate(3deg); } }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; opacity: 0; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6), 0 0 16px rgba(245, 158, 11, 0.3); animation: float-particle linear infinite; }
@keyframes float-particle { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; transform: translateY(-10vh) scale(1.5); } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 280px 24px 160px; max-width: 900px; }
.hero-logo { width: 320px; height: 210px; object-fit: contain; margin: 0 auto 28px; display: block; border-radius: 20px; filter: drop-shadow(0 0 24px rgba(255,255,255,0.6)) drop-shadow(0 0 10px rgba(255,255,255,0.9)) drop-shadow(0 0 60px rgba(245,158,11,0.4)) drop-shadow(0 0 100px rgba(245,158,11,0.15)); }
#hero h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hero-subtitle { font-size: clamp(15px, 2.2vw, 18px); color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto 28px; line-height: 1.7; }
.hero-subtitle strong { color: var(--accent-light); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; color: var(--white); display: inline; }
.stat-plus, .stat-star { font-size: 24px; color: var(--accent); font-weight: 800; }
.stat-star i { font-size: 18px; vertical-align: super; }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 1px; animation: bounce 2s ease-in-out infinite; }
.mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; padding: 6px; display: flex; justify-content: center; }
.wheel { width: 3px; height: 8px; background: var(--accent); border-radius: 4px; animation: scroll-wheel 2s ease-in-out infinite; }
@keyframes scroll-wheel { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.animate-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; }
.animate-in:nth-child(1) { animation-delay: 0.2s; }
.animate-in:nth-child(2) { animation-delay: 0.4s; }
.animate-in:nth-child(3) { animation-delay: 0.6s; }
.animate-in:nth-child(4) { animation-delay: 0.8s; }
.animate-in:nth-child(5) { animation-delay: 1.0s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Promo Banner ---------- */
#promo-banner { position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626); color: var(--white); padding: 8px 0; text-align: center; transform: translateY(0); transition: transform 0.4s ease; }
#promo-banner.hidden { transform: translateY(-100%); }
.promo-content { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; font-size: 14px; flex-wrap: nowrap; }
.promo-content i { font-size: 16px; animation: wiggle 2s ease-in-out infinite; }
@keyframes wiggle { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.promo-cta { padding: 8px 14px; min-height: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: #dc2626; font-weight: 700; font-size: 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.promo-cta:hover { background: rgba(255,255,255,0.9); transform: scale(1.05); }
.promo-close { background: none; border: none; color: var(--white); font-size: 20px; cursor: pointer; padding: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; opacity: 0.7; line-height: 1; flex-shrink: 0; }
.promo-close:hover { opacity: 1; }
body:not(.promo-closed):not(.inner-page) #navbar { top: var(--promo-h, 40px); }
#promo-banner.scroll-hidden { transform: translateY(-100%); }
body:not(.promo-closed):not(.inner-page) #hero { padding-top: var(--promo-h, 40px); }
html:not(.promo-closed) { scroll-padding-top: 120px; }

/* ---------- Trust Badges Bar ---------- */
.trust-badges-wrap { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 0; background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, 0.1); z-index: 10; }
/* Trust badges as standalone section (non-hero) */
.trust-badges-section { padding: 40px 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
.trust-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; padding: 10px 0; flex: 1; min-width: 0; justify-content: center; }
.trust-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), #fbbf24); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--dark); flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-size: 13px; font-weight: 700; color: #ffffff; letter-spacing: -0.2px; white-space: nowrap; }
.trust-text span { font-size: 11px; color: #e2e8f0; font-weight: 400; white-space: nowrap; }

/* ---------- About Section ---------- */
#about, .about-section { padding: 120px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { display: flex; flex-direction: column; gap: 16px; }
.about-illustration-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: linear-gradient(135deg, #f0f4ff, #e0e7ff); }
.cleaning-svg { width: 100%; height: auto; display: block; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--text-primary); line-height: 1.2; margin-bottom: 20px; }
.about-description { font-size: 16px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-description strong { color: var(--primary); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius); background: rgba(245, 158, 11, 0.1); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.feature h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.feature p { font-size: 13px; color: var(--gray-600); }

/* Business Highlights */
.business-highlights { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 28px 0; padding: 24px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.highlight { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 12px 4px; border-radius: var(--radius); transition: var(--transition); }
.highlight:hover { background: rgba(245, 158, 11, 0.05); transform: translateY(-2px); }
.highlight i { font-size: 24px; color: var(--accent-dark); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(245, 158, 11, 0.1); border-radius: 50%; }
.highlight span { font-size: 12px; font-weight: 600; color: var(--text-secondary); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; }

/* ---------- Services Section ---------- */
#services, .services-section { padding: 120px 0; }
.services-section-blue { background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
.services-section-blue .section-header h2 { color: var(--white); }
.services-section-blue .section-subtitle { color: rgba(255, 255, 255, 0.9); }
#services { background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
#services .section-header h2 { color: var(--white); }
#services .section-subtitle { color: rgba(255, 255, 255, 0.9); }
body.inner-page #services { background: var(--bg); }
body.inner-page #services .section-header h2 { color: var(--text-primary); }
body.inner-page #services .section-subtitle { color: var(--text-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--surface); border-radius: var(--radius-xl); padding: 40px 32px; transition: var(--transition); border: 1px solid var(--border); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient); opacity: 0; transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card.featured { background: var(--surface); border: 2px solid var(--primary-light); box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1); transform: translateY(-4px); }
.service-card.featured:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(30, 64, 175, 0.18), 0 0 0 1px rgba(59, 130, 246, 0.2); }
.service-card.featured h3 { color: var(--primary); }
.service-card.featured .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #ffffff; }
.service-card.featured .service-link { color: var(--accent); }
.featured-badge { position: absolute; top: 16px; right: 16px; padding: 6px 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #ffffff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 50px; }
.service-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); background: rgba(30, 64, 175, 0.15); color: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px; color: var(--text-muted); }
.service-features i { font-size: 12px; color: var(--success); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); touch-action: manipulation; min-height: 44px; padding: 10px 0; }
.service-link:hover { gap: 12px; color: var(--accent-light); }
/* Stretched link — ::after fills entire .service-card (nearest position:relative ancestor) */
.service-link::after { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius-xl); }
.service-link:focus-visible { outline: none; }
.service-link:focus-visible::after { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- Service Detail Page ---------- */
.service-detail { padding: 80px 0; background: var(--bg); }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.service-detail-content h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); color: var(--text-primary); margin-bottom: 20px; line-height: 1.2; }
.service-detail-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.service-detail-content ul { margin-bottom: 24px; }
.service-detail-content ul li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 15px; color: var(--text-secondary); }
.service-detail-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--success); font-size: 14px; flex-shrink: 0; }
.service-detail-content ul li i { color: var(--success); font-size: 14px; flex-shrink: 0; }
.service-sidebar { position: sticky; top: 80px; z-index: 1; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-lg); margin-bottom: 24px; }
.sidebar-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--text-primary); margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.sidebar-card p a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 0; }
.sidebar-services { list-style: none; }
.sidebar-services li { padding: 0; margin-bottom: 8px; }
.sidebar-services a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--text-secondary); border: 1px solid var(--border); transition: var(--transition); }
.sidebar-services a:hover, .sidebar-services a.active, .sidebar-services li.active a { background: rgba(30, 64, 175, 0.06); border-color: var(--primary-light); color: var(--primary); font-weight: 600; }
.sidebar-services a i { color: var(--accent); width: 20px; text-align: center; }

/* ---------- Service Areas ---------- */
#areas, .areas-section { padding: 120px 0; background: var(--gray-900); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.area-card { border-radius: var(--radius-xl); padding: 48px 40px; position: relative; overflow: hidden; background: var(--surface); color: var(--text-primary); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.area-card::after { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; border-radius: 50%; background: rgba(30, 64, 175, 0.04); }
.area-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; position: relative; z-index: 1; }
.area-icon { width: 56px; height: 56px; border-radius: var(--radius); background: rgba(245, 158, 11, 0.15); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.area-header h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-primary); }
.area-locations { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; position: relative; z-index: 1; }
.location { display: flex; align-items: center; gap: 16px; padding: 12px 16px; background: var(--gray-900); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.location:hover { background: rgba(30, 64, 175, 0.04); border-color: var(--primary-light); transform: translateX(4px); }
.location-pin { width: 36px; height: 36px; border-radius: 50%; background: rgba(245, 158, 11, 0.2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.location-info h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.location-info p { font-size: 13px; color: var(--text-muted); }
.area-yelp { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; min-height: 44px; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius); color: var(--accent-dark); font-size: 14px; font-weight: 600; position: relative; z-index: 1; }
.area-yelp:hover { background: rgba(245, 158, 11, 0.2); transform: translateY(-2px); }

/* ---------- Why Choose Us ---------- */
#why-us, .why-us-section { padding: 120px 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
#why-us .section-header h2, .why-us-section .section-header h2 { color: var(--white); }
#why-us .section-subtitle, .why-us-section .section-subtitle { color: rgba(255, 255, 255, 0.85); }
.why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.why-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 20px; padding: 40px 28px; transition: transform 0.3s, background 0.3s; border: 1px solid rgba(255, 255, 255, 0.15); }
.why-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.18); }
.why-number { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: #f59e0b; margin-bottom: 16px; line-height: 1; }
.why-card h4 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.8); }

/* ---------- Section Background Overrides ---------- */
/* Use .section-light on any section to force light/gray bg with dark text */
.section-light { background: #f8fafc !important; }
.section-light .section-header h2 { color: #0f172a !important; }
.section-light .section-subtitle { color: #334155 !important; }
.section-light .why-card { background: #ffffff !important; border: 1px solid #e2e8f0 !important; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05) !important; backdrop-filter: none !important; }
.section-light .why-card:hover { background: #f8fafc !important; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05) !important; }
.section-light .why-card h4 { color: #0f172a !important; }
.section-light .why-card p { color: #334155 !important; }
.section-light .service-card { background: #ffffff; border: 1px solid #e2e8f0; }
.section-light .service-card h3 { color: #0f172a; }
.section-light .service-card p { color: #334155; }
.section-light .service-features li { color: #334155; }
/* Why-cards inside service detail pages — smaller grid + dark text on light bg */
.service-detail-content .why-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.service-detail-content .why-card { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-md); backdrop-filter: none; }
.service-detail-content .why-card:hover { background: var(--surface-light); box-shadow: var(--shadow-lg); }
.service-detail-content .why-card h4 { color: var(--text-primary); }
.service-detail-content .why-card p { color: var(--text-secondary); }

/* ---------- Reviews Section ---------- */
#reviews, .reviews-section { padding: 120px 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); overflow: hidden; }
#reviews .section-header h2, .reviews-section .section-header h2 { color: var(--white); }
#reviews .section-subtitle, .reviews-section .section-subtitle { color: rgba(255, 255, 255, 0.9); }
.reviews-carousel { position: relative; margin-bottom: 48px; overflow: hidden; }
.reviews-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.review-card { flex: 0 0 auto; background: var(--surface); border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--border); transition: var(--transition); }
.review-card:hover { border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08); }
.review-stars { display: flex; gap: 4px; color: var(--accent); font-size: 16px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.review-author strong { display: block; font-size: 14px; color: var(--text-primary); }
.review-author span { font-size: 12px; color: var(--text-muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; position: relative; z-index: 5; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--surface); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 14px; touch-action: manipulation; flex-shrink: 0; }
.carousel-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(245, 158, 11, 0.05); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: var(--transition); padding: 4px; background-clip: content-box; box-sizing: content-box; }
.carousel-dot.active { background: var(--accent); width: 20px; border-radius: 5px; background-clip: content-box; }
.reviews-cta { text-align: center; }
.reviews-cta > p { font-size: 14px; color: rgba(255, 255, 255, 0.9); margin-bottom: 16px; }
.review-platforms { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.platform-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; min-height: 44px; background: #d32323; color: var(--white); border-radius: var(--radius); font-size: 14px; font-weight: 600; }
.platform-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211, 35, 35, 0.3); color: var(--white); }

/* Reviews grid (full page) */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.reviews-grid .review-card { flex: initial; }

/* ---------- Gallery Section ---------- */
#gallery, .gallery-section { padding: 120px 0; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
#gallery .section-header h2, .gallery-section .section-header h2 { color: var(--white); }
#gallery .section-subtitle, .gallery-section .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.gallery-slideshow { position: relative; max-width: 800px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.gallery-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; background: #0f172a; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { position: relative; flex: 0 0 100%; scroll-snap-align: center; scroll-snap-stop: always; aspect-ratio: 4 / 3; }
.gallery-slide img { width: 100%; height: 100%; object-fit: contain; background: #0f172a; display: block; user-select: none; -webkit-user-drag: none; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 32px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); z-index: 2; }
.slide-tag { display: inline-block; padding: 4px 12px; background: var(--accent); color: var(--dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; margin-bottom: 8px; }
.slide-caption p { color: var(--white); font-size: 16px; font-weight: 500; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.gallery-arrow:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); transform: translateY(-50%) scale(1.1); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots { display: none; }
.gallery-counter { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; padding: 6px 14px; border-radius: 999px; background: rgba(15, 23, 42, 0.65); backdrop-filter: blur(8px); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; font-variant-numeric: tabular-nums; pointer-events: none; }
.gallery-counter b { color: var(--accent); font-weight: 700; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ---------- Desktop Call Popover ---------- */
.tel-pop { width: 320px; max-width: calc(100vw - 24px); background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25), 0 4px 12px rgba(15, 23, 42, 0.10); border: 1px solid rgba(15, 23, 42, 0.06); padding: 22px 22px 18px; z-index: 10000; opacity: 0; transform: translateY(-8px) scale(0.96); transition: opacity 0.18s ease, transform 0.22s cubic-bezier(.34,1.56,.64,1); }
.tel-pop.open { opacity: 1; transform: translateY(0) scale(1); }
.tel-pop-close { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border: 0; background: transparent; color: #94a3b8; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.15s, color 0.15s; }
.tel-pop-close:hover { background: #f1f5f9; color: #0f172a; }
.tel-pop-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent, #f59e0b); margin-bottom: 6px; }
.tel-pop-number { font-family: var(--font-display, inherit); font-size: 28px; font-weight: 900; color: #0f172a; letter-spacing: -0.5px; margin-bottom: 14px; }
.tel-pop-actions { display: flex; gap: 8px; margin-bottom: 10px; }
.tel-pop-actions .btn { flex: 1; padding: 10px 12px; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; }
.tel-pop-hint { font-size: 11px; color: #64748b; line-height: 1.4; }

/* Pointer arrow at top of popover */
.tel-pop::before { content: ''; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; background: #fff; transform: translateX(-50%) rotate(45deg); border-left: 1px solid rgba(15, 23, 42, 0.06); border-top: 1px solid rgba(15, 23, 42, 0.06); }

@media (max-width: 540px) {
    .tel-pop { width: calc(100vw - 24px); }
}

.gallery-hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.gallery-stat { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(10px); color: var(--white); font-size: 14px; font-weight: 500; }
.gallery-stat i { color: var(--accent); font-size: 16px; }
.gallery-stat b { color: var(--accent); font-weight: 800; font-size: 16px; }

#gallery.section-light { position: relative; padding: 90px 0 120px; overflow: hidden; }
.gallery-bg-decor { position: absolute; inset: 0; pointer-events: none; opacity: 0.55; background:
    radial-gradient(circle at 8% 10%, rgba(245, 158, 11, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 95% 5%, rgba(59, 130, 246, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
}
.gallery-section-header { margin-bottom: 50px; }
.gallery-section-header .section-tag { display: inline-block; padding: 6px 16px; margin-bottom: 16px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 999px; box-shadow: 0 6px 18px rgba(30, 58, 138, 0.25); }
.gallery-section-header h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: #0f172a; line-height: 1.1; margin-bottom: 14px; }
.gallery-section-header .section-subtitle { color: #475569; max-width: 560px; margin: 0 auto; }

#gallery.section-light .container { position: relative; z-index: 1; }
#gallery.section-light .gallery-tile { background: #fff; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); border: 1px solid rgba(15, 23, 42, 0.06); }
#gallery.section-light .gallery-tile:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18); }

/* Tile hover overlay with zoom icon + #N badge */
.gallery-tile { position: relative; }
.tile-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.55) 100%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.gallery-tile:hover .tile-overlay, .gallery-tile:focus-visible .tile-overlay { opacity: 1; }
.tile-zoom { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.55); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; transform: scale(0.7); transition: transform 0.3s cubic-bezier(.34,1.56,.64,1); }
.gallery-tile:hover .tile-zoom, .gallery-tile:focus-visible .tile-zoom { transform: scale(1); }
.tile-number { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--primary-dark, #1e3a8a); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(0,0,0,0.12); opacity: 0; transform: translateY(-4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-tile:hover .tile-number, .gallery-tile:focus-visible .tile-number { opacity: 1; transform: translateY(0); }

@media (max-width: 540px) {
    .gallery-hero-stats { gap: 8px; }
    .gallery-stat { padding: 8px 14px; font-size: 13px; }
    .gallery-section-header { margin-bottom: 32px; }
    /* On mobile, no hover: always show the number, hide the zoom icon */
    .tile-overlay { opacity: 1; background: none; }
    .tile-zoom { display: none; }
    .tile-number { opacity: 1; transform: none; }
}

/* ---------- Masonry Gallery Grid ---------- */
.gallery-grid { column-count: 3; column-gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-tile { display: block; width: 100%; padding: 0; margin: 0 0 16px; border: 0; border-radius: var(--radius-lg); overflow: hidden; cursor: zoom-in; background: #0f172a; break-inside: avoid; box-shadow: 0 6px 18px rgba(0,0,0,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.28); }
.gallery-tile:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.gallery-tile img { display: block; width: 100%; height: auto; transition: transform 0.4s ease; }
.gallery-tile:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery-grid { column-count: 2; column-gap: 12px; } .gallery-tile { margin-bottom: 12px; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }

/* Collapsed state — first 3 rows only */
.gallery-grid.collapsed .gallery-tile:nth-child(n+10) { display: none; }
@media (max-width: 900px) { .gallery-grid.collapsed .gallery-tile:nth-child(n+7) { display: none; } }
@media (max-width: 540px) { .gallery-grid.collapsed .gallery-tile:nth-child(n+4) { display: none; } }
.gallery-more { position: relative; max-width: 1200px; margin: -90px auto 0; padding-top: 100px; display: flex; justify-content: center; pointer-events: none; }
.gallery-more::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 110px; background: linear-gradient(to bottom, rgba(248,250,252,0) 0%, rgba(248,250,252,0.85) 55%, #f8fafc 100%); pointer-events: none; }
.gallery-more-btn { position: relative; z-index: 1; pointer-events: auto; display: inline-flex; align-items: center; gap: 10px; }
.gallery-more-btn i { transition: transform 0.25s ease; }
.gallery-more-btn:hover i { transform: translateY(2px); }
.gallery-grid:not(.collapsed) + .gallery-more { display: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(8, 12, 24, 0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-stage { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 48px 64px; touch-action: pan-y; }
.lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; transition: opacity 0.2s ease; }
.lightbox-img.swiping { transition: none; }
.lightbox-close, .lightbox-arrow { position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); color: var(--white); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); }
.lightbox-arrow:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; font-variant-numeric: tabular-nums; }
.lightbox-counter b { color: var(--accent); font-weight: 700; }
@media (max-width: 540px) {
    .lightbox-stage { padding: 60px 12px 60px; }
    .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
    .lightbox-arrow { width: 44px; height: 44px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
body.lightbox-open { overflow: hidden; }

/* ---------- Contact Section ---------- */
#contact, .contact-section { padding: 100px 0 0; background: var(--gray-900); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding-bottom: 100px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(245, 158, 11, 0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-item a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; }
.social-link, .social-links a { width: 44px; height: 44px; border-radius: 50%; background: #1e40af; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
.social-link:hover, .social-links a:hover { background: var(--accent); color: var(--dark); transform: translateY(-3px); }
.contact-form-wrapper { position: sticky; top: 100px; }
.contact-form { background: var(--surface); border-radius: var(--radius-xl); padding: 48px 40px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--font-display); font-size: 24px; color: var(--text-primary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 16px; font-family: var(--font-primary); color: var(--text-primary); background: var(--surface); transition: var(--transition); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-light); background: var(--bg); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---------- Price Estimator ---------- */
#estimator, .estimator-section { padding: 120px 0; background: var(--gray-900); }
body.inner-page #estimator { background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); }
body.inner-page #estimator .section-header h2 { color: var(--white); }
body.inner-page #estimator .section-subtitle { color: rgba(255,255,255,0.9); }
.estimator-card { display: grid; grid-template-columns: 1fr 380px; gap: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-xl); }
.estimator-form { display: flex; flex-direction: column; gap: 24px; }
.estimator-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.estimator-group label i { color: var(--primary); font-size: 16px; }
.estimator-group select { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit; cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.estimator-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1); }
.property-toggle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.prop-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 14px; min-height: 44px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); color: var(--text-light); font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.25s ease; touch-action: manipulation; white-space: nowrap; min-width: 0; }
.prop-btn > span { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.prop-btn:hover { border-color: var(--primary); color: var(--primary); }
.prop-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25); }
.prop-btn i { font-size: 18px; }
.sqft-input-wrap { position: relative; display: flex; align-items: center; }
.sqft-input-wrap input { width: 100%; padding: 14px 80px 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--bg); color: var(--text); font-size: 15px; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; -moz-appearance: textfield; }
.sqft-input-wrap input::-webkit-outer-spin-button, .sqft-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sqft-input-wrap input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1); }
.sqft-unit { position: absolute; right: 18px; font-size: 13px; font-weight: 600; color: var(--text-muted); pointer-events: none; }
.counter-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); }
.counter-btn { display: flex; align-items: center; justify-content: center; width: 52px; height: 48px; border: none; background: var(--surface); color: var(--primary); font-size: 16px; cursor: pointer; transition: background 0.2s; }
.counter-btn:hover { background: rgba(30, 64, 175, 0.1); }
.counter-value { flex: 1; text-align: center; font-size: 18px; font-weight: 700; color: var(--text); padding: 12px 0; min-width: 48px; }
.estimator-group.hidden { display: none; }
.estimator-addons { display: flex; flex-direction: column; gap: 12px; }
.addon-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.addon-label i { color: var(--primary); }
.addon-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.addon-check { display: flex; align-items: center; gap: 8px; padding: 10px 14px; min-height: 44px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 13px; color: var(--text-light); cursor: pointer; transition: all 0.2s; background: var(--bg); touch-action: manipulation; }
.addon-check:hover { border-color: var(--primary); background: rgba(30, 64, 175, 0.03); }
.addon-check input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.estimator-result { background: linear-gradient(135deg, #f0f4ff, #e8efff); border: 2px solid rgba(30, 64, 175, 0.15); border-radius: var(--radius-xl); padding: 40px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; text-align: center; }
.estimate-display { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.estimate-label { font-size: 14px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; }
.estimate-price { display: flex; align-items: flex-start; gap: 4px; line-height: 1; }
.estimate-currency { font-size: 28px; font-weight: 700; color: var(--accent); margin-top: 8px; }
.estimate-amount { font-size: 72px; font-weight: 900; color: var(--text-primary); font-family: 'Playfair Display', serif; transition: all 0.3s ease; }
.estimate-range { display: none; }
.estimate-note { font-size: 12px; color: var(--text-muted); max-width: 280px; line-height: 1.5; margin-top: 4px; }
.estimator-result .btn-full { width: 100%; }
.estimator-result .btn-outline { color: var(--primary); border: 2px solid var(--primary); background: transparent; }
.estimator-result .btn-outline:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---------- FAQ Section ---------- */
#faq, .faq-section { padding: 100px 0 160px; background: var(--gray-900); }
.faq-grid, .faq-section { counter-reset: faq; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; padding-bottom: 20px; }
.faq-item { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.faq-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%); transform: scaleY(0); transform-origin: top; transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1); border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.faq-item:hover { border-color: rgba(245,158,11,0.35); box-shadow: 0 8px 24px rgba(0,0,0,0.25); transform: translateY(-2px); }
.faq-item:hover::before { transform: scaleY(0.4); }
.faq-item.active { border-color: var(--accent); background: rgba(245,158,11,0.06); box-shadow: 0 12px 30px rgba(245,158,11,0.18); }
.faq-item.active::before { transform: scaleY(1); }
.faq-question { width: 100%; padding: 22px 24px 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; touch-action: manipulation; counter-increment: faq; }
.faq-question::before { content: counter(faq, decimal-leading-zero); font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.5px; margin-right: 16px; flex-shrink: 0; min-width: 34px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; text-shadow: 0 1px 0 rgba(30, 64, 175, 0.08); }
.faq-question span { flex: 1; font-size: 16px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.faq-question i, .faq-icon { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(245,158,11,0.1); font-size: 12px; transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), background 0.3s ease, color 0.3s ease; flex-shrink: 0; }
.faq-item:hover .faq-question i, .faq-item:hover .faq-icon { background: rgba(245,158,11,0.18); }
.faq-item.active .faq-question i, .faq-item.active .faq-icon { transform: rotate(135deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.2,0.8,0.2,1), padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 28px 22px 64px; font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.faq-answer a, .service-detail-content p a, .chores-info-note a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; }
@media (max-width: 600px) {
  .faq-question { padding: 18px 18px 18px 20px; }
  .faq-question::before { margin-right: 12px; font-size: 18px; min-width: 28px; }
  .faq-answer p { padding: 0 20px 20px 48px; }
}

/* ---------- Footer ---------- */
#footer { background: #1e3a8a; color: rgba(255,255,255,0.9); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-brand .logo { margin-bottom: 16px; display: flex; justify-content: center; }
.footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 300px; text-align: center; }
.footer-brand .social-links a { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.footer-brand .social-links a:hover { background: var(--accent); color: var(--dark); }
.footer-links h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.8); }

/* ---------- Back to Top & Dark Mode ---------- */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); color: var(--dark); border: none; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.dark-mode-toggle { position: fixed; bottom: 30px; left: 30px; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); background: var(--surface); color: var(--text-primary); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all 0.3s ease; z-index: 999; }
.dark-mode-toggle:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.dark-mode-toggle .fa-sun { display: none; }
html[data-theme="dark"] .dark-mode-toggle .fa-moon { display: none; }
html[data-theme="dark"] .dark-mode-toggle .fa-sun { display: inline; color: var(--accent); }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--dark); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(15,23,42,0.8); max-width: 600px; margin: 0 auto 32px; }
.cta-banner .btn-primary { background: var(--dark); color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-banner .btn-primary:hover { background: #1e293b; box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.cta-banner .btn-outline { color: var(--dark); border-color: rgba(15,23,42,0.4); }
.cta-banner .btn-outline:hover { background: rgba(15,23,42,0.1); border-color: rgba(15,23,42,0.7); }
.cta-banner .gradient-text { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; }
.cta-banner.section-light { background: #f8fafc !important; }
.cta-banner.section-light h2 { color: #0f172a !important; }
.cta-banner.section-light p { color: #334155 !important; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Areas Mini-Map ---------- */
.areas-map-section { padding: 60px 0 40px; background: linear-gradient(180deg, var(--gray-900, #0f172a) 0%, var(--bg, #f8fafc) 100%); }
.areas-map { max-width: 720px; margin: 32px auto 0; padding: 24px; background: linear-gradient(135deg, #1e3a8a 0%, #2548b0 100%); border: 1px solid rgba(245,158,11,0.25); border-radius: var(--radius-xl, 16px); box-shadow: 0 24px 50px -20px rgba(15,23,42,0.45); }
.areas-map-svg { display: block; width: 100%; height: auto; }
.areas-map-pin-primary circle:nth-of-type(2) { animation: areasMapPulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes areasMapPulse { 0%, 100% { opacity: 1; r: 6; } 50% { opacity: 0.85; r: 7.5; } }
@media (prefers-reduced-motion: reduce) { .areas-map-pin-primary circle:nth-of-type(2) { animation: none; } }
@media (max-width: 600px) {
  .areas-map { padding: 14px; }
  .areas-map-section { padding: 40px 0 24px; }
}

/* Contact Page Grid */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-main-section { padding: 80px 0 120px; }
.form-trust-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ---------- About Proof Stack ---------- */
.about-proof-stack { display: flex; flex-direction: column; gap: 16px; }
.proof-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 32px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); }
.proof-stat-card.proof-stat-accent { background: linear-gradient(135deg, #1e3a8a, #2548b0); border-color: transparent; }
.proof-number { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--text-primary); line-height: 1; }
.proof-stat-accent .proof-number { color: var(--white); }
.proof-plus { font-size: 32px; color: var(--accent); }
.proof-star { font-size: 28px; color: var(--accent); margin-left: 6px; vertical-align: middle; }
.proof-label { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.proof-stat-accent .proof-label { color: rgba(255,255,255,0.75); }
.proof-quote-card { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2); border-radius: var(--radius-xl); padding: 24px 28px; }
.proof-quote-icon { font-size: 24px; color: var(--accent); margin-bottom: 12px; display: block; }
.proof-quote-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.proof-quote-card span { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ---------- Guarantee Section ---------- */
.guarantee-section { padding: 80px 0; background: var(--bg); }
.guarantee-card { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%); border: 2px solid rgba(30,64,175,0.15); border-radius: var(--radius-xl); padding: 56px 64px; box-shadow: var(--shadow-lg); }
.guarantee-icon-wrap { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-size: 44px; color: var(--white); box-shadow: 0 12px 30px rgba(30,64,175,0.3); flex-shrink: 0; }
.guarantee-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-dark); margin-bottom: 8px; }
.guarantee-content h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); color: var(--text-primary); line-height: 1.2; margin-bottom: 16px; }
.guarantee-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; max-width: 580px; }
.guarantee-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.guarantee-pillar { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.guarantee-pillar i { color: var(--success); font-size: 16px; flex-shrink: 0; }
@media (max-width: 768px) {
  .guarantee-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; text-align: center; }
  .guarantee-icon-wrap { margin: 0 auto; }
  .guarantee-pillars { grid-template-columns: 1fr; }
  .guarantee-pillar { justify-content: center; }
}

/* ---------- FAQ Snippet ---------- */
.faq-snippet-section { padding: 80px 0; }
.faq-snippet-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.faq-snippet-header h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); color: var(--text-primary); }
.faq-snippet-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; min-height: 44px; padding: 10px 0; }
.faq-snippet-link:hover { gap: 10px; color: var(--primary-light); }
.faq-snippet-grid { max-width: 100%; }
@media (max-width: 768px) {
  .faq-snippet-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Footer Trust Row ---------- */
.footer-trust-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); margin: 0 0 0; }
.footer-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-trust-item i { color: var(--accent); font-size: 14px; }
@media (max-width: 768px) { .footer-trust-row { gap: 20px; justify-content: center; } }


/* ---------- Tablet (768px–900px) nav & estimator compression ---------- */
@media (min-width: 768px) and (max-width: 900px) {
    .nav-container { gap: 14px; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 13px; }
    .nav-cta { padding: 8px 12px; font-size: 12px; }
    .lang-toggle { padding: 6px 10px; font-size: 12px; }
    .estimator-card { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ---------- Scroll Reveal — Service & Why Card Stagger ---------- */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.6s; }
.why-cards .why-card:nth-child(1) { transition-delay: 0s; }
.why-cards .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-cards .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-cards .why-card:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Featured Badge Amber ---------- */
.featured-badge-amber { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--dark); }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gallery-slideshow { max-width: 100%; border-radius: var(--radius-lg); }
    .hero-content { padding: 220px 24px 140px; }
    .trust-badge { min-width: 160px; }
    .estimator-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    /* --- Mobile Navbar: Slide-in drawer (not full screen) --- */
    .nav-logo-row { display: none !important; }
    .nav-container { justify-content: space-between; }
    .nav-container .logo { display: none; }
    .nav-links {
        position: fixed; top: 0; right: 0; width: 85vw; max-width: 320px;
        height: 100vh; height: 100dvh;
        background: var(--dark);
        flex-direction: column; align-items: stretch; justify-content: flex-start;
        gap: 0; padding: 72px 0 24px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
        overflow-y: auto;
        border-left: 3px solid var(--accent);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links > a, .nav-links > .nav-item > a {
        font-size: 16px; min-height: 48px; display: flex; align-items: center;
        padding: 12px 24px; text-align: left; justify-content: flex-start;
        border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%;
    }
    .nav-links > a.active { color: var(--accent); border-left: 3px solid var(--accent); padding-left: 21px; font-weight: 700; background: rgba(245,158,11,0.08); }
    .nav-cta { display: none !important; }
    .hamburger { display: flex; z-index: 10001; margin-left: auto; }
    /* Mobile nav overlay */
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: 9998; }
    .nav-overlay.active { display: block; }
    /* Mobile dropdown — expands inline */
    .nav-item { flex-direction: column; align-items: stretch; }
    .nav-item > a { justify-content: space-between !important; }
    .nav-dropdown { position: static; transform: none; opacity: 0; max-height: 0; overflow: hidden; visibility: visible; pointer-events: none; box-shadow: none; background: rgba(255,255,255,0.03); border: none; border-radius: 0; width: 100%; text-align: left; transition: max-height 0.3s ease, opacity 0.2s ease; }
    .nav-item:hover .nav-dropdown,
    .nav-item.open .nav-dropdown { transform: none; }
    .nav-item.open .nav-dropdown { opacity: 1; max-height: 400px; pointer-events: auto; }
    .nav-dropdown a { font-size: 14px; padding: 10px 24px 10px 40px; display: flex; align-items: center; min-height: 44px; border-bottom: 1px solid rgba(255,255,255,0.04); }
    /* Language toggle — compact pill in mobile nav bar */
    .lang-toggle { padding: 7px 10px; font-size: 12px; min-height: 40px; }

    /* --- Hero: Compact for above-the-fold fit --- */
    .hero-content { padding: 80px 20px 40px; }
    .hero-logo { width: 240px; height: 158px; margin-bottom: 14px; }
    #hero h1 { font-size: clamp(26px, 7vw, 36px); margin-bottom: 10px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 16px; line-height: 1.5; }
    .hero-ctas { gap: 10px; margin-bottom: 20px; flex-wrap: wrap; justify-content: center; }
    .hero-ctas .btn-lg { padding: 10px 20px; font-size: 13px; min-height: 40px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .stat-number { font-size: 26px; }
    .stat-label { font-size: 11px; }
    .stat-divider { display: none; }

    /* --- Services: 2-column grid --- */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .services-grid .reveal { transform: translateY(20px); }
    .service-card { padding: 20px 16px; border-radius: 16px; }
    .service-card .service-icon { width: 48px; height: 48px; margin-bottom: 12px; }
    .service-card .service-icon i { font-size: 20px; }
    .service-card h3 { font-size: 15px; margin-bottom: 6px; }
    .service-card p { font-size: 12px; line-height: 1.5; }
    .service-card .service-features { display: none; }
    .service-card .service-link { font-size: 12px; margin-top: 8px; }

    /* --- Footer: 2-column layout --- */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand .logo { margin-bottom: 12px; }
    .footer-logo-img { width: 160px; }
    .footer-brand p { font-size: 13px; margin-bottom: 16px; }
    .footer-links h4 { font-size: 13px; margin-bottom: 12px; }
    .footer-links li { margin-bottom: 4px; }
    .footer-links a { font-size: 13px; display: inline-flex; padding: 6px 0; min-height: 44px; min-width: 44px; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 0; }

    /* --- Sections: Tighter spacing --- */
    .why-cards { grid-template-columns: 1fr; }
    .service-detail-content .why-cards { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid > * { min-width: 0; }
    .about-features { grid-template-columns: 1fr; }
    .business-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .section-header { margin-bottom: 32px; }
    .section-subtitle { font-size: 14px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .area-card { padding: 20px 16px; }

    /* --- Promo Banner: Compact mobile --- */
    .promo-content { font-size: 11px; gap: 6px; padding: 0 8px; }
    #promo-banner { padding: 5px 0; }
    .promo-content i { font-size: 12px; }
    .promo-cta { padding: 5px 10px; min-height: 28px; font-size: 10px; }
    .promo-close { width: 28px; height: 28px; font-size: 16px; padding: 4px; }
    .promo-tail { display: none; } /* Hide tail copy on mobile so banner stays 1 line */

    /* --- Trust badges: scroll strip --- */
    .trust-badges-wrap { padding: 12px 0; }
    .trust-bar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 8px; justify-content: flex-start; scrollbar-width: none; }
    .trust-bar::-webkit-scrollbar { display: none; }
    .trust-badge { flex: 0 0 auto; min-width: 150px; padding: 8px 10px; gap: 8px; }
    .trust-icon { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; }
    .trust-text strong { font-size: 12px; }
    .trust-text span { font-size: 11px; }

    /* --- Contact --- */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-page-grid > * { min-width: 0; }
    .contact-form { padding: 28px 20px; }
    .contact-form-wrapper { position: static; }
    .contact-item a { min-height: 44px; display: inline-flex; align-items: center; }

    /* --- Reviews --- */
    .reviews-carousel { touch-action: pan-y pinch-zoom; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 20px; }
    .review-text { font-size: 14px; }
    .review-platforms { flex-direction: column; align-items: center; gap: 12px; }

    /* --- Estimator --- */
    .estimator-card { grid-template-columns: 1fr; padding: 28px 20px; }
    .addon-options { grid-template-columns: 1fr; }
    .property-toggle { grid-template-columns: repeat(2, 1fr); }
    .estimate-amount { font-size: 48px; }
    .prop-btn { padding: 12px 12px; font-size: 13px; }

    /* --- Service subpage sidebar: reorder + compact --- */
    .service-sidebar { display: flex; flex-direction: column; }
    .service-sidebar > .mini-calc { order: -3; }
    .service-sidebar > .sidebar-card:nth-child(3) { order: -2; } /* Need a Quote */
    .service-sidebar > .sidebar-card:nth-child(4) { order: -1; } /* Contact Info */
    .service-sidebar > .sidebar-card:first-child { order: 0; }   /* Our Other Services */
    .sidebar-services { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .sidebar-services li { margin-bottom: 0; }
    .sidebar-services a { font-size: 12px; padding: 10px 10px; gap: 6px; }
    .sidebar-card { padding: 20px 16px; margin-bottom: 16px; }
    .sidebar-card h3 { font-size: 18px; margin-bottom: 12px; }
    /* Fix mini-calc button cutoff */
    .mini-calc .btn-full { white-space: normal; min-height: 44px; padding: 10px 12px; font-size: 13px; }

    /* --- Misc --- */
    .why-card { padding: 24px; }
    .faq-question { padding: 14px 18px; }
    .faq-question span { font-size: 15px; }
    .faq-answer p { padding: 0 18px 14px; font-size: 14px; }
    .back-to-top { width: 42px; height: 42px; bottom: 16px; right: 16px; font-size: 16px; }
    .dark-mode-toggle { width: 42px; height: 42px; bottom: 16px; left: 16px; font-size: 18px; }
    .page-header { padding: 100px 0 40px; }
    .gallery-arrow { width: 44px; height: 44px; font-size: 14px; }
    a[href^="tel:"], a[href^="mailto:"] { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; }
}

@media (max-width: 480px) {
    .hero-content { padding: 72px 16px 32px; }
    .hero-logo { width: 180px; height: 118px; margin-bottom: 12px; }
    #hero h1 { font-size: clamp(22px, 6.5vw, 30px); margin-bottom: 8px; }
    .hero-subtitle { font-size: 13px; margin-bottom: 12px; }
    .hero-ctas { gap: 8px; margin-bottom: 16px; }
    .hero-ctas .btn-lg { padding: 8px 16px; font-size: 12px; min-height: 36px; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 22px; }
    .stat-plus, .stat-star { font-size: 16px; }
    .stat-label { font-size: 10px; }
    .section-header { margin-bottom: 24px; }
    .section-subtitle { font-size: 13px; }
    .btn-lg { padding: 12px 24px; font-size: 14px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn-lg { width: 100%; justify-content: center; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .business-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .highlight i { font-size: 20px; width: 40px; height: 40px; }
    .highlight span { font-size: 12px; }
    .services-grid { gap: 10px; }
    .service-card { padding: 16px 12px; }
    .service-card h3 { font-size: 13px; }
    .service-card p { font-size: 11px; }
    .service-card .service-icon { width: 40px; height: 40px; }
    .service-card .service-icon i { font-size: 18px; }
    .area-card { padding: 16px 12px; }
    .areas-grid { gap: 10px; }
    .trust-badge { min-width: 130px; padding: 6px 10px; }
    .trust-icon { width: 28px; height: 28px; font-size: 12px; }
    .trust-text strong { font-size: 11px; }
    .trust-text span { font-size: 10px; }
    .estimator-card { padding: 24px 16px; }
    .estimate-amount { font-size: 42px; }
    .estimator-result { padding: 28px 16px; }
    .prop-btn { padding: 10px 12px; font-size: 13px; gap: 6px; }
    .contact-form { padding: 24px 16px; }
    .back-to-top { width: 40px; height: 40px; bottom: 12px; right: 12px; font-size: 14px; }
    .dark-mode-toggle { width: 40px; height: 40px; bottom: 12px; left: 12px; font-size: 16px; }
    .page-header { padding: 90px 0 36px; }
    .footer-logo-img { width: 140px; }
    .footer-brand p { font-size: 12px; }
    .footer-links h4 { font-size: 12px; }
    .footer-links a { font-size: 12px; }
    .carousel-dots { gap: 0; flex-wrap: wrap; }
    .promo-cta { min-width: auto; }
}

@media (max-width: 375px) {
    .hero-content { padding: 68px 12px 28px; }
    .hero-logo { width: 150px; height: 99px; margin-bottom: 10px; }
    #hero h1 { font-size: 22px; }
    .hero-subtitle { font-size: 12px; }
    .hero-ctas .btn-lg { padding: 7px 14px; font-size: 11px; }
    .container { padding: 0 12px; }
    .hero-stats { gap: 12px; }
    .stat-number { font-size: 20px; }
    .stat-label { font-size: 10px; }
    .btn-lg { padding: 10px 20px; font-size: 13px; }
    .estimator-card { padding: 20px 12px; }
    .estimate-amount { font-size: 36px; }
    .contact-form { padding: 20px 12px; }
    .review-card { padding: 16px; }
    .area-card { padding: 14px 10px; }
    .page-header { padding: 80px 0 32px; }
    .contact-page-grid div { min-width: 0; }
    .contact-page-grid a { overflow-wrap: anywhere; }
    .service-card { padding: 14px 10px; }
    .footer-grid { gap: 20px 12px; }
}

/* ========================================
   Dark Mode Support
   ======================================== */
html[data-theme="dark"] {
    --gray-900: #0f1525; --gray-800: #151c2e; --gray-700: #1c2438; --gray-600: #94a3b8; --gray-400: #64748b; --gray-300: #334155; --gray-200: #1e293b; --gray-100: #151c2e; --gray-50: #111827; --white: #f1f5f9; --text: #f1f5f9; --text-light: #cbd5e1; --text-primary: #f1f5f9; --text-secondary: #cbd5e1; --text-muted: #94a3b8; --bg: #0a0e1a; --surface: #151c2e; --surface-light: #1c2438; --border: rgba(255, 255, 255, 0.08); --border-light: rgba(255, 255, 255, 0.05); --shadow-sm: 0 1px 2px rgba(0,0,0,0.3); --shadow: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3); --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3); --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.3); --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.5);
}
html[data-theme="dark"] .social-link, html[data-theme="dark"] .social-links a { background: rgba(255, 255, 255, 0.1); color: #f1f5f9; }
html[data-theme="dark"] .form-group input, html[data-theme="dark"] .form-group select, html[data-theme="dark"] .form-group textarea { background: #0a0e1a; color: #f1f5f9; }
html[data-theme="dark"] .form-group input:focus, html[data-theme="dark"] .form-group select:focus, html[data-theme="dark"] .form-group textarea:focus { background: #0f1525; }
html[data-theme="dark"] .form-group input::placeholder, html[data-theme="dark"] .form-group textarea::placeholder { color: #64748b; }
html[data-theme="dark"] .service-card h3 { color: #f1f5f9; }
html[data-theme="dark"] .service-card p, html[data-theme="dark"] .service-features li { color: #94a3b8; }
html[data-theme="dark"] .about-description { color: #cbd5e1; }
html[data-theme="dark"] .about-description strong { color: #60a5fa; }
html[data-theme="dark"] .feature p { color: #94a3b8; }
html[data-theme="dark"] .highlight span { color: #cbd5e1; }
html[data-theme="dark"] .contact-form { background: #151c2e; border-color: rgba(255, 255, 255, 0.08); }
html[data-theme="dark"] .contact-form h3 { color: #f1f5f9; }
html[data-theme="dark"] .form-group label { color: #cbd5e1; }
html[data-theme="dark"] .contact-item h4 { color: #f1f5f9; }
html[data-theme="dark"] .contact-item a, html[data-theme="dark"] .contact-item p { color: #94a3b8; }
html[data-theme="dark"] .review-text { color: #cbd5e1; }
html[data-theme="dark"] .review-author strong { color: #f1f5f9; }
html[data-theme="dark"] .review-author span { color: #94a3b8; }
html[data-theme="dark"] .estimator-group select { background: #0a0e1a; color: #f1f5f9; border-color: rgba(255, 255, 255, 0.08); }
html[data-theme="dark"] .addon-check { border-color: rgba(255, 255, 255, 0.08); background: #0a0e1a; color: #cbd5e1; }
html[data-theme="dark"] .estimator-result { background: linear-gradient(135deg, #151c2e, #1c2438); border-color: rgba(59, 130, 246, 0.2); }
html[data-theme="dark"] .estimate-amount { color: #f1f5f9; }
html[data-theme="dark"] .section-header h2 { color: #f1f5f9; }
html[data-theme="dark"] .section-subtitle { color: #94a3b8; }
html[data-theme="dark"] .footer-brand .social-links a { background: rgba(255, 255, 255, 0.1); color: #f1f5f9; }
html[data-theme="dark"] .about-illustration-main { background: linear-gradient(135deg, #1c2438, #151c2e); }

/* Dark mode: keep trust bar blue (matches hero gradient) instead of turning black */
html[data-theme="dark"] .trust-badges-wrap {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(37, 72, 176, 0.92) 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.18);
}
html[data-theme="dark"] .trust-badges-wrap .trust-bar,
html[data-theme="dark"] .trust-badges-wrap .trust-badge { background: transparent !important; }
html[data-theme="dark"] .trust-badges-wrap .trust-badge { border-right-color: rgba(255, 255, 255, 0.15); }
html[data-theme="dark"] .breadcrumbs { background: #0f1525; border-color: rgba(255,255,255,0.08); }
html[data-theme="dark"] .sidebar-card { background: #151c2e; border-color: rgba(255,255,255,0.08); }
html[data-theme="dark"] .sidebar-services a { border-color: rgba(255,255,255,0.08); color: #cbd5e1; }
html[data-theme="dark"] .sidebar-services a:hover, html[data-theme="dark"] .sidebar-services a.active { background: rgba(59,130,246,0.1); color: #93c5fd; }

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .animate-in {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .particle,
    .nav-particle {
        display: none;
    }
    .scroll-indicator {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}


/* HOMEPAGE STREAMLINE - 2026-04-13 */
.diff-strip { background: linear-gradient(135deg, #152e7a 0%, #1a3a8f 100%); border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); padding: 40px 0; }
.diff-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.diff-item { display: flex; align-items: center; gap: 16px; }
.diff-icon { width: 48px; height: 48px; min-width: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.diff-text strong { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.95); margin-bottom: 2px; font-weight: 600; }
.diff-text span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
@media (max-width: 767px) { .diff-items { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .diff-items { grid-template-columns: 1fr; } }
.two-regions-section { position: relative; background: linear-gradient(135deg, #0f2368 0%, #152e7a 45%, #1a3a8f 100%); padding: 100px 0; overflow: hidden; }
.two-regions-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(245,158,11,0.18) 0%, transparent 40%), radial-gradient(circle at 85% 80%, rgba(59,130,246,0.25) 0%, transparent 45%), radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: auto, auto, 28px 28px; pointer-events: none; opacity: 0.9; }
.two-regions-section::after { content: ''; position: absolute; left: 50%; top: 42%; bottom: 12%; width: 1px; background: linear-gradient(180deg, transparent 0%, rgba(245,158,11,0.4) 50%, transparent 100%); pointer-events: none; }
.two-regions-section .container { position: relative; z-index: 1; }
.regions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.two-regions-section.single-region::after { display: none; }
.two-regions-section.single-region .regions-grid { grid-template-columns: minmax(0, 560px); justify-content: center; margin: 0 auto; }
.region-card { position: relative; background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; padding: 44px 36px 36px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s ease, border-color 0.35s ease; overflow: hidden; }
.region-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%); opacity: 0.85; }
.region-card::after { content: ''; position: absolute; top: -50%; right: -20%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 70%); pointer-events: none; opacity: 0; transition: opacity 0.4s ease; }
.region-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.4); box-shadow: 0 28px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,158,11,0.2); }
.region-card:hover::after { opacity: 1; }
.region-card-header { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.region-icon { width: 64px; height: 64px; min-width: 64px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 1.7rem; flex-shrink: 0; box-shadow: 0 10px 24px rgba(30,64,175,0.45), inset 0 1px 0 rgba(255,255,255,0.2); position: relative; }
.region-icon::after { content: ''; position: absolute; inset: -2px; border-radius: 18px; background: linear-gradient(135deg, rgba(245,158,11,0.3), transparent 60%); z-index: -1; filter: blur(10px); opacity: 0; transition: opacity 0.35s ease; }
.region-card:hover .region-icon::after { opacity: 1; }
.region-card h3 { font-family: var(--font-display); font-size: 1.55rem; color: #fff; margin: 0; line-height: 1.1; }
.region-meta { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,158,11,0.85); margin: 4px 0 26px 82px; display: flex; align-items: center; gap: 8px; }
.region-meta::before { content: ''; width: 24px; height: 1px; background: var(--accent); display: inline-block; }
.city-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.city-pill { position: relative; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); font-size: 0.82rem; font-weight: 500; padding: 6px 14px 6px 22px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.city-pill::before { content: ''; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px rgba(245,158,11,0.6); }
.city-pill:hover { background: rgba(245,158,11,0.14); color: #fff; border-color: rgba(245,158,11,0.4); transform: translateY(-1px); }
.region-yelp { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 700; font-size: 0.9rem; text-decoration: none; padding: 10px 18px; border: 1px solid rgba(245,158,11,0.35); border-radius: 10px; background: rgba(245,158,11,0.06); transition: background 0.25s ease, border-color 0.25s ease, gap 0.25s ease, transform 0.25s ease; min-height: 44px; }
.two-regions-section.single-region .region-yelp { display: flex; width: max-content; margin: 0 auto; }
.region-yelp:hover { background: rgba(245,158,11,0.16); border-color: var(--accent); gap: 14px; transform: translateY(-1px); }
.region-yelp i { font-size: 1.1rem; }
@media (max-width: 767px) {
  .two-regions-section { padding: 72px 0; }
  .two-regions-section::after { display: none; }
  .regions-grid { grid-template-columns: 1fr; gap: 28px; }
  .region-card { padding: 36px 24px 28px; }
  .region-meta { margin-left: 0; margin-top: 12px; }
}


/* ========================================
   GRADIENT TEXT — Blue variant (white/light backgrounds)
   ======================================== */
.gt-blue {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* ========================================
   GRADIENT TEXT — Amber override for blue/dark sections
   Rule: white/light bg → blue text (.gt-blue is correct)
         blue/dark bg   → amber text (override below)
   ======================================== */
#why-us .gt-blue,
body.inner-page #estimator .gt-blue {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HOMEPAGE FIXES - 2026-04-15
   ======================================== */

/* --- Fix 1: Hero vertical centering + scroll indicator above trust bar --- */
.hero-content { padding-top: 120px; padding-bottom: 180px; }
.scroll-indicator { bottom: 110px; animation: bounce 2s ease-in-out infinite !important; }
.wheel { animation: scroll-wheel 2s ease-in-out infinite !important; }

/* --- Fix 2: Trust badge layout — vertical icon+text, dividers --- */
.trust-badges-wrap { padding: 10px 0; }
.trust-badges-wrap .container { max-width: 100%; padding: 0 20px; }
.trust-bar { gap: 0; flex-wrap: nowrap; }
.trust-badge {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    flex: 1 1 0;
    min-width: 0;
}
.trust-badge:last-child { border-right: none; }
.trust-icon { width: 28px; height: 28px; font-size: 13px; border-radius: 8px; }
.trust-text { display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 0; text-align: center; }
.trust-text strong { font-size: 12px; line-height: 1.2; white-space: nowrap; }
.trust-text span { font-size: 10px; opacity: 0.8; white-space: nowrap; }
@media (max-width: 1100px) {
    .trust-bar { flex-wrap: wrap; }
    .trust-badge { flex: 0 0 calc(25% - 1px); border-right: 1px solid rgba(255,255,255,0.12); }
    .trust-badge:nth-child(4n) { border-right: none; }
}
@media (max-width: 767px) {
    .trust-badge { flex: 0 0 calc(50% - 1px); }
    .trust-badge:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.12); }
    .trust-badge:nth-child(2n) { border-right: none; }
}

/* --- Fix 4: Reviews section on white — fix carousel dots + section header colors --- */
#reviews.section-light .section-header h2 { color: var(--text-primary) !important; }
#reviews.section-light .section-subtitle { color: var(--text-secondary) !important; }
.section-light .carousel-dot { background: rgba(0, 0, 0, 0.15); }
.section-light .carousel-dot.active { background: var(--accent); }

/* --- Fix 5: "Proudly Serving" — white text on dark blue two-regions section --- */
.two-regions-section .section-header h2 { color: #ffffff; }
.two-regions-section .section-subtitle { color: rgba(255, 255, 255, 0.9); }

/* --- Guarantee pillars: support 6 items cleanly in 3-col grid --- */
.guarantee-pillars { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 768px) { .guarantee-pillars { grid-template-columns: 1fr; } }

/* --- Reviews page: convert dark sections to light for pattern consistency --- */
.reviews-stats-section { background: #f0f4ff !important; }
.reviews-stat-card { background: #ffffff !important; border: 1px solid rgba(30,64,175,0.12) !important; box-shadow: 0 4px 12px rgba(30,64,175,0.08) !important; }
.reviews-stat-number { color: var(--primary) !important; }
.reviews-stat-label { color: var(--text-muted) !important; }
.reviews-stat-stars { color: var(--accent) !important; }
.reviews-filter-section { background: #f0f4ff !important; }
.reviews-trust-line { color: var(--text-muted) !important; }
.filter-tab { background: rgba(30,64,175,0.06) !important; border-color: rgba(30,64,175,0.15) !important; color: var(--text-secondary) !important; }
.filter-tab.active, .filter-tab:hover { background: var(--accent) !important; border-color: var(--accent) !important; color: #000 !important; }
.reviews-page-section { background: var(--surface-light) !important; }
.review-date { color: var(--text-muted) !important; }
.cleaner-name { color: var(--text-muted) !important; }

/* REVIEWS PAGE STYLES - 2026-04-15 */
.reviews-stats-section { background: var(--dark-light); padding: 60px 0 40px; }
.reviews-stats-bar { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.reviews-stat-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px 48px; text-align: center; min-width: 160px; }
.reviews-stat-number { font-size: 2.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.reviews-stat-stars { color: var(--accent); font-size: 1.1rem; margin: 8px 0; letter-spacing: 3px; }
.reviews-stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.reviews-filter-section { background: var(--dark-light); padding: 0 0 40px; }
.reviews-trust-line { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-bottom: 20px; letter-spacing: 0.3px; font-style: italic; }
.review-filter-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.filter-tab { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); padding: 8px 20px; border-radius: 24px; cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; font-family: inherit; }
.filter-tab.active, .filter-tab:hover { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 600; }
.reviews-page-section { background: var(--dark); padding: 48px 0 80px; }
.reviews-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .reviews-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-page-grid { grid-template-columns: 1fr; } }
.review-meta { display: flex; align-items: center; gap: 10px; margin: 12px 0 10px; }
.service-tag { background: rgba(245,158,11,0.15); color: var(--accent); font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 12px; white-space: nowrap; }
.review-date { color: rgba(255,255,255,0.38); font-size: 0.72rem; }
.cleaner-name { display: block; color: rgba(255,255,255,0.4); font-size: 0.78rem; margin-top: 2px; }

/* ========================================
   SERVICE PAGE REDESIGN — 2026-04-16
   Full-width alternating section layout
   ======================================== */

/* SECTION 2 — Highlights Strip (White) */
.svc-highlights { padding: 72px 0; background: #ffffff; }
.svc-highlights .section-header { margin-bottom: 48px; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.highlights-grid--3 { grid-template-columns: repeat(3, 1fr); }
.highlight-card { text-align: center; padding: 36px 20px 32px; border-radius: 16px; background: #f8faff; border: 1px solid rgba(30,64,175,0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.highlight-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(30,64,175,0.13); }
.highlight-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: #fff; font-size: 22px; box-shadow: 0 8px 20px rgba(30,64,175,0.25); }
.highlight-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 8px; }
.highlight-card h4 { font-size: 0.975rem; font-weight: 700; color: var(--text-primary); margin: 0 0 8px; }
.highlight-card p { font-size: 0.855rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* SECTION 3 — What's Included (Blue) */
.svc-included { padding: 80px 0; background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%); }
.svc-included .section-header h2 { color: #fff; }
.svc-included .section-subtitle { color: rgba(255,255,255,0.82); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.rooms-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rooms-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
.janitorial-addons-note { max-width: 780px; margin: 40px auto 0; text-align: center; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.janitorial-addons-note a { color: var(--accent); font-weight: 600; text-decoration: none; }
.janitorial-addons-note a:hover { text-decoration: underline; }
.room-card { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 28px 24px; }
.room-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.room-card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,158,11,0.18); display: flex; align-items: center; justify-content: center; color: #fbbf24; font-size: 17px; flex-shrink: 0; }
.room-card h3 { color: #fff; font-size: 0.975rem; font-weight: 700; margin: 0; }
.room-card ul { list-style: none; padding: 0; margin: 0; }
.room-card ul li { color: rgba(255,255,255,0.80); font-size: 0.855rem; padding: 5px 0 5px 20px; position: relative; line-height: 1.45; }
.room-card ul li::before { content: "✓"; position: absolute; left: 0; color: #fbbf24; font-weight: 700; }

/* SECTION 4 — Why This Service (White) */
.svc-reasons { padding: 80px 0; background: #ffffff; }
.svc-reasons .section-header { margin-bottom: 48px; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-tile { padding: 36px 28px; border-radius: 16px; background: #f8faff; border-left: 4px solid var(--primary); }
.reason-icon { font-size: 26px; color: var(--primary); margin-bottom: 18px; }
.reason-tile h4 { font-size: 1.025rem; font-weight: 700; color: var(--text-primary); margin: 0 0 10px; }
.reason-tile p { font-size: 0.89rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* SECTION 5 — Scheduling + How It Works + Calc (Blue) */
.svc-scheduling { padding: 80px 0; background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%); }
.svc-scheduling .section-header h2 { color: #fff; }
.svc-scheduling .section-subtitle { color: rgba(255,255,255,0.82); }
/* HIW horizontal row */
.hiw-horizontal { display: flex; align-items: stretch; gap: 0; margin-bottom: 24px; }
.hiw-step-h { flex: 1; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 28px 22px; text-align: center; }
.hiw-arrow { display: flex; align-items: center; justify-content: center; color: #fbbf24; font-size: 1.3rem; padding: 0 14px; flex-shrink: 0; }
.hiw-step-h .hiw-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,158,11,0.22); display: flex; align-items: center; justify-content: center; color: #fbbf24; font-size: 1rem; font-weight: 900; margin: 0 auto 12px; }
.hiw-step-h .hiw-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,158,11,0.18); display: flex; align-items: center; justify-content: center; color: #fbbf24; font-size: 18px; margin: 0 auto 14px; }
.hiw-step-h h4 { color: #fff; font-size: 0.975rem; font-weight: 700; margin: 0 0 8px; }
.hiw-step-h p { color: rgba(255,255,255,0.72); font-size: 0.84rem; margin: 0; line-height: 1.5; }
/* Full-width calculator */
.svc-calc-full { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; padding: 28px 32px; }
.svc-calc-full--compact { max-width: 560px; margin: 0 auto; padding: 24px 28px; }
.svc-calc-full--compact > h3 { justify-content: center; }
.svc-calc-full--compact .mini-calc { max-width: 100%; }
@media (max-width: 600px) { .svc-calc-full--compact { padding: 20px 18px; } }
.svc-calc-full > h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.svc-calc-full > h3 i { color: #fbbf24; }
.svc-calc-full .mini-calc__result { margin-top: 20px; }
.svc-calc-full .mc-addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 12px; }
.svc-calc-full .calc-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* SECTION 6 — Reviews (White) */
.svc-reviews { padding: 80px 0; background: #ffffff; }
.svc-reviews .section-header { margin-bottom: 48px; }
.svc-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-review-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(30,64,175,0.08); }
.svc-review-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.svc-review-text { color: #334155; font-size: 0.875rem; line-height: 1.75; font-style: italic; margin: 0 0 20px; }
.svc-review-author { display: flex; align-items: center; gap: 12px; }
.svc-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.svc-review-name { font-weight: 700; color: var(--text-primary); font-size: 0.875rem; }
.svc-review-service { font-size: 0.775rem; color: var(--text-muted); margin-top: 2px; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* SECTION 7 — FAQ (Blue — completes W→B→W→B→W→B→Amber pattern) */
.svc-faq { padding: 80px 0; background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%); }
.svc-faq .section-header { margin-bottom: 40px; }
.svc-faq h2 { color: #fff; }
.svc-faq .section-header h2 { color: #fff; }
.svc-faq .section-header p, .svc-faq .section-subtitle { color: rgba(255,255,255,0.82); }
.svc-faq .section-eyebrow { color: rgba(255,255,255,0.7) !important; }
.svc-faq .gt-blue { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.svc-faq .faq-section { max-width: 780px; margin: 0 auto; padding: 0 !important; background: transparent !important; }
.svc-faq .faq-item { border-left: 3px solid transparent; transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.svc-faq .faq-item:hover { border-left-color: var(--accent); }
.svc-faq .faq-item.active { border-left-color: var(--accent); background: #fff !important; box-shadow: 0 2px 16px rgba(245,158,11,0.18); }
.svc-faq .faq-question span { font-size: 15px; font-weight: 600; }
.svc-faq .faq-question i { color: var(--accent); transition: transform 0.3s ease; }
.svc-faq .faq-item.active .faq-question i { transform: rotate(45deg); }
.svc-faq-footer { text-align: center; margin-top: 32px; }
.svc-faq-footer a { font-size: 14px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s ease, color 0.2s ease; min-height: 44px; }
.svc-faq-footer a:hover { gap: 10px; color: var(--accent-light); }

/* Responsive — service pages */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid, .rooms-grid--4 { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .hiw-horizontal { flex-direction: column; }
    .hiw-arrow { transform: rotate(90deg); padding: 8px 0; }
    .svc-reviews-grid { grid-template-columns: 1fr; }
    .svc-calc-full .mc-addons-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .highlights-grid--3 { grid-template-columns: 1fr; }
    .svc-calc-full .mc-addons-list { grid-template-columns: 1fr; }
}

/* ---------- Alternating section utility: blue bg variant (for chores builder, etc.) ---------- */
.svc-blue-bg { background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%); }
.svc-blue-bg .section-header h2 { color: #fff; }
.svc-blue-bg .section-subtitle { color: rgba(255,255,255,0.82); }
.svc-blue-bg .chore-category-title { color: #fff; }
.svc-blue-bg .chore-category-header { border-bottom-color: rgba(255,255,255,0.22); }
.svc-blue-bg .chore-category-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #fff; }
/* Selected chore cards need a solid bg on blue sections (default rgba tint disappears against blue). */
.svc-blue-bg .chore-card.selected { background: #ffffff; border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), 0 4px 16px rgba(245,158,11,0.25); }
.svc-blue-bg .chore-card.selected .chore-check { background: var(--accent); border-color: var(--accent); color: var(--dark); }


/* FAQ page  category grouping */
.faq-page-body { background: var(--gray-900, #0f172a); }
.faq-page-body .faq-section { padding: 0 !important; background: transparent !important; margin: 0 0 14px; counter-reset: faq; }
.faq-page-body .faq-section .faq-item { margin-bottom: 10px; }
.faq-cat-heading {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent, #F59E0B);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 44px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-cat-heading:first-of-type { margin-top: 0; }
.faq-cat-heading i {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.14);
    color: var(--accent, #F59E0B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.faq-cat-heading span { flex: 1; }
@media (max-width: 640px) {
    .faq-cat-heading { font-size: 17px; margin: 32px 0 14px; letter-spacing: 0.08em; }
    .faq-cat-heading i { width: 30px; height: 30px; font-size: 12px; }
}

/* ==========================================
   FAQ Page Enhancements: search + sticky nav + stats
   ========================================== */
.faq-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 6px;
}
.faq-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}
.faq-stat-chip strong { color: var(--accent, #F59E0B); font-weight: 800; font-size: 15px; }
.faq-stat-chip i { color: var(--accent, #F59E0B); font-size: 12px; }

/* Sticky toolbar — tucks 6px under scrolled navbar (z:9999) so no visible seam */
.faq-toolbar {
    position: sticky;
    top: 56px;
    z-index: 40;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.96) 0%, rgba(30, 64, 175, 0.94) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.35);
    padding: 14px 0 12px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.35);
}
.faq-toolbar .container { max-width: 1280px; }

.faq-search-wrap {
    position: relative;
    max-width: 620px;
    margin: 0 auto 12px;
}
.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent, #F59E0B);
    font-size: 15px;
    pointer-events: none;
}
.faq-search-input {
    width: 100%;
    padding: 14px 48px 14px 48px;
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.faq-search-input::placeholder { color: rgba(255, 255, 255, 0.55); font-weight: 400; }
.faq-search-input:focus {
    border-color: var(--accent, #F59E0B);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}
.faq-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(245, 158, 11, 0.18);
    color: var(--accent, #F59E0B);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s ease;
}
.faq-search-clear:hover { background: var(--accent, #F59E0B); color: #0f172a; }

.faq-cat-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    padding: 4px 4px 10px;
    scroll-behavior: smooth;
}
.faq-cat-nav::-webkit-scrollbar { display: none; }
.faq-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.faq-cat-pill i { font-size: 11px; opacity: 0.85; }
.faq-cat-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(245, 158, 11, 0.55);
    color: #fff;
}
.faq-cat-pill.is-active {
    background: linear-gradient(135deg, var(--accent, #F59E0B) 0%, var(--accent-light, #FBBF24) 100%);
    border-color: var(--accent, #F59E0B);
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.faq-cat-pill.is-active i { opacity: 1; color: #0f172a; }

/* Search highlight */
mark.faq-hit {
    background: rgba(245, 158, 11, 0.35);
    color: inherit;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: 700;
}

/* No results empty state */
.faq-no-results {
    text-align: center;
    padding: 60px 30px;
    background: var(--surface, #fff);
    border: 2px dashed rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-lg, 20px);
    margin: 20px 0 40px;
}
.faq-no-results-icon {
    width: 72px; height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent, #F59E0B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.faq-no-results h3 { font-size: 22px; font-weight: 800; color: var(--text-primary, #0f172a); margin: 0 0 8px; }
.faq-no-results p { color: var(--text-secondary, #64748b); font-size: 15px; margin: 0; }
.faq-inline-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--accent, #F59E0B);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.faq-inline-link:hover { color: var(--accent-light, #FBBF24); }

/* Category heading anchor offset when jumping */
.faq-cat-heading { scroll-margin-top: 200px; }

@media (max-width: 768px) {
    .faq-toolbar { top: 52px; padding: 10px 0 8px; }
    .faq-search-input { padding: 12px 42px 12px 42px; font-size: 14px; }
    .faq-search-icon { left: 14px; font-size: 13px; }
    .faq-cat-pill { padding: 7px 13px; font-size: 12px; }
    .faq-cat-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 4px 10px;
        scroll-padding-inline: 10px;
    }
    .faq-hero-stats { gap: 6px; margin: 14px 0 4px; }
    .faq-stat-chip { padding: 6px 12px; font-size: 12px; }
    .faq-stat-chip strong { font-size: 13px; }
}


/* ========================================
   DARK MODE OVERRIDES — Batch 20 Full Audit
   ======================================== */

/* Light sections get dark bg */
html[data-theme="dark"] .section-light,
html[data-theme="dark"] .faq-snippet-section.section-light,
html[data-theme="dark"] .svc-highlights,
html[data-theme="dark"] .svc-reasons,
html[data-theme="dark"] .svc-reviews,
html[data-theme="dark"] .reviews-stats-section,
html[data-theme="dark"] .reviews-filter-section {
    background: #0a0e1a !important;
}

/* Section headers inside these */
html[data-theme="dark"] .section-light .section-header h2,
html[data-theme="dark"] .svc-highlights .section-header h2,
html[data-theme="dark"] .svc-reasons .section-header h2,
html[data-theme="dark"] .svc-reviews .section-header h2,
html[data-theme="dark"] .reviews-stats-section .section-header h2,
html[data-theme="dark"] .reviews-filter-section .section-header h2 {
    color: #f1f5f9 !important;
}

html[data-theme="dark"] .section-light .section-subtitle,
html[data-theme="dark"] .svc-highlights .section-subtitle,
html[data-theme="dark"] .svc-reasons .section-subtitle,
html[data-theme="dark"] .svc-reviews .section-subtitle,
html[data-theme="dark"] .reviews-stats-section .section-subtitle,
html[data-theme="dark"] .reviews-filter-section .section-subtitle {
    color: #94a3b8 !important;
}

/* Why cards inside .section-light */
html[data-theme="dark"] .section-light .why-card {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3) !important;
}
html[data-theme="dark"] .section-light .why-card:hover {
    background: #1c2438 !important;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.3) !important;
}
html[data-theme="dark"] .section-light .why-card h4 { color: #f1f5f9 !important; }
html[data-theme="dark"] .section-light .why-card p { color: #cbd5e1 !important; }

/* Service cards inside .section-light */
html[data-theme="dark"] .section-light .service-card {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
}
html[data-theme="dark"] .section-light .service-card h3 { color: #f1f5f9 !important; }
html[data-theme="dark"] .section-light .service-card p { color: #cbd5e1 !important; }
html[data-theme="dark"] .section-light .service-features li { color: #cbd5e1 !important; }

/* Highlight cards (svc pages) */
html[data-theme="dark"] .highlight-card {
    background: #151c2e;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .highlight-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
html[data-theme="dark"] .highlight-card h3,
html[data-theme="dark"] .highlight-card h4 { color: #f1f5f9; }
html[data-theme="dark"] .highlight-card p { color: #94a3b8; }

/* Reason tiles (svc pages) */
html[data-theme="dark"] .reason-tile {
    background: #151c2e;
    border-left-color: var(--primary-light, #3b82f6);
}
html[data-theme="dark"] .reason-tile h4 { color: #f1f5f9; }
html[data-theme="dark"] .reason-tile p { color: #cbd5e1; }

/* Service review cards */
html[data-theme="dark"] .svc-review-card {
    background: #151c2e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
html[data-theme="dark"] .svc-review-text { color: #cbd5e1; }
html[data-theme="dark"] .svc-review-name { color: #f1f5f9; }
html[data-theme="dark"] .svc-review-service { color: #94a3b8; }

/* Reviews stats card numbers on reviews page */
html[data-theme="dark"] .reviews-stat-number { color: #f1f5f9; }
html[data-theme="dark"] .reviews-stat-label { color: #94a3b8; }
html[data-theme="dark"] .reviews-stats-card,
html[data-theme="dark"] .stats-card,
html[data-theme="dark"] .reviews-filter-card {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
}

/* Reviews filter pills */
html[data-theme="dark"] .filter-pill,
html[data-theme="dark"] .reviews-filter-pill {
    background: #1c2438;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .filter-pill.active,
html[data-theme="dark"] .reviews-filter-pill.active {
    background: var(--primary, #1E40AF);
    color: #fff;
}

/* Review cards */
html[data-theme="dark"] .review-card {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

/* FAQ on faq.html + svc-faq-snippet */
html[data-theme="dark"] .faq-snippet-section .faq-item,
html[data-theme="dark"] .faq-section .faq-item {
    background: #151c2e;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .faq-question { color: #f1f5f9 !important; }
html[data-theme="dark"] .faq-answer,
html[data-theme="dark"] .faq-answer p { color: #cbd5e1 !important; }
html[data-theme="dark"] .faq-answer li { color: #cbd5e1 !important; }
html[data-theme="dark"] .faq-category-header h3,
html[data-theme="dark"] .faq-cat-title { color: #f1f5f9 !important; }

/* Service subpage FAQ (svc-faq) \u2014 override the hard-coded white active background */
html[data-theme="dark"] .svc-faq .faq-item {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .svc-faq .faq-item.active {
    background: #1a2338 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 12px 30px rgba(245,158,11,0.22) !important;
}
html[data-theme="dark"] .svc-faq .faq-question span { color: #f1f5f9 !important; }
html[data-theme="dark"] .svc-faq .faq-answer p { color: #cbd5e1 !important; }

/* FAQ search box */
html[data-theme="dark"] #faqSearch,
html[data-theme="dark"] .faq-search-input,
html[data-theme="dark"] .faq-search input {
    background: #151c2e;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] #faqSearch::placeholder,
html[data-theme="dark"] .faq-search input::placeholder { color: #64748b; }

/* FAQ category pills/nav */
html[data-theme="dark"] .faq-cat-pill,
html[data-theme="dark"] .faq-cat-btn {
    background: #1c2438;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .faq-cat-pill.active,
html[data-theme="dark"] .faq-cat-btn.active,
html[data-theme="dark"] .faq-cat-pill[aria-selected="true"] {
    background: var(--primary, #1E40AF);
    color: #fff;
}
html[data-theme="dark"] .faq-stat-chip {
    background: #1c2438;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .faq-stat-chip strong { color: #f1f5f9; }

/* Chores page calculator + cards (light bg sections) */
html[data-theme="dark"] .chore-card,
html[data-theme="dark"] .chore-card-qty,
html[data-theme="dark"] .chore-card-inner {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: #cbd5e1;
}
html[data-theme="dark"] .chore-card h4,
html[data-theme="dark"] .chore-card-title,
html[data-theme="dark"] .chore-name { color: #f1f5f9; }
html[data-theme="dark"] .chore-card p,
html[data-theme="dark"] .chore-desc { color: #94a3b8; }
html[data-theme="dark"] .chore-price { color: #60a5fa; }
html[data-theme="dark"] .chore-category-title,
html[data-theme="dark"] .chore-cat-title { color: #f1f5f9; }

/* Chores qty controls */
html[data-theme="dark"] .chore-qty-wrap {
    background: rgba(59,130,246,0.08);
    border-left-color: #60a5fa;
}
html[data-theme="dark"] .chore-qty-label { color: #93c5fd; }
html[data-theme="dark"] .chore-qty-input {
    background: #0a0e1a;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .chore-qty-btn {
    background: #0a0e1a;
    color: #93c5fd;
    border-color: #60a5fa;
}
html[data-theme="dark"] .chore-qty-btn:hover { background: #60a5fa; color: #0a0e1a; }

/* Chores total / sticky summary */
html[data-theme="dark"] .chores-summary,
html[data-theme="dark"] .chores-total-wrap,
html[data-theme="dark"] #choresSummary,
html[data-theme="dark"] .sticky-cart {
    background: #151c2e !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: #cbd5e1;
}
html[data-theme="dark"] #choresTotal,
html[data-theme="dark"] .chores-total-amount { color: #60a5fa; }

/* Mini-calc addon qty wrap */
html[data-theme="dark"] .mc-addon-qty-wrap {
    background: rgba(59,130,246,0.08);
    border-left-color: #60a5fa;
}
html[data-theme="dark"] .mc-addon-qty-label { color: #93c5fd; }
html[data-theme="dark"] .mc-addon-qty-input {
    background: #0a0e1a;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .mc-addon-qty-btn {
    background: #0a0e1a;
    color: #93c5fd;
    border-color: #60a5fa;
}
html[data-theme="dark"] .mc-addon-qty-btn:hover { background: #60a5fa; color: #0a0e1a; }
html[data-theme="dark"] .mc-addon-qty-price { color: #60a5fa; }

/* Mini-calc card itself */
html[data-theme="dark"] .mini-calc {
    background: #151c2e;
    border-color: rgba(255,255,255,0.08);
    color: #cbd5e1;
}
html[data-theme="dark"] .mini-calc input,
html[data-theme="dark"] .mini-calc select,
html[data-theme="dark"] .mini-calc textarea {
    background: #0a0e1a;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .mini-calc label,
html[data-theme="dark"] .mc-label { color: #cbd5e1; }
html[data-theme="dark"] .mc-prop-btn {
    background: #0a0e1a;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .mc-prop-btn.active {
    background: linear-gradient(135deg, var(--primary, #1E40AF), var(--primary-light, #3b82f6));
    color: #fff;
    border-color: transparent;
}
html[data-theme="dark"] .mc-counter-btn {
    background: #0a0e1a;
    color: #93c5fd;
    border-color: #60a5fa;
}
html[data-theme="dark"] .mc-counter-btn:hover { background: #60a5fa; color: #0a0e1a; }
html[data-theme="dark"] .mc-counter-val { color: #f1f5f9; }
html[data-theme="dark"] .mc-total,
html[data-theme="dark"] .mc-result-amount { color: #60a5fa; }

/* Contact page — property toggle (new) */
html[data-theme="dark"] .contact-prop-toggle { background: transparent; }
html[data-theme="dark"] .contact-prop-btn {
    background: #0a0e1a;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .contact-prop-btn:has(input:checked) {
    background: linear-gradient(135deg, var(--primary, #1E40AF), var(--primary-light, #3b82f6));
    color: #fff;
    border-color: transparent;
}
html[data-theme="dark"] .contact-prefill-banner {
    background: rgba(59,130,246,0.12);
    border-color: rgba(96,165,250,0.3);
    color: #cbd5e1;
}
html[data-theme="dark"] .contact-prefill-banner strong { color: #93c5fd; }

/* Contact inputs (beds, baths, address, sqft) */
html[data-theme="dark"] #contactBedrooms,
html[data-theme="dark"] #contactBathrooms,
html[data-theme="dark"] #contactAddress,
html[data-theme="dark"] #contactSqft,
html[data-theme="dark"] .contact-form select,
html[data-theme="dark"] .contact-form input[type="text"],
html[data-theme="dark"] .contact-form input[type="email"],
html[data-theme="dark"] .contact-form input[type="tel"],
html[data-theme="dark"] .contact-form input[type="number"],
html[data-theme="dark"] .contact-form textarea {
    background: #0a0e1a;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .contact-form input:-webkit-autofill,
html[data-theme="dark"] .contact-form textarea:-webkit-autofill {
    -webkit-text-fill-color: #f1f5f9;
    -webkit-box-shadow: 0 0 0 1000px #0a0e1a inset;
    caret-color: #f1f5f9;
}

/* About page gallery */
html[data-theme="dark"] .gallery-slide,
html[data-theme="dark"] .gallery-controls button {
    background: #151c2e;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.08);
}

/* Index diff-strip items */
html[data-theme="dark"] .diff-item { color: #e2e8f0; }

/* Trust bar / badges */
html[data-theme="dark"] .trust-bar,
html[data-theme="dark"] .trust-badge {
    background: #151c2e;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .trust-text,
html[data-theme="dark"] .trust-text span { color: #cbd5e1; }
html[data-theme="dark"] .trust-text strong { color: #f1f5f9; }

/* Reviews stats section cards specifically */
html[data-theme="dark"] .reviews-stats-grid > *,
html[data-theme="dark"] .reviews-stat {
    background: #151c2e;
    border-color: rgba(255,255,255,0.08);
}

/* Reveal/animate visible defaults */
html[data-theme="dark"] .carousel-dot { background: rgba(255,255,255,0.18); }
html[data-theme="dark"] .carousel-dot.active { background: var(--accent, #f59e0b); }

/* Breadcrumbs text */
html[data-theme="dark"] .breadcrumbs,
html[data-theme="dark"] .breadcrumbs a,
html[data-theme="dark"] .breadcrumbs span { color: #cbd5e1; }
html[data-theme="dark"] .breadcrumbs a:hover { color: #93c5fd; }
html[data-theme="dark"] .breadcrumb-separator { color: #64748b; }

/* End Batch 20 Dark Mode */


/* ==== Batch 20 dark mode readability patches ==== */
html[data-theme="dark"] .reviews-stat-card {
  background: rgba(30, 41, 59, 0.7) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
html[data-theme="dark"] .reviews-stat-label {
  color: #cbd5e1 !important;
}
html[data-theme="dark"] .reviews-stat-number,
html[data-theme="dark"] .reviews-stat-value {
  color: #e2e8f0 !important;
}

/* Estimate / service-card pricing labels -- dark blue on dark bg is unreadable */
html[data-theme="dark"] .estimate-label,
html[data-theme="dark"] .service-card .estimate-label,
html[data-theme="dark"] .service-card small,
html[data-theme="dark"] .service-card .price-label {
  color: #93c5fd !important;
}
html[data-theme="dark"] .service-card .btn-outline.btn-lg.btn-full,
html[data-theme="dark"] .btn-outline-dark,
html[data-theme="dark"] .faq-snippet-link {
  color: #93c5fd !important;
  border-color: #93c5fd !important;
}
html[data-theme="dark"] .btn-outline-dark:hover {
  background: rgba(147, 197, 253, 0.1) !important;
}

/* Service tag -- make sure amber on dark is legible */
html[data-theme="dark"] .service-tag {
  background: rgba(245, 158, 11, 0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

/* Featured badge (non-amber variant) -- keep primary blue readable */
html[data-theme="dark"] .featured-badge {
  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
  color: #0f172a !important;
}
html[data-theme="dark"] .featured-badge-amber {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: #0f172a !important;
}

/* Contact page: service-type radios */
html[data-theme="dark"] .service-type-option span,
html[data-theme="dark"] .contact-card span,
html[data-theme="dark"] input[type="radio"] + span,
html[data-theme="dark"] input[type="checkbox"] + span {
  color: #e2e8f0 !important;
}
/* ==== end Batch 20 dark patches ==== */


/* ==== Batch 20 dark mode: guarantee card ==== */
html[data-theme="dark"] .guarantee-section {
  background: var(--bg, #0a0e1a) !important;
}
html[data-theme="dark"] .guarantee-card {
  background: linear-gradient(135deg, #151c2e 0%, #1c2438 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
}
html[data-theme="dark"] .guarantee-content h2 {
  color: #f8fafc !important;
}
html[data-theme="dark"] .guarantee-content p {
  color: #cbd5e1 !important;
}
html[data-theme="dark"] .guarantee-content p strong,
html[data-theme="dark"] .guarantee-content p b {
  color: #f1f5f9 !important;
}
html[data-theme="dark"] .guarantee-pillar {
  color: #cbd5e1 !important;
}
html[data-theme="dark"] .guarantee-eyebrow {
  color: #fbbf24 !important;
}
/* ==== end guarantee dark patch ==== */


/* ============================================================
   Estimator Add-On enhancements: per-service pricing labels,
   quantity steppers, tiered windows card.
   ============================================================ */
.estimator-addons .addon-check { position: relative; }
.estimator-addons .addon-amt {
    margin-left: auto;
    color: var(--primary, #1e3a8a);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.estimator-addons .addon-amt-tiered {
    color: #B45309;
    font-style: italic;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.estimator-addons .addon-check-qty,
.estimator-addons .addon-check-tiered {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.estimator-addons .addon-check-qty > input[type="checkbox"],
.estimator-addons .addon-check-tiered > input[type="checkbox"] {
    flex-shrink: 0;
}
.estimator-addons .addon-check-label {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}
.estimator-addons .est-qty-stepper {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(30, 64, 175, 0.05);
    border-left: 3px solid var(--primary, #1e3a8a);
    border-radius: 6px;
}
.estimator-addons .est-qty-stepper[hidden] { display: none !important; }
.estimator-addons .est-qty-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary, #1e3a8a);
    flex: 1 1 100%;
    margin-bottom: 4px;
}
.estimator-addons .est-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid var(--primary, #1e3a8a);
    background: #fff;
    color: var(--primary, #1e3a8a);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.15s ease;
    padding: 0;
}
.estimator-addons .est-qty-btn:hover {
    background: var(--primary, #1e3a8a);
    color: #fff;
}
.estimator-addons .est-qty-input {
    width: 60px;
    height: 30px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid rgba(30, 64, 175, 0.25);
    font-weight: 700;
    font-size: 13px;
    background: #fff;
    color: var(--dark, #0f172a);
}
.estimator-addons .est-qty-amt {
    margin-left: 6px;
    color: var(--primary, #1e3a8a);
    font-weight: 800;
    font-size: 14px;
}
.estimator-addons .est-tier-detail {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(30, 64, 175, 0.05);
    border-left: 3px solid var(--primary, #1e3a8a);
    border-radius: 6px;
}
.estimator-addons .est-tier-detail[hidden] { display: none !important; }

/* Dark theme */
html[data-theme="dark"] .estimator-addons .addon-amt { color: #93c5fd; }
html[data-theme="dark"] .estimator-addons .addon-amt-tiered { color: #fbbf24; }
html[data-theme="dark"] .estimator-addons .est-qty-stepper,
html[data-theme="dark"] .estimator-addons .est-tier-detail {
    background: rgba(96, 165, 250, 0.10);
    border-left-color: #60a5fa;
}
html[data-theme="dark"] .estimator-addons .est-qty-btn {
    background: rgba(255,255,255,0.04);
    color: #93c5fd;
    border-color: #60a5fa;
}
html[data-theme="dark"] .estimator-addons .est-qty-btn:hover { background: #60a5fa; color: #0a0e1a; }
html[data-theme="dark"] .estimator-addons .est-qty-input {
    background: rgba(255,255,255,0.04);
    color: #f1f5f9;
    border-color: rgba(96,165,250,0.3);
}
html[data-theme="dark"] .estimator-addons .est-qty-amt,
html[data-theme="dark"] .estimator-addons .est-qty-label { color: #93c5fd; }
