/* =============================================
   GELDART'S ROOFING & RENO'S — style.css
   Premium Dark Redesign
   ============================================= */

   :root {
    --primary:       #1C2B4A;
    --primary-dark:  #131E34;
    --primary-light: #243460;
    --accent:        #C9973A;
    --accent-dark:   #A87C2E;
    --accent-light:  #DEB96A;
    --dark:          #0D1117;
    --dark-2:        #151B25;
    --light:         #F4F6F9;
    --white:         #FFFFFF;
    --off-white:     #F8F7F4;
    --text:          #2A2A2A;
    --text-light:    #6B7280;
    --text-muted:    #9CA3AF;
    --border:        #E5E7EB;
    --border-dark:   rgba(255,255,255,0.08);
  
    --font-display:  'Bebas Neue', sans-serif;
    --font-body:     'DM Sans', sans-serif;
  
    --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.22);
  
    --radius:     6px;
    --radius-lg:  12px;
    --transition: 0.25s ease;
  }
  
  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; transition: color var(--transition); }
  ul { list-style: none; }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  
  .hidden { display: none !important; }
  .center { text-align: center; }
  .gold   { color: var(--accent); }
  
  /* ===== TYPOGRAPHY ===== */
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  
  h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
  h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.5rem; }
  
  .section-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: block;
  }
  
  .section-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 300;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
  }
  
  .btn-gold {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
  }
  .btn-gold:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,151,58,0.3);
  }
  
  .btn-navy {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  .btn-navy:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
  }
  
  /* ===== EMERGENCY BANNER ===== */
  .emergency-banner {
    display: block;
    background: #7F1D1D;
    padding: 10px 0;
    text-decoration: none;
    transition: background var(--transition);
  }
  
  .emergency-banner:hover { background: #991B1B; }
  
  .emergency-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .emergency-dot {
    width: 8px;
    height: 8px;
    background: #FCA5A5;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
  }
  
  .emergency-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
  }
  
  .emergency-text strong { color: var(--white); font-weight: 700; }
  
  .emergency-arrow {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  
  .emergency-banner:hover .emergency-arrow {
    transform: translateX(4px);
    color: var(--white);
  }
  
  @media (max-width: 768px) {
    .emergency-text { font-size: 0.75rem; }
  }
  
  /* Facebook Strip */
  .facebook-strip {
    display: block;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    text-decoration: none;
    transition: background var(--transition);
  }
  
  .facebook-strip:hover {
    background: var(--primary-light);
  }
  
  .facebook-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .facebook-strip-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  
  .facebook-strip-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
  }
  
  .facebook-strip-text strong {
    color: var(--white);
    font-weight: 600;
  }
  
  .facebook-strip-arrow {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    transition: transform var(--transition);
    flex-shrink: 0;
  }
  
  .facebook-strip:hover .facebook-strip-arrow {
    transform: translateX(5px);
    color: var(--white);
  }
  
  @media (max-width: 768px) {
    .facebook-strip-text { font-size: 0.82rem; }
  }
  
  /* Footer Facebook link */
  .footer-facebook {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #5899e2 !important;
    transition: color var(--transition);
  }
  .footer-facebook:hover { color: #1877F2 !important; }
  
  /* ===== NAVBAR ===== */
  .navbar {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--transition);
  }
  .navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-right: auto;
  }
  
  .nav-logo-img {
    height: 52px;
    flex-shrink: 0;
    width: auto;
    display: block;
  }
  
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
  }
  
  .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.06em;
    line-height: 1;
  }
  
  .logo-sub {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
  }
  
  /* Nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }
  
  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: all var(--transition);
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white);
    border-bottom-color: var(--accent);
  }
  
  /* Phone CTA button */
  .nav-links .nav-cta {
    background: transparent;
    color: var(--accent);
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-links .nav-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-1px);
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  
  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(13,17,23,0.92) 0%, rgba(28,43,74,0.82) 55%, rgba(13,17,23,0.70) 100%),
      url('../images/roof-complete.jpg') center/cover no-repeat;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,17,23,0.5) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 32px 120px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-left {
    max-width: 680px;
  }
  
  /* Hero stat block */
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.7s ease 0.7s both;
    padding-left: 3rem;
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.04em;
    display: block;
  }
  
  .hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-top: 4px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,151,58,0.1);
    border: 1px solid rgba(201,151,58,0.25);
    color: var(--accent-light);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    animation: fadeInDown 0.6s ease both;
    text-decoration: none;
    transition: all var(--transition);
  }
  .hero-badge:hover {
    background: rgba(201,151,58,0.2);
    border-color: rgba(201,151,58,0.5);
    color: var(--white);
  }
  
  .hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .hero-title {
    color: var(--white);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.7s ease 0.15s both;
    line-height: 1.05;
  }
  
  .hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.3s both;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.7s ease 0.45s both;
  }
  
  .hero-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.6s both;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  
  .trust-item {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .trust-item::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
  }
  
  /* ===== WHY SECTION ===== */
  .why-section {
    padding: 110px 0;
    background: var(--white);
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  
  .why-text h2 { margin-bottom: 1.5rem; }
  .why-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-weight: 300;
    font-size: 0.975rem;
  }
  .why-text .btn { margin-top: 1.2rem; }
  
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .why-card {
    background: var(--white);
    padding: 2rem;
    transition: background var(--transition);
  }
  .why-card:hover { background: var(--off-white); }
  
  .why-icon {
    width: 32px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 1.2rem;
  }
  
  .why-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
  }
  
  .why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
  }
  
  /* ===== SERVICES SECTION ===== */
  .services-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
  }
  
  .services-section .section-label { color: rgba(201,151,58,0.6); }
  .services-section h2 { color: var(--white); }
  .services-section .section-intro { color: rgba(255,255,255,0.35); }
  
  .services-tabs {
    display: flex;
    justify-content: center;
    margin: 1rem auto 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 360px;
  }
  
  .tab-btn {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
  }
  
  .tab-btn.active {
    background: var(--accent);
    color: var(--dark);
  }
  
  .tab-btn:hover:not(.active) {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
  }
  
  .service-card {
    background: var(--dark-2);
    padding: 2rem 1.8rem;
    transition: background var(--transition);
    position: relative;
  }
  
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
  }
  
  .service-card:hover { background: #1A2235; }
  .service-card:hover::after { transform: scaleX(1); }
  
  .service-icon {
    width: 24px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 1.2rem;
    opacity: 0.6;
  }
  
  .service-card h3 {
    color: var(--white);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
  
  .service-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-weight: 300;
  }
  
  .services-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-section {
    padding: 120px 0 100px;
    background: var(--dark-2);
    position: relative;
  }
  
  .process-section::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    pointer-events: none;
  }
  
  .process-section .section-label { color: rgba(201,151,58,0.6); }
  .process-section h2 { color: var(--white); }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 4rem;
    position: relative;
  }
  
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(201,151,58,0.15);
  }
  
  .process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .step-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--dark-2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(201,151,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .process-step h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .process-step p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
  }
  
  .process-arrow { display: none; }
  
  /* ===== TESTIMONIALS ===== */
  .testimonials-section {
    padding: 110px 0;
    background: var(--white);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
  }
  
  .testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.08;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
  }
  
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .stars {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
  }
  
  .testimonial-card p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
    font-weight: 300;
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  
  .reviewer {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .review-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  
  /* ===== SERVICE AREA ===== */
  .area-section {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
  }
  
  .area-section::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    pointer-events: none;
  }
  
  .area-section::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--dark);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    pointer-events: none;
  }
  
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  
  .area-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
  }
  
  .booking-section {
    padding: 60px 0;
    background: var(--primary);
    text-align: center;
  }
  
  .booking-section .booking-card {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .area-section .section-label { color: rgba(201,151,58,0.6); }
  .area-text h2 { color: var(--white); margin-bottom: 1rem; }
  .area-text p {
    color: rgba(255,255,255,0.45);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 300;
  }
  
  .area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
  }
  
  .area-list li {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .area-list li::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
  }
  
  /* Booking Card */
  .booking-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.04);
  }
  
  .booking-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201,151,58,0.25);
  }
  
  .booking-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
  }
  
  .booking-card p {
    color: rgba(255,255,255,0.35);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
  }
  
  .booking-divider {
    text-align: center;
    color: rgba(255,255,255,0.18);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 1.5rem 0;
    position: relative;
  }
  
  .booking-divider::before,
  .booking-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }
  .booking-divider::before { left: 0; }
  .booking-divider::after  { right: 0; }
  
  .booking-phone {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.8rem;
  }
  .booking-phone:hover { color: var(--accent-light); }
  
  .booking-email a {
    color: rgba(255,255,255,0.25);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    transition: color var(--transition);
  }
  .booking-email a:hover { color: rgba(255,255,255,0.5); }
  
  /* ===== FOOTER ===== */
  .footer {
    background: var(--dark);
    color: rgba(255,255,255,0.35);
    padding: 80px 0 0;
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
  }
  
  .footer-brand .logo-text {
    color: var(--white);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-brand p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.25); font-weight: 300; }
  
  .footer h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.65;
    margin-bottom: 1.4rem;
  }
  
  .footer-links, .footer-services, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
  .footer-links a:hover { color: var(--accent); }
  .footer-services span { font-size: 0.82rem; color: rgba(255,255,255,0.25); font-weight: 300; }
  .footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
  .footer-contact a:hover { color: var(--accent); }
  .footer-contact p { font-size: 0.85rem; }
  .footer-hours { color: rgba(255,255,255,0.18) !important; font-size: 0.75rem !important; margin-top: 0.4rem; }
  
  .footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.1em;
  }
  
  /* ===== MOBILE STICKY BAR ===== */
  .mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
  }
  
  .sticky-call, .sticky-quote {
    padding: 18px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all var(--transition);
  }
  
  .sticky-call { background: var(--primary); color: var(--white); }
  .sticky-call:hover { background: var(--primary-dark); }
  .sticky-quote { background: var(--accent); color: var(--dark); }
  .sticky-quote:hover { background: var(--accent-dark); }
  
  /* ===== PAGE HERO (inner pages) ===== */
  .page-hero {
    background: var(--dark);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    pointer-events: none;
  }
  
  .page-hero .section-label { color: rgba(201,151,58,0.6); }
  .page-hero h1 { color: var(--white); margin-bottom: 1rem; }
  .page-hero p {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .area-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 768px) {
    .container { padding: 0 20px; }
  
    .nav-links {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--dark);
      flex-direction: column;
      padding: 1.5rem 20px;
      gap: 1rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
  
    .hero { min-height: 85vh; }
    .hero-content {
      grid-template-columns: 1fr;
      padding: 60px 20px 100px;
    }
    .hero-stats { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-trust { gap: 1rem; }
    .why-cards { grid-template-columns: 1fr; }
    .services-tabs { max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.4rem; }
    .mobile-sticky-bar { display: grid; }
    .footer { padding-bottom: 70px; }
  }
  
  @media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
  }