/* DeanByAnyCar - Hosting Package Styles */

/* Design System Colors */
:root {
  /* Backgrounds - Exact Colors */
  --bg-page: #F8F5F1;              /* Main page background (cream) */
  --bg-card: #FFFFFF;              /* Card and section backgrounds */
  --bg-subtle: #F8F5F1;            /* Input fields, subtle areas */
  --bg-section: #FFFFFF;           /* Section backgrounds */
  
  /* Text - Exact Colors */
  --text-primary: #1A1A1A;         /* Main headings and content */
  --text-secondary: #484848;       /* Supporting text */
  --text-muted: #707070;           /* Captions, timestamps */
  --text-link: #333333;            /* Navigation links */
  
  /* Borders - Exact Colors */
  --border-light: #E4E4E4;         /* Subtle separators */
  --border-medium: #BABABA;        /* Standard borders */
  --border-strong: #767676;        /* Emphasized borders */
  
  /* MAIN ACCENT COLORS - Brand Colors Only */
  --brand-green: #2D7A32;          /* Primary CTA buttons */
  --green-hover: #00502C;          /* Green hover state */
  --green-active: #004024;         /* Green active state */
  
  --brand-orange: #FF4310;         /* Orange highlights */
  --orange-hover: #EB3906;         /* Orange hover state */
  --orange-active: #D72F00;        /* Orange active state */
}

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

*,
*::before,
*::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-secondary);
  line-height: 1.6;
  background-color: var(--bg-page);
}

/* Typography Scale */
.display-xl { font-size: 72px; font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.display-lg { font-size: 62px; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
.display-md { font-size: 47px; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }

.heading-1 { font-size: 38px; font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
.heading-2 { font-size: 32px; font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; }
.heading-3 { font-size: 24px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
.heading-4 { font-size: 20px; font-weight: 500; line-height: 1.4; letter-spacing: -0.005em; }

.body-xl { font-size: 20px; font-weight: 400; line-height: 1.6; letter-spacing: 0em; }
.body-lg { font-size: 18px; font-weight: 400; line-height: 1.6; letter-spacing: 0em; }
.body-md { font-size: 16px; font-weight: 400; line-height: 1.6; letter-spacing: 0em; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 1.5; letter-spacing: 0em; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--brand-green); }

/* Icon styles */
.icon {
  width: 18px;
  height: 18px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-green);
}

.star {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: #FFD700;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--brand-green);
}

/* Button System */
.btn-primary {
  background: var(--brand-green);
  color: #FFFFFF;
  border: 2px solid var(--brand-green);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  min-height: 56px;
}

.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 122, 50, 0.3);
}

.btn-primary:active {
  background: var(--green-active);
  border-color: var(--green-active);
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  min-height: 56px;
}

.btn-secondary:hover {
  background: var(--brand-green);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 122, 50, 0.3);
}

.btn-orange {
  background: var(--brand-orange);
  color: #FFFFFF;
  border: 2px solid var(--brand-orange);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  min-height: 56px;
}

.btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 67, 16, 0.3);
}

/* Logo Only Header - Clean header for single-page layout */
.logo-only-header {
  background: var(--bg-page);
  padding: 30px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.logo-only-header .logo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-only-header .logo-svg {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

/* Why Us Section Styles */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  margin-bottom: 20px;
}

/* How It Works Section Styles */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--brand-green);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 20px;
}

/* Contact Grid Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-method {
  text-align: center;
  padding: 30px;
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.contact-icon {
  margin-bottom: 15px;
}

.contact-link {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--green-hover);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Simple Footer Links */
.footer-links-simple {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links-simple li {
  margin: 0;
}

.footer-links-simple a {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links-simple a:hover {
  color: #FFFFFF;
}

/* Streamlined Vehicle Lookup Module - Mobile First */
.vehicle-lookup-module {
  max-width: 450px;
  margin: 0 auto;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.lookup-header {
  text-align: center;
  margin-bottom: 24px;
}

.module-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.module-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
}

.input-section {
  margin-bottom: 20px;
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reg-input-group {
  display: flex;
  gap: 8px;
}

.reg-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-page);
  transition: border-color 0.2s ease;
}

.reg-input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(45, 122, 50, 0.1);
}

.lookup-btn {
  padding: 14px 20px;
  background: var(--brand-green);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.lookup-btn:hover:not(:disabled) {
  background: var(--green-hover);
}

.lookup-btn:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 16px;
  background: var(--bg-page);
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(45, 122, 50, 0.1);
}

