/*
Theme Name: Millan's Pro Services
Theme URI: 
Author: Antigravity
Author URI: 
Description: Custom landing page theme for Millan's Pro Services
Version: 1.2
Text Domain: millans

-----------------------------------------------------------
   MILLAN'S PRO SERVICES � LANDING PAGE STYLES
   ----------------------------------------------------------- */
/* ═══════════════════════════════════════════════════════════
   MILLAN'S PRO SERVICES — LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
    /* Brand colors — derived from yellow logo */
    --gold-50:  #FFF9E6;
    --gold-100: #FFF0BF;
    --gold-200: #FFE699;
    --gold-300: #FFD966;
    --gold-400: #FFC933;
    --gold-500: #F5B800;  /* Primary brand gold */
    --gold-600: #D9A300;
    --gold-700: #B38600;
    --gold-800: #8C6900;

    /* Neutrals */
    --dark-950: #0A0C10;
    --dark-900: #0F1218;
    --dark-800: #161A23;
    --dark-700: #1E2330;
    --dark-600: #2A3040;
    --dark-500: #3A4155;
    --dark-400: #505A72;
    --dark-300: #6B7691;
    --dark-200: #8D96AE;
    --dark-100: #B0B8CC;
    --dark-50:  #D0D6E4;

    --white: #FFFFFF;
    --off-white: #F8F9FC;

    /* Accent */
    --accent-blue: #3B82F6;
    --accent-green: #22C55E;
    --accent-red: #EF4444;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F5B800 0%, #FFD966 50%, #F5B800 100%);
    --gradient-hero: linear-gradient(135deg, #0A0C10 0%, #161A23 40%, #1E2330 100%);
    --gradient-cta:  linear-gradient(135deg, #F5B800 0%, #D9A300 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Borders & Shadows */
    --border-subtle: 1px solid rgba(255,255,255,0.08);
    --border-gold: 1px solid rgba(245,184,0,0.3);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.2);
    --shadow-gold: 0 8px 32px rgba(245,184,0,0.15);
    --shadow-gold-lg: 0 16px 48px rgba(245,184,0,0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-950);
    color: var(--dark-100);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── UTILITY ── */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon sizes */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 32px; height: 32px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--dark-950);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    filter: brightness(1.1);
}

.btn-accent {
    background: var(--accent-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--dark-900);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.top-bar {
    background: var(--dark-900);
    border-bottom: var(--border-subtle);
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--dark-200);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left span,
.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar-right {
    display: flex;
    gap: 20px;
}
.top-bar-right a:hover {
    color: var(--gold-500);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: var(--border-subtle);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 24px;
}
.logo-img {
    height: 56px;
    width: auto;
}
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-200);
    border-radius: var(--radius-sm);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-500);
    background: rgba(245,184,0,0.08);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-phone-header {
    background: transparent;
    color: var(--gold-500);
    font-weight: 700;
    padding: 8px 16px;
    font-size: 0.88rem;
    border: 1px solid rgba(245,184,0,0.3);
}
.btn-phone-header:hover {
    background: rgba(245,184,0,0.1);
}
.btn-header-cta {
    padding: 8px 20px;
    font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 12, 16, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1050;
    padding: 120px 32px 40px;
    display: none; /* hidden on desktop */
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-100);
    padding: 16px 0;
    border-bottom: var(--border-subtle);
}
.mobile-nav-link:hover {
    color: var(--gold-500);
}
.mobile-cta {
    margin-top: 16px;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-950);
    overflow: hidden;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.35) saturate(0.8);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(10,12,16,0.6) 0%, rgba(10,12,16,0.3) 40%, rgba(10,12,16,0.7) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(245,184,0,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(245,184,0,0.06) 0%, transparent 40%);
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}
.landing-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 860px;
    padding: 96px 24px 72px;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 860px;
    padding: 96px 24px 72px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,184,0,0.12);
    border: 1px solid rgba(245,184,0,0.2);
    color: var(--gold-400);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    margin-top: 10px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--dark-200);
    font-weight: 500;
}
.icon-trust {
    width: 18px;
    height: 18px;
    color: var(--gold-500);
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--dark-600);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}
.icon-scroll {
    width: 28px;
    height: 28px;
    color: var(--dark-400);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* Hero particles */
.particle {
    position: absolute;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ── ANIMATIONS ── */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Card reveal on scroll */
.card-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.card-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    background: rgba(245,184,0,0.1);
    color: var(--gold-500);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-200);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: var(--section-padding);
    background: var(--dark-950);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dark-600) 50%, transparent 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}
