/* ============================================================
   HEADBRID — Main Stylesheet
   Premium Tech-Agency Canvas Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&family=Figtree:wght@300;400;500;600&display=swap');

/* ---- Updated Variables ---- */
:root {
  --black:      #060a0f; /* Deep Premium Navy/Black Canvas */
  --white:      #ffffff;
  --off-white:  #f5f5f7;
  --mid-gray:   #86868b;
  --dark-gray:  #141923;
  --gold:       #d4a359; /* Upgraded Premium Warm Gold Accent */
  --gold-light: #e8c26a;
  --border:     #d2d2d7;

  --font-display: 'Plus Jakarta Sans', sans-serif; /* Upgraded Headline Font Family */
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --transition: all .35s cubic-bezier(.165, .84, .44, 1);
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- Navigation Edits ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 60px;
  background: rgba(6, 10, 15, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 10, 15, 0.95);
  border-bottom-color: rgba(212, 163, 89, 0.15);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-right: auto;
}
/* Make logo white */
.nav__logo {
  color: #FFFFFF !important; /* White color */
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Optional: Keep gold on hover if you want */
.nav__logo:hover {
  color: var(--gold, #D4AF37) !important;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 32px;
}

.nav__links a {
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { transform: scaleX(1); }

.btn-nav {
  background: rgba(212, 163, 89, 0.05);
  color: var(--white);
  border: 1px solid rgba(212, 163, 89, 0.4);
  font-family: var(--font-display);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--gold);
  color: #060a0f;
  box-shadow: 0 0 20px rgba(212, 163, 89, 0.4);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px 40px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 16px;
}
.nav__mobile a:hover { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,.3);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- Upgraded Hero Section ---- */
.hero {
  min-height: 100vh;
  background-color: var(--black);
  /* Compounded Radial Lighting Gradients + Modern Engineering Tech Grids */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 163, 89, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 163, 89, 0.05) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating 3D Isometric Visual Component Injection */
.hero__visual {
  margin-bottom: 25px;
  opacity: 0;
  animation: floatGraphic 6s ease-in-out infinite, fadeUp .7s ease .1s forwards;
}
.hero__visual img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.hero__label {
  display: inline-block;
  background: rgba(212, 163, 89, 0.05);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 163, 89, 0.25);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .6s ease .25s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s ease .4s forwards;
}

/* Premium Gold Text Gradient Configuration */
.hero__title span {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .7s ease .55s forwards;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp .7s ease .7s forwards;
}

/* Upgraded Interactive Buttons */
.hero__ctas .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
}

/* Solid Premium Gold Pill Button */
.hero__ctas .btn-hero-gold {
  background: linear-gradient(135deg, #e5c185 0%, #c49246 100%);
  color: #04070a;
  border: none;
  box-shadow: 0 4px 20px rgba(212, 163, 89, 0.25);
}

.hero__ctas .btn-hero-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 163, 89, 0.45);
  filter: brightness(1.1);
}

/* Crisp White/Transparent Outline Button */
.hero__ctas .btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

<div class="hero__ctas">
            <a href="/free-audit.php" class="btn btn-hero-gold">Free Marketing Audit</a>
            <a href="/services.php" class="btn btn-hero-outline">Explore Services</a>
        </div>
}

/* ---- Section Base ---- */
section { padding: 100px 40px; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--mid-gray);
  line-height: 1.65;
  max-width: 520px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--dark-gray);
  padding: 48px 40px;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.stat__number span { color: var(--gold); }
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  background: var(--dark-gray);
}
.service-card:hover .service-card__title,
.service-card:hover .service-card__desc,
.service-card:hover .service-card__icon {
  color: var(--white);
}

.service-card__icon {
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: block;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--transition);
}
.service-card__desc {
  font-size: 15px;
  color: var(--mid-gray);
  
  line-height: 1.65;
  transition: var(--transition);
}