.condition-options {
  display: grid;
  gap: 10px;
}

.condition-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  min-height: 56px; /* Large tappable area */
}

.condition-option:hover {
  border-color: var(--brand-green);
  background: rgba(45, 122, 50, 0.05);
}

.condition-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-green);
  margin: 0;
}

.condition-option input[type="radio"]:checked + .condition-text {
  font-weight: 600;
  color: var(--brand-green);
}

.condition-text {
  flex: 1;
  color: var(--text-primary);
}

.vehicle-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--border-light);
}

.vehicle-card {
  background: var(--bg-page);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.vehicle-main {
  margin-bottom: 12px;
}

.vehicle-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vehicle-specs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.spec-item {
  font-weight: 500;
}

.spec-divider {
  color: var(--border-light);
}

.vehicle-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-value {
  font-size: 14px;
  font-weight: 600;
}

.status-good {
  color: var(--brand-green);
}

.status-bad {
  color: #DC2626;
}

.whatsapp-section {
  text-align: center;
  margin-top: 24px;
}

.whatsapp-btn {
  width: 100%;
  padding: 16px 24px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  transition: background-color 0.2s ease;
}

.whatsapp-btn:hover:not(:disabled) {
  background: #22C55E;
}

.whatsapp-btn:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
}

.whatsapp-microcopy {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
}

.scrap-module {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
  border-radius: 12px;
  border: 1px solid #FECACA;
}

.scrap-content {
  text-align: center;
}

.scrap-title {
  font-size: 16px;
  font-weight: 600;
  color: #DC2626;
  margin-bottom: 4px;
}