.service-card:hover {
    border-color: rgba(245,184,0,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245,184,0,0.08);
}
.service-card:hover::before {
    opacity: 1;
}
/* Service Card Image */
.service-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.service-card:hover .service-card-image img {
    transform: scale(1.05);
}
.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,12,16,0.6) 100%);
    z-index: 1;
}
/* Service Card Body */
.service-card-body {
    padding: 36px 40px 40px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(245,184,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    color: var(--gold-500);
    border: 3px solid var(--dark-950);
}
.icon-commercial {
    background: rgba(59,130,246,0.12) !important;
    color: var(--accent-blue) !important;
}
.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-cta);
    color: var(--dark-950);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.service-card-desc {
    color: var(--dark-200);
    margin-bottom: 24px;
    line-height: 1.7;
}
.service-list {
    margin-bottom: 32px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--dark-100);
    font-size: 0.95rem;
}
.icon-check {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    flex-shrink: 0;
}
.btn-service {
    width: 100%;
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-us {
    padding: 80px 0;
    background: var(--dark-900);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.why-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.why-item:hover {
    background: rgba(255,255,255,0.03);
    transform: translateY(-4px);
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(245,184,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-500);
}
.why-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.why-item p {
    font-size: 0.9rem;
    color: var(--dark-200);
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════ */
.portfolio {
    padding: var(--section-padding);
    background: var(--dark-950);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.portfolio-item:hover img {
    transform: scale(1.08);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-label {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(245,184,0,0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════════
   BEFORE & AFTER
   ═══════════════════════════════════════════════════════════ */
.before-after {
    padding: var(--section-padding);
    background: var(--dark-900);
}
.ba-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ba-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    background: var(--gradient-card);
    border: var(--border-subtle);
    transition: var(--transition);
}
.ba-card:hover {
    border-color: rgba(245,184,0,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245,184,0,0.08);
}
.ba-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.ba-card:hover img {
    transform: scale(1.03);
}
.ba-card-info {
    padding: 16px 20px;
}
.ba-label {
    display: inline-block;
    background: rgba(245,184,0,0.12);
    color: var(--gold-400);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(245,184,0,0.15);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient-cta);
    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.05'%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");
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--dark-950);
    margin-bottom: 8px;
}
.cta-text {
    color: rgba(0,0,0,0.6);
    font-size: 1.05rem;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}
.cta-actions .btn-white {
    color: var(--dark-900);
}
.cta-actions .btn-outline-white {
    border-color: rgba(0,0,0,0.3);
    color: var(--dark-900);
}
.cta-actions .btn-outline-white:hover {
    background: rgba(0,0,0,0.1);
    border-color: var(--dark-900);
}

/* ═══════════════════════════════════════════════════════════
   OTHER SERVICES
   ═══════════════════════════════════════════════════════════ */
.other-services {
    padding: var(--section-padding);
    background: var(--dark-950);
}
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.other-service-item {
    text-align: center;
    padding: 36px 20px;
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--gradient-card);
}
.other-service-item:hover {
    border-color: rgba(245,184,0,0.2);
    background: rgba(245,184,0,0.04);
    transform: translateY(-4px);
}
.icon-other {
    width: 36px;
    height: 36px;
    color: var(--gold-500);
    margin-bottom: 16px;
}
.other-service-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   COVERAGE / REVIEWS
   ═══════════════════════════════════════════════════════════ */
.coverage {
    padding: var(--section-padding);
    background: var(--dark-900);
}
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.coverage-areas-landing {
    border-radius: 0px;
    padding: 0px;
}
.coverage-areas {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.coverage-areas h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.area-tag {
    background: rgba(245,184,0,0.1);
    color: var(--gold-400);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(245,184,0,0.15);
}
.reviews-highlight {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.google-reviews-logo {
    height: 120px !important;
    margin: 0 auto 10px !important;
}
.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}
.star-filled {
    width: 22px;
    height: 22px;
    color: var(--gold-500);
    fill: var(--gold-500);
}
.reviews-text {
    color: var(--dark-100);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.reviews-text strong {
    color: var(--white);
    font-size: 1.2rem;
}
.coverage-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
    padding: var(--section-padding);
    background: var(--dark-950);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}
.contact-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.contact-card-header {
    background: linear-gradient(135deg, rgba(245,184,0,0.1) 0%, rgba(245,184,0,0.03) 100%);
    padding: 36px 36px 28px;
    text-align: center;
    border-bottom: var(--border-subtle);
}
.contact-logo {
    height: 80px;
    margin: 0 auto 16px;
}
.contact-card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.contact-card-header p {
    color: var(--dark-300);
    font-size: 0.9rem;
}
.contact-details {
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(245,184,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--dark-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    color: var(--dark-50);
    font-size: 0.92rem;
    font-weight: 500;
    word-break: break-word;
}
.contact-link:hover {
    color: var(--gold-500);
}
/* Social media icons in contact */
.contact-social-icon {
    width: 22px;
    height: 22px;
    color: var(--gold-500);
}
.contact-detail-icon-instagram {
    background: rgba(225, 48, 108, 0.12);
    color: #E1306C;
}
.contact-detail-icon-instagram .contact-social-icon {
    color: #E1306C;
}
.contact-detail-icon-facebook {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
}
.contact-detail-icon-facebook .contact-social-icon {
    color: #1877F2;
}

/* Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 44px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-100);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-600);
    background: var(--dark-800);
    color: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7691' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
}
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--dark-400);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--dark-900);
    padding: 80px 0 0;
    border-top: var(--border-subtle);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-logo {
    height: 70px;
    margin-bottom: 16px;
}
.footer-brand p {
    color: var(--dark-300);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links a,
.footer-services a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-300);
    font-size: 0.88rem;
    padding: 4px 0;
}
.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: var(--gold-500);
}
.footer-areas {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--dark-300);
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.5;
}
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: var(--border-subtle);
    color: var(--dark-200);
    transition: var(--transition);
}
.footer-social-link:hover {
    background: rgba(245,184,0,0.12);
    color: var(--gold-500);
    border-color: rgba(245,184,0,0.3);
    transform: translateY(-2px);
}
.footer-social-link svg {
    width: 18px;
    height: 18px;
}
.footer-bottom {
    border-top: var(--border-subtle);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--dark-400);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-cta);
    color: var(--dark-950);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-gold-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.floating-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245,184,0,0.35);
}
.floating-cta .icon-md {
    animation: ring 2s ease infinite;
}
@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(12deg); }
    40% { transform: rotate(-8deg); }
    50% { transform: rotate(0); }
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}
.lightbox.active {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition);
}
.lightbox-close:hover {
    color: var(--gold-500);
    transform: rotate(90deg);
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .other-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .coverage-layout {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }
    
    .top-bar { display: none; }
    
    .nav { display: none; }
    .header-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .logo-img { height: 44px; }
    
    .landing-hero-content { padding: 20px 16px 52px; }
    .hero-content { padding: 80px 16px 52px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .trust-divider { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .service-card-body { padding: 28px 24px 32px; }
    .service-card-image { height: 180px; }
    
    .why-us-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-item { padding: 24px 16px; }
    
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    
    .ba-showcase { grid-template-columns: 1fr; }
    
    /* CTA buttons stacked on mobile */
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
    }
    
    .other-services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px; }
    
    .floating-cta .floating-cta-text { display: none; }
    .floating-cta { padding: 16px; border-radius: 50%; }
    
    .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .other-services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .contact-details { padding: 24px; }
    .contact-card-header { padding: 28px 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — VIDEO + FORM SECTION
   ═══════════════════════════════════════════════════════════ */
.landing-video-form {
    padding: 80px 0;
    background: var(--dark-900);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}
.video-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark-800);
    box-shadow: var(--shadow-lg);
}
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-form-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    align-items: center;
}
.video-form-subtitle {
    font-size: 0.95rem;
    color: var(--dark-200);
    margin-bottom: 24px;
    line-height: 1.6;
    align-items: center;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — COMPACT WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-us-compact {
    padding: 48px 0;
}
.why-us-compact .why-item {
    padding: 20px 16px;
}
.why-us-compact .why-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}
.why-us-compact .why-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — OWNER PHOTO IN CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-owner-photo {
    text-align: center;
    padding: 0px 0px 0;
}
.owner-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.owner-photo:hover {
    border-color: var(--gold-500);
    box-shadow: 0 12px 40px rgba(245,184,0,0.2);
    transform: translateY(-4px);
}

/* ── LANDING PAGE — Coverage map full width ── */
.is-landing-page .coverage {
    padding: 80px 0;
}
.is-landing-page .coverage .coverage-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.is-landing-page .coverage .coverage-map iframe {
    display: block;
}

/* ── LANDING PAGE — RESPONSIVE ── */
@media (max-width: 768px) {
    /* Video + Form: stack vertically */
    .video-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .video-form-card {
        padding: 28px 20px;
    }
    .video-form-title {
        font-size: 1.9rem;
        text-align: center;
    }
    .landing-video-form {
        padding: 40px 0;
    }

    /* Why Us: 2x2 grid */
    .why-us-compact .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .why-us-compact .why-item {
        padding: 16px 12px;
    }
    .why-us-compact .why-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    .why-us-compact .why-icon .icon-lg {
        width: 22px;
        height: 22px;
    }
    .why-us-compact .why-item h4 {
        font-size: 0.85rem;
    }
    .why-us-compact {
        padding: 32px 0;
    }

    /* Owner photo */
    .owner-photo {
        max-width: 100%;
    }
    .contact-owner-photo {
        padding: 0px 0px 0;
    }

    /* Coverage map */
    .is-landing-page .coverage .coverage-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .why-us-compact .why-us-grid {
        gap: 8px;
    }
    .why-us-compact .why-item {
        padding: 14px 10px;
    }
    .why-us-compact .why-item h4 {
        font-size: 0.8rem;
    }
    .owner-photo {
        max-width: 100%;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
   LOCATION LANDING PAGES  (v1.2)
   Sections added by page-landing.php for the per-city landings:
   breadcrumb · location intro · local factors · FAQ · footer legal
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Breadcrumb ─────────────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: var(--dark-200);
}
.breadcrumb a {
    color: var(--dark-100);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--gold-500);
}
.breadcrumb span {
    color: var(--gold-400);
}
.breadcrumb .icon-xs {
    width: 14px;
    height: 14px;
    color: var(--dark-300);
}

/* ─── Local content block ────────────────────────────────────────────── */
.location-intro {
    padding: var(--section-padding);
    background: var(--dark-900);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}
.location-intro .section-header {
    text-align: center;
}
.location-intro-text {
    max-width: 860px;
    margin: 0 auto 48px;
}
.location-intro-text p {
    color: var(--dark-100);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}
.location-intro-text p:last-child {
    margin-bottom: 0;
}
.location-neighborhoods {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
}
.location-neighborhoods-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.location-neighborhoods .area-tags {
    margin-bottom: 0;
}

/* ─── Local conditions grid ──────────────────────────────────────────── */
.local-factors {
    padding: var(--section-padding);
    background: var(--dark-950);
}
.local-factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.local-factor {
    padding: 32px 28px;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.local-factor:hover {
    border-color: rgba(245,184,0,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.local-factor-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(245,184,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-500);
}
.local-factor-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}
.local-factor-text {
    color: var(--dark-100);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ─── FAQ (native <details>, no JS) ──────────────────────────────────── */
.faq-local {
    padding: var(--section-padding);
    background: var(--dark-950);
    border-top: var(--border-subtle);
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] {
    border-color: rgba(245,184,0,0.3);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    list-style: none;
    transition: var(--transition);
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question:hover {
    color: var(--gold-400);
}
.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    transition: var(--transition);
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 26px 24px;
}
.faq-answer p {
    color: var(--dark-100);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* ─── Footer legal line ──────────────────────────────────────────────── */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.85rem;
}
.footer-legal a {
    color: var(--dark-200);
    text-decoration: none;
    transition: var(--transition);
}
.footer-legal a:hover {
    color: var(--gold-500);
}
.footer-legal span {
    color: var(--dark-400);
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .local-factors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .location-intro-text p { font-size: 1rem; line-height: 1.8; }
    .location-neighborhoods { padding: 24px 20px; }
    .local-factors-grid { grid-template-columns: 1fr; gap: 16px; }
    .local-factor { padding: 26px 22px; }
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer { padding: 0 20px 20px; }
    .breadcrumb { margin-bottom: 24px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .location-neighborhoods-title { font-size: 1rem; }
    .area-tag { font-size: 0.8rem; padding: 7px 14px; }
    .faq-question { gap: 12px; }
}

/* ─── 404 page ───────────────────────────────────────────────────────── */
.error-404 {
    min-height: 60vh;
    padding: 100px 0;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    text-align: center;
}
.error-404 .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}
.error-404-text {
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--dark-100);
    font-size: 1.05rem;
    line-height: 1.8;
}
.error-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.error-404-links {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
}
.error-404-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.error-404-links .area-tags {
    justify-content: center;
    margin-bottom: 0;
}
.error-404-links a.area-tag {
    text-decoration: none;
    transition: var(--transition);
}
.error-404-links a.area-tag:hover {
    background: rgba(245,184,0,0.2);
    border-color: rgba(245,184,0,0.4);
    color: var(--gold-300);
}

@media (max-width: 768px) {
    .error-404 { padding: 64px 0; }
    .error-404-actions { flex-direction: column; align-items: center; }
    .error-404-actions .btn { width: 100%; max-width: 320px; }
    .error-404-links { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING HERO v2 — SPLIT / FORM-FIRST                        (2026-08-14)
   ───────────────────────────────────────────────────────────────────────────
   Scoped to .hero-split, so the legacy hero on the other landings is untouched.
   Must stay at the END of the file: these rules deliberately override the
   .hero / .landing-hero-content / .video-wrapper blocks defined further up.

   Two problems this fixes:
   a) The hero video used .video-wrapper's `aspect-ratio: 3/4`. Inside the
      860px-wide .landing-hero-content that resolves to 1147px tall — taller
      than any desktop viewport, so it was cut off. Here the frame is sized by
      HEIGHT (vh-capped) and the source is letterboxed into it.
   b) The quote form sat four sections below the fold. It now lives in the
      right column of the hero.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Shell ──────────────────────────────────────────────────────────────── */
.hero-split {
    /* The legacy hero forces min-height:100vh. With a form in the fold that
       only adds dead air above the H1 and pushes the submit button under it. */
    min-height: 0;
    align-items: flex-start;
}
.hero-split .landing-hero-content {
    max-width: var(--container-width);
    width: 100%;
    text-align: left;
    padding: 44px 24px 56px;
    /* margin-block:auto instead of align-items:center — when the content is
       taller than the flex line, `center` clips the TOP (unreachable), while
       auto margins collapse to 0 and the block stays anchored. */
    margin-block: auto;
}
/* A form-first hero needs no "scroll down" nudge: it competes with the CTA
   and overlaps the form card on short screens. */
.hero-split .hero-scroll-indicator { display: none; }

/* ── Grid ───────────────────────────────────────────────────────────────── */
.landing-hero-grid {
    /* Single source of truth for the video size. Width derives from height at
       the source ratio, so the frame matches the file and nothing is cropped.
       video-landing-v2.mp4 is 864x1080 -> 4:5 (the old one was 9:16).
       Doubled on 2026-08-14: it read too small next to the form. */
    --hero-video-h: clamp(400px, 58vh, 640px);
    --hero-video-w: calc(var(--hero-video-h) * 4 / 5);

    display: grid;
    grid-template-columns: var(--hero-video-w) minmax(0, 1fr) clamp(360px, 29%, 420px);
    grid-template-areas:
        "lead   lead     form"
        "sub    sub      form"
        "media  actions  form";
    column-gap: 32px;
    row-gap: 20px;
    align-items: start;
}

.hero-lead                  { grid-area: lead; }
.hero-split .hero-subtitle  { grid-area: sub; }
.hero-media                 { grid-area: media; min-width: 0; }
.hero-split .hero-actions   { grid-area: actions; align-self: center; }
.hero-form-panel            { grid-area: form; align-self: start; }

/* ── Headline ───────────────────────────────────────────────────────────── */
.hero-split .hero-title {
    font-size: clamp(2.1rem, 3.2vw, 3.1rem);
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 18px;
}
.hero-split .hero-subtitle {
    margin: 0;
    max-width: 62ch;
    font-size: clamp(0.94rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}
.hero-split .hero-trust {
    justify-content: flex-start;
    gap: 18px;
    margin: 0;
}
.hero-split .trust-item { font-size: 0.85rem; color: var(--dark-100); }

/* ── Video ──────────────────────────────────────────────────────────────── */
.hero-split .video-wrapper.hero-video-frame {
    aspect-ratio: auto;                  /* cancels the inherited 3/4 */
    width: var(--hero-video-w);
    height: var(--hero-video-h);
    max-height: calc(100vh - 190px);     /* hard ceiling: never past the fold */
    position: relative;
    isolation: isolate;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #05070A;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245, 184, 0, 0.18);
}
/* Backdrop for the letterbox. The frame now matches the source ratio (4:5), so
   normally nothing shows through — it only covers the case where max-height
   clamps the frame and leaves a sliver above and below. */
.hero-split .hero-video-frame::before {
    content: '';
    position: absolute;
    inset: -12%;
    z-index: 0;
    background: url("Images/new-images/MILLANS-Before-After-1.jpg") center / cover no-repeat;
    filter: blur(28px) brightness(0.32) saturate(0.7);
}
.hero-video-frame video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* CONTAIN, not cover: when max-height clamps the frame its ratio stops
       matching the file's 4:5, and cover would crop Randy's face — which is the
       whole point of the video. */
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ── Sound toggle — only revealed by JS if the file has an audio track ──── */
.hero-sound-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px auto 0;
    padding: 7px 14px;
    border: 1px solid rgba(245, 184, 0, 0.45);
    border-radius: var(--radius-full);
    background: rgba(10, 12, 16, 0.78);
    color: var(--gold-400);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}
.hero-sound-btn:hover,
.hero-sound-btn:focus-visible {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--dark-950);
}
.hero-sound-btn.is-on { color: var(--white); border-color: var(--dark-600); }
.hero-sound-btn.is-hidden,
.hero-sound-btn[hidden] { display: none; }

/* ── Actions, beside the video on desktop ───────────────────────────────── */
.hero-split .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    max-width: 340px;
    margin-bottom: 0;
}
.hero-split .hero-actions .btn { width: 100%; }
.hero-media-note {
    margin: 10px 0 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--dark-200);
    text-align: center;
}
.hero-media-note strong { color: var(--white); font-weight: 700; }