/* ---- Why section ---- */
.why-section {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card__desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ---- Industries ---- */
.industries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pill {
  padding: 10px 20px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pill:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


/* ---- Forms ---- */
.form-section {
  background: var(--off-white);
  width: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll */
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 100%;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.form-header {
  margin-bottom: 28px;
}

.form-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 8px;
  word-break: break-word;
}

.form-header p {
  color: var(--mid-gray);
  font-size: 15px;
  word-break: break-word;
}

/* CRITICAL: Force single column on all screens */
.form-grid {
  display: grid;
  grid-template-columns: 1fr !important; /* Force single column */
  gap: 16px;
}

.form-grid .full { 
  grid-column: 1 / -1; 
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 16px; /* Prevents zoom on iOS */
  color: var(--dark-gray);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}

/* Fix for side-by-side content (email + location columns) */
.form-row-two-col {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  gap: 16px;
  width: 100%;
}

.form-row-two-col > * {
  flex: 1;
  width: 100%;
}

/* Contact info sidebar (email, location, response time) */
.contact-info-sidebar {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Responsive - MOBILE FIRST */
@media (max-width: 768px) {
  .form-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-header p {
    font-size: 14px;
  }

  /* Force everything to stack vertically */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .form-submit-area {
    margin-top: 24px;
  }

  /* Fix any floating elements */
  .form-card > div {
    width: 100%;
    overflow-x: hidden;
  }

  /* Ensure all text wraps */
  p, span, label, h1, h2, h3, h4 {
    word-break: break-word;
    white-space: normal;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .form-card {
    padding: 16px;
  }

  .form-header h2 {
    font-size: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }

  .form-group label {
    font-size: 13px;
  }
}
/* Mobile-first form fixes - ADD THIS TO YOUR CSS FILE */

/* Prevent horizontal scroll on all pages */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Force all containers to respect viewport width */
.container, .form-card, .contact-section, section {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Critical form fix for mobile */
@media (max-width: 768px) {
    /* Force any two-column layouts to stack */
    .form-row, 
    .two-columns, 
    .contact-two-col,
    [class*="grid-2"],
    [class*="two-col"] {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        display: block !important;
    }
    
    /* Fix form cards */
    .form-card,
    .contact-form-wrapper,
    .audit-form {
        padding: 20px !important;
        margin: 0 12px !important;
        width: calc(100% - 24px) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix all inputs */
    input, select, textarea, button {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Fix form groups */
    .form-group, 
    .input-group,
    .form-field {
        display: block !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }
    
    /* Fix any inline or flex content */
    .form-grid,
    .form-row {
        display: block !important;
    }
    
    /* Side contact info (email, location, response time) */
    .contact-sidebar,
    .contact-info,
    .form-sidebar {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(0,0,0,0.1);
        width: 100%;
    }
}
/* ============================================ */
/* CONTACT PAGE STYLES - Mobile Optimized */
/* ============================================ */

/* Contact page two-column layout */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Contact info styles */
.contact-info-col {
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
}

.contact-value a {
  color: var(--dark-gray);
  text-decoration: none;
}

.quick-start-box {
  margin-top: 40px;
  padding: 28px;
  background: var(--dark-gray);
  border-radius: var(--radius-md);
  text-align: center;
}

.quick-start-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.quick-start-text {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form message styles */
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--dark-gray);
}

.form-message.error {
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.2);
  color: #dc2626;
}

/* Spinner animation */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================ */
/* MOBILE RESPONSIVE BREAKPOINTS */
/* ============================================ */

/* Tablet and mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Stack columns vertically */
  .contact-two-col {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  /* Order: contact info first, form second */
  .contact-info-col {
    order: 1;
  }
  
  .contact-form-col {
    order: 2;
  }
  
  /* Reduce form card padding */
  .form-card {
    padding: 28px !important;
  }
  
  /* Force form grid to single column */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Make all inputs full width and prevent iOS zoom */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: 12px 14px !important;
  }
  
  /* Reduce heading sizes */
  .contact-info-col h2 {
    font-size: 28px !important;
  }
  
  .page-hero h1 {
    font-size: 32px !important;
  }
  
  .page-hero p {
    font-size: 14px !important;
  }
  
  /* Container padding for breathing room */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Quick start box adjustments */
  .quick-start-box {
    margin-top: 32px;
    padding: 24px;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .form-card {
    padding: 20px !important;
  }
  
  .contact-info-col h2 {
    font-size: 24px !important;
  }
  
  .form-header h2 {
    font-size: 22px !important;
  }
  
  .form-header p {
    font-size: 13px !important;
  }
  
  .contact-detail-item {
    gap: 12px !important;
  }
  
  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .contact-value {
    font-size: 14px;
  }
  
  .quick-start-box {
    padding: 20px;
  }
  
  .btn-gold, 
  .btn-primary {
    font-size: 15px !important;
    padding: 12px !important;
  }
}

/* Ensure no horizontal scroll */
body {
  overflow-x: hidden;
  width: 100%;
}

/* Fix for any overflowing elements */
*,
*:before,
*:after {
  box-sizing: border-box;
}
/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 80px) 40px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,.55);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- About page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 16px; }
.about-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.framework-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.framework-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.framework-step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212,168,67,.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.framework-step__content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.framework-step__content p  { font-size: 14px; color: var(--mid-gray); line-height: 1.5; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  height: 200px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.blog-card__body { padding: 28px; }
.blog-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-card__meta {
  font-size: 12px;
  color: var(--mid-gray);
  display: flex;
  gap: 12px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--black);
  padding: 100px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-banner p {
  color: rgba(255,255,255,.55);
  font-size: 18px;
  margin-bottom: 40px;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-gray);
  color: rgba(255,255,255,.7);
  padding: 64px 40px 40px;
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__about {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
}
.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: var(--gold); }

/* ---- Chatbot ---- */
.chatbot-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 22px;
}
.chatbot-trigger:hover {
  transform: scale(1.08);
  background: var(--dark-gray);
}
.chatbot-trigger .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.chatbot-window {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 499;
  width: 380px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: var(--transition);
}
.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: var(--black);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.chatbot-header__info h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.chatbot-header__info p {
  color: rgba(255,255,255,.5);
  font-size: 12px;
}
.chatbot-header__close {
  margin-left: auto;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: var(--transition);
}
.chatbot-header__close:hover { color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: fadeUp .2s ease;
}
.chat-msg.assistant { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }

.chat-msg__bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}
.chat-msg.assistant .chat-msg__bubble {
  background: var(--off-white);
  border-radius: 4px 16px 16px 16px;
}
.chat-msg.user .chat-msg__bubble {
  background: var(--black);
  color: var(--white);
  border-radius: 16px 4px 16px 16px;
}