.scrap-text {
  font-size: 14px;
  color: #7F1D1D;
  margin: 0;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--brand-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-msg {
  margin-top: 8px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  color: #DC2626;
  font-size: 14px;
  font-weight: 500;
}

/* Desktop Optimizations */
@media (min-width: 768px) {
  .vehicle-lookup-module {
    max-width: 500px;
    padding: 32px;
  }
  
  .module-title {
    font-size: 22px;
  }
  
  .module-subtitle {
    font-size: 15px;
  }
  
  .condition-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .vehicle-status {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reg-input-group {
    gap: 12px;
  }
  
  .lookup-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .vehicle-lookup-module {
    max-width: 550px;
  }
}

/* Vehicle Lookup Component Styles */
.vehicle-lookup {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 30px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lookup-step {
  text-align: center;
}

.registration-form {
  margin-top: 30px;
}

.input-group {
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  background: var(--bg-page);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(45, 122, 50, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-option:hover {
  border-color: var(--brand-green);
  background: rgba(45, 122, 50, 0.05);
}

.radio-option input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-green);
}

.radio-option input[type="radio"]:checked + .radio-label {
  font-weight: 600;
  color: var(--brand-green);
}

.radio-label {
  font-size: 16px;
  color: var(--text-primary);
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px;
  color: var(--text-secondary);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--brand-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-message {
  padding: 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  color: #DC2626;
  font-weight: 500;
  margin-top: 16px;
}

.vehicle-details-card {
  text-align: left;
}

.vehicle-info-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 24px;
  background: var(--bg-page);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.vehicle-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.vehicle-detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.status-valid {
  color: var(--brand-green);
}

.status-invalid {
  color: #DC2626;
}

.user-inputs {
  margin-top: 30px;
}

.form-actions {
  text-align: center;
}

.whatsapp-btn {
  background: #25D366;
  border-color: #25D366;
  font-size: 18px;
  padding: 16px 32px;
  min-width: 280px;
}

.whatsapp-btn:hover:not(:disabled) {
  background: #22C55E;
  border-color: #22C55E;
}

.whatsapp-btn:disabled {
  background: #9CA3AF;
  border-color: #9CA3AF;
  cursor: not-allowed;
}

.microcopy {
  margin-top: 12px;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vehicle-lookup {
    margin: 20px;
    padding: 30px 20px;
  }
  
  .radio-group {
    gap: 8px;
  }
  
  .radio-option {
    padding: 10px 12px;
  }
  
  .whatsapp-btn {
    min-width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .vehicle-info-grid {
    padding: 20px;
  }
  
  .vehicle-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .detail-value {
    text-align: left;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-links-simple {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Logo Header with Navigation - Homepage only */
.logo-header {
  background: var(--bg-page);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.logo-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-header .logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.logo-header .logo-link:hover {
  opacity: 0.8;
}

.logo-header .logo-svg {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Mobile menu collapse behavior for homepage */
@media (max-width: 768px) {
  .header-nav {
    display: none;  /* Hidden by default on mobile */
  }
}

/* Mobile Menu Toggle for Homepage */
.logo-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--text-link);
  transition: background-color 0.2s ease;
}

.logo-header .mobile-menu-toggle:hover {
  background: rgba(45, 122, 50, 0.1);
}

@media (max-width: 768px) {
  .logo-header .mobile-menu-toggle {
    display: block;
  }
}

/* Ensure mobile menu is hidden on desktop for homepage */
@media (min-width: 769px) {
  .logo-header .mobile-menu {
    display: none !important;
  }
  
  .logo-header .mobile-menu-toggle {
    display: none !important;
  }
}

/* Header Styles */
.design-header {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;  /* Ensure solid background */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;  /* Added for mobile menu positioning */
}

.nav-logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-svg {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Mobile menu collapse behavior */
@media (max-width: 768px) {
  .nav-menu {
    display: none;  /* Hidden by default on mobile */
  }
  
  .nav-menu.active {
    display: block;  /* Show when active */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.nav-link {
  color: var(--text-link);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  background: rgba(45, 122, 50, 0.1);
  color: var(--brand-green);
}

.nav-link.active {
  background: var(--brand-green);
  color: #FFFFFF;
}

.cta-phone {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
}

.cta-phone:hover {
  background: var(--orange-hover);
  color: #FFFFFF;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--text-link);
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(45, 122, 50, 0.1);
}

.mobile-menu {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.mobile-menu.show {
  display: block !important;
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu.show {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  color: var(--text-link);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(45, 122, 50, 0.1);
  color: var(--brand-green);
}

.cta-mobile {
  display: block;
  padding: 16px 24px;
  margin: 20px 24px 0;
  background: var(--brand-orange);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-page) 0%, #FFFFFF 100%);
  padding: 80px 24px 80px;  /* Reduced top padding since header is sticky */
  text-align: center;
  position: relative;
  z-index: 0;  /* Ensure hero stays behind nav */
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-content p {
  margin-bottom: 32px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
}

/* Content Containers */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Styles */
.form-section {
  background: var(--bg-card);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 14px;
}

.form-input {
  padding: 16px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 16px;
  background: var(--bg-subtle);
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-green);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(45, 122, 50, 0.1);
}

.form-input.error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.error-message {
  color: #E53E3E;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* File Upload Styles */
.file-upload {
  position: relative;
  border: 2px dashed var(--border-medium);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: var(--bg-subtle);
  transition: all 0.2s ease;
  cursor: pointer;
}

.file-upload:hover {
  border-color: var(--brand-green);
  background: #FFFFFF;
}

.file-upload.dragover {
  border-color: var(--brand-green);
  background: rgba(45, 122, 50, 0.05);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-text {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}

.upload-hint {
  color: var(--text-muted);
  font-size: 14px;
}

/* Cards and Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 122, 50, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-green);
}

.card-title {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
}

/* Footer Styles */
.design-footer {
  background: var(--text-primary) !important;
  color: #FFFFFF;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333333;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: #CCCCCC;
  font-size: 14px;
}

.footer-certifications {
  display: flex;
  gap: 20px;
}

.certification {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #CCCCCC;
  font-size: 14px;
}

/* FAQ Styles */
.faq-section {
  background: var(--bg-card);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer.active {
  max-height: 200px;
  padding-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .hero-section {
    padding: 100px 24px 60px;  /* Adjusted for mobile */
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .display-md {
    font-size: 32px;
  }
  
  .heading-1 {
    font-size: 28px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-orange {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 40px 16px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .form-section {
    padding: 40px 16px;
    margin: 20px 0;
  }
  
  .card {
    padding: 24px;
  }
}

/* WhatsApp Integration Styles */
.whatsapp-cta {
  background: #25D366;
  color: #FFFFFF;
  border: 2px solid #25D366;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  min-height: 56px;
}

.whatsapp-cta:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Comparison Table Styles */
.comparison-table {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.comparison-header {
  background: var(--brand-green);
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-feature {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-value {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-highlight {
  background: rgba(45, 122, 50, 0.1);
  color: var(--brand-green);
  font-weight: 600;
}

.check-mark {
  color: var(--brand-green);
  font-weight: bold;
}

.cross-mark {
  color: #E53E3E;
  font-weight: bold;
}