/* ── Form panel ─────────────────────────────────────────────────────────── */
.hero-form-panel {
    position: relative;
    padding: 26px 24px 20px;
    border: 1px solid rgba(245, 184, 0, 0.28);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(15, 18, 24, 0.95) 0%, rgba(10, 12, 16, 0.97) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), var(--shadow-gold);
    /* the header is sticky — without this the anchor jump hides the title */
    scroll-margin-top: 110px;
}
.hero-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: var(--gradient-gold);
}
.hero-form-panel .video-form-title {
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    margin-bottom: 4px;
    text-align: left;
}
.hero-form-panel .video-form-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
    color: var(--dark-100);
}
.hero-form-callback {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: var(--dark-200);
}
.hero-form-callback a {
    color: var(--gold-400);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 184, 0, 0.35);
}
.hero-form-callback a:hover { color: var(--gold-300); }
.hero-form-embed { width: 100%; }

/* The badge, relocated: a reassurance seal at the point of friction (under
   the submit), not a label sitting in the H1 zone. */
.hero-badge-seal {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 14px 0 0;
    padding: 7px 14px;
    font-size: 0.75rem;
    background: rgba(245, 184, 0, 0.08);
    color: var(--gold-300);
    text-align: center;
    line-height: 1.35;
}

/* ── Elementor form (id=40), styled from the outside ────────────────────── */
.hero-form-panel .elementor-field-group {
    margin-bottom: 10px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.hero-form-panel .elementor-field-group > label {
    margin-bottom: 4px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--dark-100) !important;
}
.hero-form-panel .elementor-field-textual,
.hero-form-panel input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.hero-form-panel select,
.hero-form-panel textarea {
    width: 100% !important;
    min-height: 44px !important;
    padding: 11px 14px !important;
    font-family: var(--font-body) !important;
    font-size: 0.93rem !important;
    line-height: 1.3 !important;
    color: var(--white) !important;
    background-color: rgba(22, 26, 35, 0.92) !important;
    border: 1px solid var(--dark-600) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    transition: var(--transition);
}
.hero-form-panel .elementor-field-textual:focus,
.hero-form-panel input:focus,
.hero-form-panel select:focus,
.hero-form-panel textarea:focus {
    outline: none !important;
    border-color: var(--gold-500) !important;
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.14) !important;
}
.hero-form-panel input::placeholder,
.hero-form-panel textarea::placeholder { color: var(--dark-300) !important; opacity: 1; }
.hero-form-panel textarea {
    min-height: 76px !important;
    max-height: 118px;
    resize: vertical;
}
.hero-form-panel .elementor-button,
.hero-form-panel button[type="submit"],
.hero-form-panel input[type="submit"] {
    width: 100% !important;
    justify-content: center;
    padding: 14px 24px !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--dark-950) !important;
    background: var(--gradient-cta) !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: var(--transition);
}
.hero-form-panel .elementor-button:hover,
.hero-form-panel button[type="submit"]:hover,
.hero-form-panel input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    filter: brightness(1.06);
}
.hero-form-panel .elementor-message,
.hero-form-panel .elementor-field-option label { color: var(--dark-100) !important; }