.chatbot-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chatbot-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  resize: none;
  max-height: 80px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.chatbot-input:focus { border-color: var(--black); }
.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: var(--transition);
}
.chatbot-send:hover { background: var(--gold); color: var(--black); }
.chatbot-send:disabled { opacity: .4; cursor: not-allowed; }

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: 4px 16px 16px 16px;
  align-self: flex-start;
  width: fit-content;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mid-gray);
  animation: bounce .8s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: .9; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- Loading spinner ---- */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
.spinner.dark {
  border: 2px solid rgba(0,0,0,.15);
  border-top-color: var(--black);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Score display ---- */
.score-display {
  text-align: center;
  padding: 40px;
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  display: none;
}
.score-display__number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.score-display__label {
  font-size: 16px;
  color: var(--gold);
  margin-top: 8px;
}
.score-display__sub {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-top: 8px;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .footer__top   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-height: 60px; }
  section { padding: 64px 24px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .btn-nav  { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: calc(var(--nav-height) + 48px) 24px 64px; }
  .hero__title { letter-spacing: -1.5px; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; }
  .footer__top { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 24px 48px; }
  .stats-bar { padding: 40px 24px; }
  .cta-banner { padding: 72px 24px; }
  .checkbox-group { grid-template-columns: 1fr; }
}
/* Make the hero section fit the viewport */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px; /* Reduced padding */
}

.hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Smaller label */
.hero__label {
  font-size: clamp(0.65rem, 1.5vw, 0.8rem); /* ≈ 10px - 13px */
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Smaller subtitle */
.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem); /* ≈ 14px - 18px */
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 24px; /* Reduced from 40px */
  opacity: 0;
  animation: fadeUp .7s ease .5s forwards;
}

/* Smaller buttons with less spacing */
.hero__ctas {
  display: flex;
  gap: 12px; /* Reduced from 16px */
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s ease .65s forwards;
}

.hero__ctas .btn {
  font-size: 0.9rem; /* Smaller button text */
  padding: 12px 24px; /* Reduced padding */
}

/* Adjust scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px; /* Closer to bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s ease 1s forwards;
}

/* Clean UI Scroll Down Module Replacement */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7; /* Forced visible with premium subtle transparency */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero__scroll:hover {
  transform: translateX(-50%) translateY(4px);
  opacity: 1;
}

