/* ===== CSS Variables ===== */
:root {
  --green: #6DB33F;
  --navy: #141852;
  --purple: #3B1070;
  --mint: #F2FFF8;
  --white: #FFFFFF;
  --gray-light: #f5f5f5;
  --gray-text: #555;
  --transition: 0.3s ease;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(20, 24, 82, 0.10);
  --shadow-hover: 0 8px 36px rgba(20, 24, 82, 0.18);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--purple);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 560px;
}

/* ===== Scroll Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Inline SVG Logo ===== */
.qt-logo {
  display: block;
  height: 44px;
  width: auto;
}

.qt-logo--footer {
  height: 56px;
  width: auto;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* ===== Navbar ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(20,24,82,0.18);
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: #5a9a33 !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover {
  color: var(--green);
  background: rgba(109,179,63,0.08);
}

/* ===== Hero ===== */
#hero {
  background: var(--navy);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109,179,63,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59,16,112,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero split layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* ===== Hero Photo Collage ===== */
.hero-collage {
  position: relative;
  height: 480px;
  flex-shrink: 0;
}

.collage-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  border: 3px solid rgba(255,255,255,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  z-index: 10;
}

.collage-card--top {
  width: 240px;
  height: 180px;
  top: 0;
  right: 20px;
  transform: rotate(2.5deg);
  z-index: 3;
}

.collage-card--mid {
  width: 270px;
  height: 200px;
  top: 120px;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}

.collage-card--bottom {
  width: 230px;
  height: 170px;
  bottom: 20px;
  right: 40px;
  transform: rotate(1.5deg);
  z-index: 3;
}

.collage-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20,24,82,0.92) 0%, transparent 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 20px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.collage-label svg {
  color: var(--green);
  flex-shrink: 0;
}

.collage-stat-badge {
  position: absolute;
  top: 160px;
  right: 0;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(109,179,63,0.5);
  z-index: 10;
  font-family: 'Nunito', sans-serif;
  border: 3px solid rgba(255,255,255,0.3);
}

.collage-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.collage-stat-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  text-align: center;
  line-height: 1.2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,179,63,0.15);
  border: 1px solid rgba(109,179,63,0.3);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
}

.hero-badges-row {
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(109,179,63,0.3);
}

.btn-primary:hover {
  background: #5a9a33;
  border-color: #5a9a33;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109,179,63,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(59,16,112,0.7);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--purple);
  background: rgba(59,16,112,0.15);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== About / Timeline ===== */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-highlight {
  background: var(--mint);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 20px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--purple));
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}

.timeline-dot svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.timeline-item:hover .timeline-dot {
  background: var(--green);
}

.timeline-item:hover .timeline-dot svg {
  color: var(--white);
}

.timeline-body {
  padding-top: 6px;
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ===== Partners ===== */
#partners {
  padding: 100px 0;
  background: var(--mint);
}

.partners-header {
  text-align: center;
  margin-bottom: 56px;
}

.partners-header .section-subtitle {
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(109,179,63,0.1);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(109,179,63,0.3);
}

.partner-icon {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 12px 20px;
}

.partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.partner-tag {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.partner-badge {
  text-align: center;
}

.more-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background var(--transition);
}

.more-badge:hover {
  background: var(--purple);
}

.more-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* ===== Fleet Photo ===== */
#fleet-photo {
  padding: 0;
  overflow: hidden;
}

.fleet-photo-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.fleet-photo-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 0.6s ease;
}

.fleet-photo-wrap:hover .fleet-photo-img {
  transform: scale(1.02);
}

.fleet-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(20,24,82,0.85) 0%, rgba(20,24,82,0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.fleet-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fleet-photo-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .fleet-photo-img { height: 300px; }
  .fleet-photo-overlay { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px; }
  .fleet-photo-caption { font-size: 0.82rem; }
}

/* ===== Cities ===== */
#cities {
  padding: 100px 0;
  background: var(--white);
}

.cities-header {
  text-align: center;
  margin-bottom: 56px;
}

.cities-header .section-subtitle {
  margin: 0 auto;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.city-card {
  background: var(--white);
  border: 2px solid rgba(109,179,63,0.15);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(109,179,63,0.4);
}

.city-card:hover::before {
  transform: scaleX(1);
}

.city-pin {
  width: 48px;
  height: 48px;
  background: rgba(109,179,63,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transition);
}

.city-card:hover .city-pin {
  background: var(--green);
}

.city-pin svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  transition: color var(--transition);
}