/* ═══ RESPONSIVE ═════════════════════════════════════════════════════════ */

/* Short desktops — 1440x900, and laptops at 1366x768. Shrink the video and
   the padding so the submit button still lands above the fold. */
@media (min-width: 1025px) and (max-height: 900px) {
    .landing-hero-grid { --hero-video-h: clamp(340px, 52vh, 470px); row-gap: 14px; }
    .hero-split .landing-hero-content { padding: 24px 24px 30px; }
    .hero-split .hero-title { font-size: clamp(1.9rem, 2.7vw, 2.5rem); margin-bottom: 12px; }
    .hero-form-panel { padding: 22px 20px 16px; }
    .hero-split .hero-subtitle { font-size: 0.95rem; line-height: 1.55; }
}

/* Narrow desktop / large tablet */
@media (max-width: 1200px) {
    .landing-hero-grid {
        grid-template-columns: var(--hero-video-w) minmax(0, 1fr) clamp(330px, 34%, 400px);
        column-gap: 24px;
    }
    .hero-split .hero-actions { max-width: none; }
}

/* Tablet and down: single column, form right under the video */
@media (max-width: 1024px) {
    .landing-hero-grid {
        --hero-video-h: clamp(360px, 50vh, 480px);
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "lead"
            "media"
            "actions"
            "form"
            "sub";
        row-gap: 20px;
        justify-items: center;
    }
    .hero-lead,
    .hero-split .hero-subtitle,
    .hero-split .hero-actions,
    .hero-form-panel {
        width: 100%;
        max-width: 560px;
    }
    .hero-lead, .hero-split .hero-subtitle { text-align: center; }
    .hero-split .hero-trust { justify-content: center; }
    .hero-split .hero-subtitle { margin-inline: auto; }
    .hero-split .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .hero-split .hero-actions .btn { width: auto; flex: 1 1 220px; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-split .landing-hero-content { padding: 24px 16px 44px; }
    .landing-hero-grid { row-gap: 16px; }

    .hero-split .hero-title { font-size: clamp(1.8rem, 7.4vw, 2.3rem); margin-bottom: 14px; }
    .hero-split .hero-subtitle { font-size: 0.95rem; line-height: 1.6; }

    /* Keep the trust row inline — the legacy 768 breakpoint stacks it into a
       column, which alone pushed the form most of a screen further down. */
    .hero-split .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }
    .hero-split .trust-item { font-size: 0.78rem; }
    .hero-split .trust-divider { display: block; height: 14px; }

    /* On mobile the frame is sized by WIDTH and capped by height. The WIDTH is
       what actually binds here: at 4:5, a 340px-wide frame is 425px tall, well
       under the 56vh ceiling. Raising only max-height would change nothing —
       to make the video bigger on a phone you have to raise the width. */
    .hero-split .video-wrapper.hero-video-frame {
        width: min(78vw, 340px);
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 56vh;
    }

    .hero-split .hero-actions { flex-direction: column; gap: 10px; }
    .hero-split .hero-actions .btn { width: 100%; max-width: 380px; margin-inline: auto; flex: none; }

    .hero-form-panel { padding: 22px 18px 18px; }
    .hero-form-panel .video-form-title { font-size: 1.5rem; text-align: center; }
    .hero-form-panel .video-form-subtitle,
    .hero-form-callback { text-align: center; }
    /* 16px is the threshold below which iOS Safari zooms the page on focus,
       which throws the visitor out of the layout mid-form. */
    .hero-form-panel .elementor-field-textual,
    .hero-form-panel input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
    .hero-form-panel select,
    .hero-form-panel textarea {
        font-size: 16px !important;
        min-height: 48px !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-split .landing-hero-content { padding: 20px 14px 40px; }
    .hero-split .hero-title { font-size: clamp(1.65rem, 8vw, 2rem); }
    /* 61vh as requested. The binding constraint is still the width: 300px at
       4:5 is 375px tall, and 61vh only kicks in on very short screens. */
    .hero-split .video-wrapper.hero-video-frame { width: min(84vw, 300px); max-height: 61vh; }
    .hero-form-panel { padding: 20px 16px 16px; border-radius: var(--radius-lg); }
    .hero-form-panel::before { left: 16px; right: 16px; }
    .hero-badge-seal { font-size: 0.7rem; padding: 6px 10px; }
    .hero-split .trust-divider { display: none; }
}

/* Very short viewports (landscape phones, small laptop windows) */
@media (max-height: 700px) and (min-width: 1025px) {
    .landing-hero-grid { --hero-video-h: clamp(280px, 46vh, 360px); }
    .hero-split .landing-hero-content { padding: 18px 24px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-split .animate-in { animation-duration: 0.01ms; opacity: 1; transform: none; }
}

/* ── Privacy notice under each form (2026-08-27) ─────────────────────────────
   Google Ads expects the privacy policy to be reachable from the point where
   personal data is captured, not just from the footer. Deliberately quiet: it
   is reassurance, not a call to action, so it must not compete with the submit
   button right above it. */
.hero-form-privacy {
    margin: 12px 0 0;
    font-size: 0.74rem;
    line-height: 1.5;
    text-align: center;
    color: var(--dark-300);
}
.hero-form-privacy a {
    color: var(--dark-100);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}
.hero-form-privacy a:hover { color: var(--gold-400); }

.contact-form-wrapper .hero-form-privacy { margin-top: 16px; }