.hero__scroll svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Mobile optimizations */
@media (max-width: 768px) {
  .hero {
    padding: 100px 15px 60px; /* Even less padding on mobile */
    min-height: 100vh;
  }
  
  .hero__title {
    font-size: clamp(1.3rem, 4vw, 1.8rem); /* ≈ 21px - 29px */
    line-height: 1.15;
    margin-bottom: 12px;
  }
  
  .hero__sub {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-bottom: 20px;
  }
  
  .hero__ctas {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
    padding: 11px 20px;
    font-size: 0.85rem;
  }
  
  .hero__label {
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    margin-bottom: 10px;
  }
}
/* ============================================================
   CONTENT VISIBILITY RECOVERY 
   ============================================================ */

/* 1. Force override any broken JavaScript scroll-reveal states */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

/* 2. Ensure layout sections use proper high-contrast backgrounds */
section {
  position: relative;
  display: block;
  width: 100%;
  padding: 80px 24px;
  clear: both;
}

/* 3. Re-map explicit light theme variable for the Services section background */
section[style*="background:var(--off-white);"],
section[style*="background: var(--off-white);"] {
  background-color: #f5f5f7 !important;
  color: #04070a !important;
}

/* Ensure child text elements within light sections flip to high-contrast dark text */
section[style*="background:var(--off-white)"] *,
section[style*="background: var(--off-white)"] * {
  color: initial;
}

section[style*="background:var(--off-white)"] .section-title,
section[style*="background: var(--off-white)"] .section-title {
  color: #04070a !important;
}

