/* ============================================================
   TU Express — Pure CSS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');


/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --red-900: #6B0000;
  --red-800: #8B0000;
  --red-600: #CC0000;
  --red-400: #E63939;
  --red-100: #FFE5E5;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --black: #0D0D0D;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.25);
  --shadow-red: 0 20px 40px rgba(139,0,0,0.4);
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-600);
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.container--wide {
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: 6rem;
}

.section--sm { padding-block: 4rem; }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--red-400);
  outline-offset: 3px;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--white);
  color: var(--red-800);
}
.btn--primary:hover {
  background: var(--red-100);
  box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn--red {
  background: var(--red-600);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-800);
  box-shadow: var(--shadow-red);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.1);
}
.btn--dark:hover {
  background: #1a1a1a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 160px;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.store-btn svg { flex-shrink: 0; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn .store-label { font-size: 0.65rem; opacity: 0.75; }
.store-btn .store-name { font-size: 1rem; font-weight: 700; font-family: 'Poppins', sans-serif; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(11, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red-400);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link.active {
  color: var(--white);
}
.nav__link.active::after { width: 100%; }

.nav__cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  background: var(--red-600);
  color: var(--white);
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav__cta:hover {
  background: var(--red-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,0,0,0.5);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--red-800);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s ease;
}

.mobile-menu.open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.30s; }

.mobile-menu__link:hover { color: var(--white); }

.mobile-menu__cta {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  background: var(--white);
  color: var(--red-800);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-menu.open .mobile-menu__cta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.36s;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  height: auto;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  min-height: 60svh;
  height: auto;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
}

.hero--contact {
  min-height: 50svh;
  height: auto;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  background: linear-gradient(135deg, var(--red-900) 0%, var(--red-600) 100%);
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(30,0,0,0.35) 0%,
    rgba(100,0,0,0.60) 35%,
    rgba(139,0,0,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  padding: 0;
}

.hero__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.95s forwards;
}

.hero__breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 0.7s 0.95s forwards;
}
.hero__breadcrumb a { color: rgba(255,255,255,0.7); }
.hero__breadcrumb a:hover { color: var(--white); }
.hero__breadcrumb .sep { margin: 0 0.5rem; }

/* ─── Airplane SVG ───────────────────────────────────────── */
.hero__plane {
  position: absolute;
  top: 28%;
  left: 0;
  width: 80px;
  opacity: 0.12;
  animation: drift 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes drift {
  from { transform: translateX(110vw); }
  to   { transform: translateX(-20vw); }
}

/* ─── Scroll chevron ─────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: fadeIn 0.6s 1.5s forwards;
}
.scroll-hint span {
  display: block;
  width: 16px; height: 16px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce-down 1.4s ease-in-out infinite;
}
.scroll-hint span:nth-child(2) { animation-delay: 0.2s; opacity: 0.5; }

@keyframes bounce-down {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ─── App Highlight Strip ────────────────────────────────── */
.highlight-strip {
  position: relative;
  z-index: 10;
  margin-top: -5rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.highlight-col {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.highlight-col + .highlight-col {
  border-left: 2px solid var(--red-100);
}

.highlight-col .icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.highlight-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.highlight-col p {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin: 0;
}

/* ─── Why TU Express ─────────────────────────────────────── */
.why-section {
  background: var(--red-800);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.why-quote span {
  color: rgba(255,255,255,0.45);
  font-size: 5rem;
  line-height: 0.8;
  display: block;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition), transform var(--transition);
}
.why-feature:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.why-feature .feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-feature p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin: 0;
}

/* ─── App Screenshots Carousel ───────────────────────────── */
.screenshots-section { background: var(--gray-50); }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.phone-mockup {
  flex-shrink: 0;
  width: 220px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 220px;
  background: #111;
  border-radius: 38px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 2px #222,
    0 0 0 4px #444,
    0 40px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 22px;
  background: #111;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  height: 420px;
}

.phone-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--red-600);
  transform: scale(1.3);
  width: 24px;
  border-radius: 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-btn:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--gray-800);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-mark {
  color: var(--red-400);
  font-size: 3rem;
  line-height: 0.8;
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.testimonial-card .stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--red-800);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ─── App Download Section ───────────────────────────────── */
.download-section {
  background: linear-gradient(135deg, var(--red-900) 0%, var(--red-800) 50%, var(--red-600) 100%);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.download-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.download-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

.store-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-info-small {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-info-small a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.contact-info-small a:hover { color: var(--white); }

.download-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.phone-float {
  width: 240px;
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: float 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(8deg); }
  50%      { transform: translateY(-16px) rotate(8deg); }
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Section Headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; }

/* ─── Services Page ──────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}

.service-block + .service-block {
  border-top: 1px solid var(--gray-100);
}

.service-block.reversed { direction: rtl; }
.service-block.reversed > * { direction: ltr; }

.service-content .service-icon {
  width: 60px; height: 60px;
  background: var(--red-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.service-content h2 { margin-bottom: 1rem; color: var(--gray-800); }
.service-content p { margin-bottom: 1.5rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.feature-list li::before {
  content: '✓';
  color: var(--red-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual { display: flex; justify-content: center; }

.service-phone {
  width: 240px;
}

.service-phone .phone-frame img {
  height: 460px;
}

/* Real-time tracking card */
.tracking-card {
  background: var(--red-800);
  border-radius: var(--radius-xl);
  padding: 4rem;
  color: var(--white);
  text-align: center;
  margin: 0;
}

.tracking-card .track-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.tracking-card h2 { color: var(--white); margin-bottom: 1rem; }
.tracking-card p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 520px; margin-inline: auto; }