.city-card:hover .city-pin svg {
  color: var(--white);
}

.city-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.city-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.city-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ===== Why Us ===== */
#why-us {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(109,179,63,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header .section-title {
  color: var(--white);
}

.why-header .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(109,179,63,0.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(109,179,63,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(109,179,63,0.28);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.why-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== Contact ===== */
#contact {
  padding: 100px 0;
  background: var(--mint);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--purple);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: box-shadow var(--transition);
}

.contact-detail:hover {
  box-shadow: var(--shadow-hover);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #222;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(109,179,63,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  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 fill='%236DB33F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(109,179,63,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #5a9a33;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109,179,63,0.4);
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(109,179,63,0.08);
  border-radius: var(--radius);
  border: 1.5px solid rgba(109,179,63,0.3);
  margin-top: 16px;
}

.form-success svg {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin: 0 auto 12px;
}

.form-success h4 {
  color: var(--navy);
  margin-bottom: 6px;
}

.form-success p {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ===== Hero Badge Row ===== */
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badge--vision {
  background: rgba(0, 150, 109, 0.15);
  border-color: rgba(0, 150, 109, 0.35);
  color: #4dbb97;
}

/* ===== Vision 2030 Section ===== */
#vision2030 {
  padding: 0;
}

.v2030-bg {
  background: linear-gradient(135deg, #0b0f3a 0%, #141852 45%, #0f2a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.v2030-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,150,109,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.v2030-bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(109,179,63,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.v2030-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.v2030-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.v2030-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.v2030-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2030-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(109,179,63,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  transition: background var(--transition), border-color var(--transition);
}

.v2030-pillar:hover {
  background: rgba(109,179,63,0.08);
  border-color: rgba(109,179,63,0.35);
}

.v2030-pillar-icon {
  width: 42px;
  height: 42px;
  background: rgba(109,179,63,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2030-pillar-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.v2030-pillar-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Visual Side */
.v2030-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.v2030-year-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.v2030-year {
  font-family: 'Nunito', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #6DB33F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2030-year-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(109,179,63,0.9);
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.v2030-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109,179,63,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: v2030-pulse 3s ease-in-out infinite;
}

.v2030-ring--1 { width: 160px; height: 160px; animation-delay: 0s; }
.v2030-ring--2 { width: 220px; height: 220px; animation-delay: 0.6s; border-color: rgba(109,179,63,0.12); }
.v2030-ring--3 { width: 280px; height: 280px; animation-delay: 1.2s; border-color: rgba(109,179,63,0.06); }

.v2030-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(109,179,63,0.6);
  z-index: 2;
}

@keyframes v2030-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.v2030-stat-cards {
  display: flex;
  gap: 16px;
}

.v2030-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(109,179,63,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  flex: 1;
}

.v2030-stat-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.v2030-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Footer Vision Badge */
.footer-vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(109,179,63,0.8);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  border: 1px solid rgba(109,179,63,0.2);
  border-radius: 20px;
  padding: 5px 14px;
}

/* Vision 2030 Responsive */
@media (max-width: 960px) {
  .v2030-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .v2030-visual {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .v2030-stat-cards {
    flex-direction: column;
    width: 100%;
  }
}

/* ===== Footer ===== */
#footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-inner {
  text-align: center;
}

/* footer-logo class kept for compatibility — now using .footer-logo-wrap + qt-logo--footer SVG */

.footer-arabic {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  direction: rtl;
}

.footer-meta {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.footer-meta span {
  color: var(--green);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-copyright span {
  color: var(--green);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .collage-card--top {
    width: 200px;
    height: 155px;
  }

  .collage-card--mid {
    width: 230px;
    height: 175px;
  }

  .collage-card--bottom {
    width: 195px;
    height: 148px;
  }

  .hero-collage {
    height: 420px;
  }
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  #about, #partners, #cities, #why-us, #contact {
    padding: 72px 0;
  }

  #hero {
    padding: 72px 0 64px;
  }
}

@media (max-width: 540px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-outline {
    justify-content: center;
  }
}