section[style*="background:var(--off-white)"] .service-card,
section[style*="background: var(--off-white)"] .service-card {
  background: #ffffff !important;
  color: #04070a !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 4. Ensure dark theme sections remain completely readable */
section:not([style*="background:var(--off-white)"]):not([style*="background: var(--off-white)"]) {
  background-color: #04070a !important;
  color: #ffffff !important;
}
/* ============================================================
   FUSED SERVICE AND PRICING FRAMEWORK SYSTEM - STYLING
   ============================================================ */

.services-framework {
  background-color: #f8f9fa !important;
  padding: 80px 20px !important;
  font-family: sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.framework-card {
  background: #ffffff !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 15px !important;
  padding: 30px !important;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
}

.card-package-title { font-size: 20px; font-weight: bold; margin-bottom: 10px; }
.card-price-block { font-size: 24px; font-weight: bold; margin-bottom: 15px; }
.card-features-list { list-style: none; padding: 0; margin-bottom: 20px; }
.card-features-list li { margin-bottom: 8px; font-size: 14px; }

.btn-card-primary {
  background: #000 !important;
  color: #fff !important;
  padding: 12px 20px !important;
  text-decoration: none;
  border-radius: 8px;
  display: block;
  text-align: center;
}
/* ============================================================
   UPDATED DARK-THEME SERVICE CARDS
   ============================================================ */

.services-framework {
  padding: 80px 20px !important;
  background-color: #04070a !important; /* Matches your dark body */
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.framework-card {
  background: #0c121a !important; /* Subtle dark card background */
  border: 1px solid #1a222e !important;
  border-radius: 15px !important;
  padding: 30px !important;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
}

.card-package-title { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: #ffffff !important; }
.card-price-block { font-size: 28px; font-weight: 700; margin-bottom: 15px; color: #c49246 !important; }
.card-features-list { list-style: none; padding: 0; margin-bottom: 25px; }
.card-features-list li { margin-bottom: 10px; font-size: 14px; color: #a0a8b3 !important; }

.btn-card-primary {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 14px 20px !important;
  text-decoration: none;
  border-radius: 8px;
  display: block;
  text-align: center;
  font-weight: 600;
}
/* Center the framework header section */
.framework-header {
  text-align: center !important;
  margin-bottom: 50px !important; /* Adds space between text and your cards */
}

/* Ensure the title and subtitle also respect the center alignment */
.framework-title {
  text-align: center !important;
}

.framework-subtitle {
  text-align: center !important;
  max-width: 600px; /* Optional: keeps the text from becoming too wide */
  margin: 0 auto !important; /* Keeps the text block centered */
}
/* Gold/Yellow Premium Button Styling */
.btn-card-gold {
  background: #c49246 !important; /* Your brand gold/yellow */
  color: #04070a !important; /* Dark text for contrast */
  font-weight: 700 !important;
  border: none !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

.btn-card-gold:hover {
  background: #e5c185 !important; /* Lighter gold on hover */
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(196, 146, 70, 0.3) !important;
}
/* ============================================ */
/* CONTACT PAGE GOLD FONTS - ADD THIS AT THE BOTTOM */
/* ============================================ */

/* Make Email, Location, Response Time labels and values gold */
.contact-label,
.contact-value,
.contact-value a,
.contact-icon {
  color: var(--gold) !important;
}

/* Make form labels gold */
.form-group label {
  color: var(--gold) !important;
}

/* Make form heading gold */
.form-header h2 {
  color: var(--gold) !important;
}

/* Make quick start label gold */
.quick-start-label {
  color: var(--gold) !important;
}

/* Make "GET IN TOUCH" gold if not already */
.contact-info-col .section-label {
  color: var(--gold) !important;
}

/* Mobile fix - keep everything gold on mobile too */
@media (max-width: 768px) {
  .contact-label,
  .contact-value,
  .contact-value a,
  .contact-icon,
  .form-group label,
  .form-header h2,
  .quick-start-label {
    color: var(--gold) !important;
  }
}
/* ============================================ */
/* DARK BLUE FORM BACKGROUND - ADD THIS AT THE BOTTOM */
/* ============================================ */

/* Make the form card background dark blue */
.form-card {
  background: #0A1628 !important; /* Dark blue background */
  border: 1px solid rgba(212, 175, 55, 0.2) !important; /* Subtle gold border */
}

/* Keep form header text white/gold */
.form-header h2 {
  color: var(--gold) !important;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7) !important; /* Light white text */
}

/* Keep labels gold */
.form-group label {
  color: var(--gold) !important;
}

/* Make input fields WHITE */
.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF !important; /* White background */
  color: #1a1a1a !important; /* Dark text for readability */
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

/* Placeholder text color */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999 !important;
}

/* Focus state for inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
  outline: none;
}

/* Keep select dropdown arrow visible */
.form-group select {
  background-color: #FFFFFF !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-card {
    background: #0A1628 !important;
  }
}
/* ============================================ */
/* GOLD BUTTON & CLEAN SELECT FIELD - ADD THIS AT THE BOTTOM */
/* ============================================ */

/* Make Send Message button GOLD */
#contactForm button[type="submit"],
.contact-form-col .btn-primary,
.form-submit-area .btn,
.form-submit-area button {
  background: var(--gold) !important;
  color: #0A1628 !important; /* Dark blue text for contrast */
  border: none !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
}

/* Button hover effect */
#contactForm button[type="submit"]:hover,
.contact-form-col .btn-primary:hover,
.form-submit-area .btn:hover,
.form-submit-area button:hover {
  background: #B4941A !important; /* Darker gold on hover */
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

/* Button active/click effect */
#contactForm button[type="submit"]:active {
  transform: translateY(0) !important;
}

/* CLEAN UP the "What can we help you with?" select field */
.form-group select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FFFFFF !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px !important;
  padding-right: 40px !important;
  cursor: pointer !important;
}

/* Remove any default select styling */
.form-group select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Optional: Style the select options */
.form-group select option {
  padding: 10px !important;
  background: #FFFFFF !important;
  color: #1a1a1a !important;
}

/* Make sure the button is full width on mobile */
@media (max-width: 768px) {
  #contactForm button[type="submit"],
  .form-submit-area button {
    width: 100% !important;
    padding: 14px !important;
  }
}
/* ============================================ */
/* FREE AUDIT PAGE STYLES
/* ============================================ */

/* Two-column layout (desktop) */
.audit-two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Left column styles */
.audit-info-col {
  width: 100%;
}

.audit-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.benefit-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.55;
}

.free-badge {
  margin-top: 36px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.free-badge-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.free-badge-text {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* Dark blue form background for audit page */
.audit-form-col .form-card {
  background: #0A1628 !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* Score display */
.score-display {
  display: none;
  margin-top: 32px;
  padding: 28px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.score-display__number {
  font-size: 64px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.score-display__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 1px;
}

.score-display__sub {
  font-size: 16px;
  color: #fff;
  margin-top: 8px;
  font-weight: 500;
}

/* Audit page checkbox styles */
.audit-form-col .checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.audit-form-col .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
}

.audit-form-col .checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

/* Audit page button */
.audit-form-col #auditForm button[type="submit"] {
  background: var(--gold) !important;
  color: #0A1628 !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
}

.audit-form-col #auditForm button[type="submit"]:hover {
  background: #B4941A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

/* ============================================ */
/* FREE AUDIT MOBILE RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  /* Stack columns */
  .audit-two-col {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  /* Order: info first, form second */
  .audit-info-col {
    order: 1;
  }
  
  .audit-form-col {
    order: 2;
  }
  
  /* Force form grid to single column */
  .audit-form-col .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Checkbox group to single column */
  .audit-form-col .checkbox-group {
    grid-template-columns: 1fr !important;
  }
  
  /* Reduce heading sizes */
  .audit-info-col h2 {
    font-size: 28px !important;
  }
  
  /* Full width button on mobile */
  .audit-form-col #auditForm button[type="submit"] {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .audit-info-col h2 {
    font-size: 24px !important;
  }
  
  .benefit-item {
    gap: 12px !important;
  }
  
  .benefit-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .free-badge {
    padding: 20px;
  }
  
  .score-display {
    padding: 20px;
  }
  
  .score-display__number {
    font-size: 48px;
  }
}
/* ============================================ */
/* MOBILE BURGER MENU FIXES
/* ============================================ */

/* Make hamburger icon more visible */
.nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold) !important; /* Gold color */
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* When menu is open - change to X */
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation menu styling */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #0A1628 !important; /* Dark blue background */
  z-index: 1000;
  padding: 80px 24px 32px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.nav__mobile.open {
  right: 0;
}

/* Mobile nav links */
.nav__mobile a {
  display: block;
  color: #FFFFFF !important; /* White text */
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--gold) !important; /* Gold on hover */
  padding-left: 8px;
}

/* Mobile nav Academy button */
.nav__mobile .btn-gold {
  background: var(--gold) !important;
  color: #0A1628 !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
  padding: 12px !important;
  font-weight: 700;
}

.nav__mobile .btn-gold:hover {
  background: #B4941A !important;
  color: #0A1628 !important;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .nav__hamburger {
    display: block !important;
  }
  
  .nav__links {
    display: none !important;
  }
  
  .btn-nav {
    display: none !important;
  }
}