.tracking-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.track-feat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Pricing teaser */
.pricing-section { background: var(--gray-50); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card-image {
  height: 160px;
  background: var(--gray-200);
  background-size: cover;
  background-position: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--red-600);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.pricing-card-body {
  padding: 1.5rem;
}

.pricing-route {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red-800);
  margin-bottom: 1rem;
}

.pricing-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ─── Destinations Page ──────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--gray-800);
}

.dest-card__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card__bg { transform: scale(1.07); }

.dest-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}

.dest-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}

.dest-card__region {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dest-card__city {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.dest-card__transports {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.dest-card__price {
  display: inline-block;
  background: var(--red-600);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.dest-card__explore {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(139,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.dest-card:hover .dest-card__explore { opacity: 1; }

/* SVG Map */
.map-section { background: #1a1a2e; padding: 5rem 0; }
.map-section h2 { color: var(--white); text-align: center; margin-bottom: 0.75rem; }
.map-section .section-sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

.map-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.gabon-map {
  max-width: 420px;
  width: 100%;
}

.gabon-map .country-fill { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.15); stroke-width: 1.5; }

.gabon-map .route-line {
  fill: none;
  stroke: var(--red-400);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  opacity: 0.5;
}

.gabon-map .route-line.animated {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.5s ease;
  opacity: 0.7;
}
.gabon-map .route-line.animated.drawn { stroke-dashoffset: 0; }

.city-dot {
  fill: var(--red-600);
  animation: pulse-dot 2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes pulse-dot {
  0%,100% { r: 5px; opacity: 1; }
  50%      { r: 7px; opacity: 0.7; }
}

.city-label {
  fill: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.city-dot-outer {
  fill: none;
  stroke: var(--red-400);
  stroke-width: 1.5;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { r: 6px; opacity: 0.7; }
  100% { r: 14px; opacity: 0; }
}

/* Transport types */
.transport-types { background: var(--gray-50); }

.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.transport-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--gray-100);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.transport-card:hover {
  border-color: var(--red-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.transport-card .t-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.transport-card h4 { color: var(--gray-800); margin-bottom: 0.5rem; }
.transport-card p { font-size: 0.88rem; margin: 0; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h3 {
  color: var(--gray-800);
  margin-bottom: 2rem;
}

.contact-phone-block {
  margin-bottom: 2.5rem;
}

.phone-big a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red-800);
  transition: color var(--transition);
  margin-bottom: 0.25rem;
}
.phone-big a:hover { color: var(--red-600); }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.detail-row .d-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.detail-row strong { color: var(--gray-800); }

.social-cards {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--transition), border-color var(--transition);
}
.social-card:hover { background: var(--gray-100); }
.social-card .sc-icon { font-size: 1.2rem; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrapper h3 {
  color: var(--gray-800);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px rgba(230,57,57,0.12);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red-800);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--red-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 360px;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--success { background: #059669; }
.toast--error   { background: var(--red-600); }

/* FAQ */
.faq-section { background: var(--gray-50); }

.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }

.faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--red-600);
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-a p { font-size: 0.9rem; margin: 0; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-900), var(--red-600));
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-banner .store-btns { justify-content: center; }

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── prefers-reduced-motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1280px) {
  .destinations-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-col:last-child { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > *:last-child { display: none; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .transport-grid { grid-template-columns: 1fr 1fr; }
  .service-phone { width: 200px; }
}

@media (max-width: 768px) {
  .section { padding-block: 4rem; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    padding: calc(var(--nav-h) + 3rem) 1rem 4rem;
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }

  .highlight-card {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }
  .highlight-col + .highlight-col {
    border-left: none;
    border-top: 2px solid var(--red-100);
  }

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

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > *:last-child { display: block; }

  .download-grid { grid-template-columns: 1fr; }
  .download-visual { display: none; }

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

  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reversed { direction: ltr; }
  .service-visual { order: -1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

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

  .contact-layout { grid-template-columns: 1fr; }

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

  .tracking-card { padding: 2.5rem 1.5rem; }
  .tracking-features { flex-direction: column; align-items: center; }

  .carousel-btn { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero {
    padding: calc(var(--nav-h) + 2rem) 1rem 3rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

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

  .highlight-strip { margin-top: -2rem; }

  .store-btns { flex-direction: column; align-items: flex-start; }
}

/* ─── Pluie de lumière — section fine-tuning ─────────────── */
/* White sections: rain completely hidden */
.section-light {
  background: #ffffff !important;
}

/* Dark/red sections: isolated stacking context so rain shows as
   a subtle shimmer through the section's own compositing layer  */

/* ─── Destination Stats Grid ─────────────────────────────── */
.dest-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dest-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}

.dest-stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(204,0,0,0.5);
  transform: translateY(-4px);
}

.dest-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.dest-stat-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}

.dest-stat-region {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.dest-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.dest-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.dest-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.dest-stat-value small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}

.dest-stat-badge {
  font-size: 0.72rem;
  background: rgba(204,0,0,0.3);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.dest-stat-bar {
  margin-top: 1rem;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.dest-stat-fill {
  height: 100%;
  background: linear-gradient(to right, var(--red-800), var(--red-400));
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.dest-stat-card.visible .dest-stat-fill {
  width: var(--bar-width, 0%);
}

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

@media (max-width: 480px) {
  .dest-stats-grid { grid-template-columns: 1fr; }
}

/* ─── Partner Section ────────────────────────────────────── */
.partner-section {
  background: var(--gray-50);
}

.partner-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.partner-left h2 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.partner-left p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.partner-left p strong {
  color: var(--red-800);
  font-weight: 700;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.partner-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: var(--red-100);
  color: var(--red-800);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
}

.partner-logo-box {
  background: linear-gradient(135deg, #0a0a1a, #1a1a3e);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.partner-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.partner-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 2rem;
}

.partner-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.p-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.p-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.p-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

@media (max-width: 768px) {
  .partner-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
}

#admin-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9998;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

#admin-btn:hover {
  background: rgba(204,0,0,0.85);
  transform: scale(1.1);
}
