@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');

/* --- Brand Variables & Tokens --- */
:root {
  --navy: #142b5c;       /* Primary Corporate Navy */
  --steel-blue: #1f4e8c; /* Secondary Steel Blue */
  --aero-orange: #f59e0b; /* Aero Accent Orange */
  --orange-light: #fffbeb; /* Soft Orange background */
  --orange: #f59e0b;       /* Vibrant Orange Highlight */
  --teal: #11a6a3;         /* Cyan/Teal accent */
  
  --dark-bg: #142b5c;    /* Dark background for hero */
  --light-bg: #f8fafc;   /* Body light neutral bg */
  --card-bg: #ffffff;    /* Card base */
  
  --text-dark: #0f172a;  /* Crisp dark text */
  --text-muted: #64748b; /* Soft secondary text */
  --text-light: #c4d0df; /* Soft text for dark backgrounds */
  
  --border-color: #e2e8f0;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(21, 41, 91, 0.06), 0 4px 6px -4px rgba(21, 41, 91, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(21, 41, 91, 0.1), 0 8px 10px -6px rgba(21, 41, 91, 0.05);
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Layout Wrappers --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* --- Header & Navigation --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 72px;
  width: auto;
}

nav.desktop-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav.desktop-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

nav.desktop-menu a:hover,
nav.desktop-menu a.active {
  color: var(--aero-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn:active {
  transform: scale(0.97);
}

.btn-orange {
  background: linear-gradient(135deg, var(--aero-orange) 0%, #c2410c 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #11a6a3 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--navy);
}

.btn-white:hover {
  background-color: #f1f5f9;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu (Mobile) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 1024px) {
  nav.desktop-menu {
    display: none;
  }
  
  .header-actions .btn-consult {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #ffffff;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 24px;
  overflow-y: auto;
  border-t: 1px solid var(--border-color);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-drawer nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a.active {
  color: var(--aero-orange);
}

/* --- Hero Banner with Doha Cityscape & Airplane --- */
.cinematic-hero {
  position: relative;
  height: 250vh; /* Scroll length for cinematic effect */
  width: 100%;
  margin-top: -80px;
  background-color: var(--navy);
}

@media (max-width: 768px) {
  .cinematic-hero {
    height: 180vh;
  }
}

.hero-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--navy) 0%, #1e293b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.sky-bg {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  max-width: 1200px;
  max-height: 1200px;
  background: radial-gradient(circle, rgba(17, 138, 138, 0.15) 0%, rgba(21, 41, 91, 0) 60%);
  z-index: 1;
  pointer-events: none;
  animation: hero-glow 8s infinite alternate ease-in-out;
}

@keyframes hero-glow {
  0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@media (max-width: 768px) {
  .hero-sticky {
    padding-top: 20px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-kicker, .hero-title, .hero-desc, .hero-cta {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  animation-delay: 0.2s;
}

.hero-title .text-orange {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-desc {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  animation-delay: 0.3s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation-delay: 0.4s;
}

@media (max-width: 480px) {
  .hero-cta .btn {
    width: 100%;
  }
}

.doha-skyline-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160vw; /* Wider for parallax panning without gaps */
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  will-change: transform;
}

.doha-skyline-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animated Plane and Contrail */
.flight-plane-container {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  left: 0;
  bottom: 25%;
  width: 240px;
  height: 80px;
  transform: translate(-25vw, 8vh) rotate(0deg) scale(0.55);
  transform-origin: center center;
  transition: opacity 0.3s ease-out;
  will-change: transform;
}

.flight-plane-container img {
  display: block;
}

.contrail {
  position: absolute;
  top: 50%;
  right: 100%;
  height: 3px;
  width: 0px; /* Animated via JS */
  border-radius: 9999px;
  background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0));
  transform: translateY(-50%);
  filter: blur(2px);
  opacity: 0; /* Animated via JS */
}

@media (max-width: 768px) {
  .flight-plane-container {
    width: 160px;
    height: auto;
  }
  .doha-skyline-container {
    width: 300vw;
    height: auto;
    bottom: -10px;
  }
}

/* --- Assessment Wizard Card --- */
.wizard-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  scroll-margin-top: 100px; /* Fix for sticky header overlap */
}

@media (max-width: 480px) {
  .wizard-card {
    padding: 24px;
  }
}

.wizard-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.wizard-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--aero-orange);
  box-shadow: 0 0 0 3px rgba(17, 138, 138, 0.15);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.wizard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background-color: var(--border-color);
}

.progress-bar.active {
  background-color: var(--aero-orange);
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.wizard-navigation .btn {
  flex: 1;
}

/* --- Section Heading --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.85rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Destination Showcase --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.dest-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 41, 91, 0.95) 0%, rgba(21, 41, 91, 0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.dest-flag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.dest-flag-row svg {
  width: 14px;
  height: 14px;
  fill: var(--aero-orange);
}

.dest-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.dest-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

/* --- How it Works / Steps --- */
.steps-section {
  background-color: var(--navy);
  color: #ffffff;
}

.steps-section h2 {
  color: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-box {
  background-color: var(--navy);
  padding: 40px 32px;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Services Overview --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.service-title {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 8px 0 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--aero-orange);
}

/* --- Google Business Reviews Widget --- */
.reviews-section {
  background-color: var(--orange-light);
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.review-card {
  min-width: 100%;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(17, 138, 138, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 640px) {
  .review-card {
    padding: 24px;
  }
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--border-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s ease-out;
  animation: whatsapp-pulse 2s infinite;
  transform-origin: center center;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.reviewer-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-rating-source {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

@media (max-width: 480px) {
  .review-rating-source {
    align-items: flex-start;
  }
}

.stars {
  color: #ffb800; /* Google Orange/Yellow */
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.google-verified {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-verified svg {
  width: 12px;
  height: 12px;
  fill: #4285f4; /* Google Blue */
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.5;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background-color: #f1f5f9;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--steel-blue);
  font-weight: 500;
  width: fit-content;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(21, 41, 91, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--aero-orange);
  transform: scale(1.2);
}

.google-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.google-aggregate-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.aggregate-score {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.aggregate-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.write-review-btn {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.write-review-btn:hover {
  border-color: var(--aero-orange);
  color: var(--aero-orange);
}

/* --- About Page Specifics --- */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #142b5c 0%, #1f4e8c 100%);
  color: #ffffff;
  padding: 140px 0 80px 0;
  margin-top: -80px;
  text-align: center;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--aero-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--orange-light);
  color: var(--aero-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.value-title {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Contact Page & Map --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--orange-light);
  color: var(--aero-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  shrink: 0;
}

.info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}

.info-value a:hover {
  color: var(--aero-orange);
}

.contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .contact-card {
    padding: 24px;
  }
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
footer {
  background-color: var(--navy);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-b: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin: 20px 0 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-title {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
}

.modal-title {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-body {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.modal-alert {
  background-color: var(--orange-light);
  border-left: 4px solid var(--aero-orange);
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}

.modal-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 8px 12px;
  background-color: #f1f5f9;
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
}

.code-title {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.copy-code-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--aero-orange);
  font-weight: 600;
}

.modal-code {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 20px;
  border-radius: 0 0 6px 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  overflow-x: auto;
  margin-bottom: 20px;
  max-height: 200px;
  border: 1px solid var(--border-color);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding-left: 20px;
}

.steps-list li {
  line-height: 1.5;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.whatsapp-bubble {
  position: absolute;
  right: 75px;
  bottom: 10px;
  background: white;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transform: translateX(20px);
  animation: bubble-appear-hide 40s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: -28s; /* 40s - 28s = 12s into animation (so it appears 2s after load) */
}

/* Little tail for the bubble */
.whatsapp-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 15px;
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

@keyframes bubble-appear-hide {
  0%, 75% { opacity: 0; transform: translateX(20px) scale(0.9); }
  77.5%, 97.5% { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(10px) scale(0.9); }
}

/* Animated Assessment Wrapper */
.hero-assessment-wrapper {
  position: absolute;
  bottom: 40px; /* Target bottom position when settled */
  left: 50%;
  transform: translateX(-50%) translateY(120vh); /* Start off-screen */
  width: 100%;
  max-width: 1200px;
  z-index: 20;
  opacity: 0;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-assessment-wrapper {
    bottom: 90px; /* Sits above WhatsApp icon */
  }
}


/* --- Floating Components --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  font-size: 1.85rem;
  outline: none;
  animation: pulse 2s infinite;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.whatsapp-float.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.mobile-sticky-cta.visible {
  transform: translateY(0);
}
.mobile-sticky-cta .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  .whatsapp-float {
    bottom: 80px; /* move up to avoid covering CTA */
  }
}

/* --- Stats Bar --- */
.stats-bar-wrapper {
  background-color: var(--navy);
  color: white;
  padding: 16px 0;
}
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.stat-item svg {
  color: var(--aero-orange);
}
.stat-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    font-size: 1rem;
  }
}

/* --- FAQ Accordion --- */
.faq-accordion {
  margin-top: 32px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}
.faq-question:hover {
  color: var(--aero-orange);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fafafa;
}
.faq-answer p {
  padding: 0 20px 20px 20px;
  color: var(--text-dark);
}