/* Desktop nav link colors */
.nav__links a {
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold) !important;
}

/* Logo color */
.nav__logo {
  color: var(--gold) !important;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Desktop Academy button */
.btn-nav {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--gold);
  color: #0A1628 !important;
}

/* Scrolled nav background */
.nav.scrolled {
  background: #0A1628 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
/* ============================================ */
/* MOBILE BURGER MENU STYLES
/* ============================================ */

/* Hamburger button */
.nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1001;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav__hamburger:hover {
  background: rgba(212, 175, 55, 0.1);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold, #D4AF37) !important;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Transform to X when open */
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #0A1628 !important;
  z-index: 1000;
  padding: 80px 24px 32px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.nav__mobile.open {
  right: 0;
}

/* Mobile nav links */
.nav__mobile a {
  display: block;
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--gold, #D4AF37) !important;
  padding-left: 8px;
}

/* Mobile Academy button */
.nav__mobile .btn-gold {
  background: var(--gold, #D4AF37) !important;
  color: #0A1628 !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
  padding: 14px !important;
  font-weight: 700;
  border-bottom: none !important;
  display: block;
  width: 100%;
}

.nav__mobile .btn-gold:hover {
  background: #B4941A !important;
  color: #0A1628 !important;
  padding-left: 0 !important;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .nav__hamburger {
    display: block !important;
  }
  
  .nav__links {
    display: none !important;
  }
  
  .btn-nav {
    display: none !important;
  }
}

/* Desktop navigation styles */
.nav__links a {
  color: #FFFFFF;
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold, #D4AF37) !important;
}

/* Logo */
.nav__logo {
  color: var(--gold, #D4AF37) !important;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Desktop Academy button */
.btn-nav {
  background: transparent;
  border: 2px solid var(--gold, #D4AF37);
  color: var(--gold, #D4AF37) !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--gold, #D4AF37);
  color: #0A1628 !important;
}

/* Scrolled nav background */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: #0A1628 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  padding: 12px 32px;
}

/* Body fix when menu is open */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end; /* keep items on the right */
  }
}
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end; /* keep items on the right */
  }
}
.navbar .menu-toggle {
  margin-left: auto; /* pushes it to the right */
}
.mobile-nav {
  right: 0;
  left: auto;
}


