/* =====================================================
   TAKE OFF AVIATION ACADEMY — Main Stylesheet
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --sky: #1e90ff;
  --gold: #f5a623;
  --light: #f4f7fc;
  --white: #ffffff;
  --text: #2d3748;
  --muted: #718096;
  --green: #27ae60;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  background: rgb(17 49 90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding 0.3s;
}
nav.scrolled {
  padding: 10px 6%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky);
}
.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: #1279d4 !important;
}

/* hamburger */
.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-block;
  padding: 0 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.ticker-item::before {
  content: "✈ ";
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.93) 0%,
      rgba(26, 58, 107, 0.87) 55%,
      rgba(30, 144, 255, 0.28) 100%
    ),
    url("../images/1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 140px 6% 100px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy));
}
.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 span {
  color: var(--sky);
}
.hero > .hero-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--sky);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 144, 255, 0.55);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 36px 6%;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--sky);
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
}

/* ── SECTION COMMONS ── */
section {
  padding: 96px 6%;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.about-img-badge strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}
.about-img-badge span {
  font-size: 12px;
  color: var(--muted);
}

.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(30, 144, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check svg {
  width: 14px;
  height: 14px;
  stroke: var(--sky);
}
.about-point p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.11);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
}
.icon-blue {
  background: rgba(30, 144, 255, 0.12);
}
.icon-gold {
  background: rgba(245, 166, 35, 0.12);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--sky);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--sky);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 13px;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--light);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.4);
}
.step h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── WHY US ── */
.why {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}
.why .section-title {
  color: var(--white);
}
.why .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition:
    background 0.3s,
    transform 0.3s;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 38px;
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── TESTIMONIALS SLIDER ── */
.testimonials {
  background: var(--white);
}

.testi-slider-wrap {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10%;
}

.testi-card-inner {
  background: var(--light);
  border-radius: var(--radius);
  padding: 48px 44px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(30, 144, 255, 0.07);
}

.testi-card-inner::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 32px;
  font-size: 110px;
  font-family: Georgia, serif;
  color: rgba(30, 144, 255, 0.07);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.testi-text {
  font-size: 17px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30, 144, 255, 0.3);
}
.testi-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.testi-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(30, 144, 255, 0.25);
  background: var(--white);
  color: var(--sky);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.testi-btn:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  transform: scale(1.08);
}

.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.2);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--sky);
  transform: scale(1.3);
}

/* ── CTA BANNER ── */
.cta-banner {
  background:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.9) 0%,
      rgba(30, 144, 255, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?w=1400&q=80")
      center/cover no-repeat;
  padding: 96px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "✈";
  position: absolute;
  right: -40px;
  top: -40px;
  font-size: 300px;
  opacity: 0.04;
  transform: rotate(-20deg);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.6);
}

/* ── FAQ ── */
.faq {
  background: var(--light);
}
.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--sky);
}
.faq-arrow {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--sky);
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
  background: var(--sky);
}
.faq-item.open .faq-arrow svg {
  stroke: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 26px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-item-text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item-text span {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-item-text a {
  color: var(--sky);
  text-decoration: none;
}
.contact-item-text a:hover {
  text-decoration: underline;
}

/* Map embed placeholder */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

/* ── FORM ── */
.contact-form {
  background: var(--light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(30, 144, 255, 0.35);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(30, 144, 255, 0.45);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12);
}

.form-success {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.35);
  color: var(--green);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

/* ── FOOTER ── */
footer {
  background: #11315a;
  padding: 64px 6% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--sky);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-contact-list li span:first-child {
  font-size: 15px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom strong {
  color: rgba(255, 255, 255, 0.7);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-socials a:hover {
  background: var(--sky);
}

/* ── BACK TO TOP ── */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--sky);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.4);
  transition:
    opacity 0.3s,
    transform 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-top.show {
  opacity: 1;
  pointer-events: auto;
}
#back-top:hover {
  transform: translateY(-3px);
}

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 4px 18px rgba(39, 174, 96, 0.5);
  animation: pulse-call 2s infinite;
}
.float-call:hover {
  background: #219a52;
  animation: none;
  transform: scale(1.1);
}
@keyframes pulse-call {
  0%   { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* ── ENQUIRY POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s ease;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--navy);
}
.popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.popup-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.popup-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.popup-header p {
  font-size: 14px;
  color: var(--muted);
}
.popup-form-group {
  margin-bottom: 14px;
}
.popup-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--light);
}
.popup-input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12);
}
.popup-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(30, 144, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(30, 144, 255, 0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 20px 6%;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-weight: 500;
  }
  .steps-grid::before {
    display: none;
  }
  .steps-grid {
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .stats-inner {
    gap: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  section {
    padding: 72px 5%;
  }
  .contact-form {
    padding: 28px 22px;
  }
}
