/* =========================================================
   Sahl Land Transport — Custom Styles
   Premium corporate / RTL / Arabic
   ========================================================= */

:root {
  --primary: #1699C7;
  --primary-dark: #0E6E92;
  --primary-light: #1FB2E8;
  --secondary: #F3B61F;
  --secondary-light: #FBD877;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --text: #0F172A;
  --text-muted: #64748B;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;

  --radius-lg: 40px;
  --radius-md: 28px;
  --radius-sm: 18px;

  --shadow-soft: 0 20px 50px -20px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 10px 30px -12px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 25px 60px -15px rgba(22, 153, 199, 0.35);

  --header-height: 90px;
}

/* =========================================================
   Base / Reset
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
}

.skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  z-index: 2000;
}

.skip-link:focus {
  right: 20px;
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(22, 153, 199, 0.08);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.nav-link {
  position: relative;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(22, 153, 199, 0.06);
}

.nav-link.active {
  color: var(--primary-dark);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.65);
  color: #fff;
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-text small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
}

.wa-text strong {
  font-size: 0.95rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--bg-light);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 60px 0 140px;
  background: linear-gradient(180deg, #F8FDFF 0%, #FFFFFF 55%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-skyline {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 220px;
  opacity: 0.05;
  filter: blur(2px);
  pointer-events: none;
}

.hero-skyline svg {
  width: 100%;
  height: 100%;
}

.hero-skyline rect {
  fill: var(--primary-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* --- Visual column --- */
.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  display: block;
  border-radius: 40px;
}

.shape-diagonal-1 {
  width: 420px;
  height: 420px;
  left: -60px;
  top: 10px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: rotate(18deg);
  opacity: 0.9;
  border-radius: 60px;
}

.shape-diagonal-2 {
  width: 300px;
  height: 300px;
  left: 40px;
  bottom: -30px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: rotate(-15deg);
  opacity: 0.85;
  border-radius: 50px;
}

.shape-gold-1 {
  width: 90px;
  height: 90px;
  right: 10px;
  top: 20px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  transform: rotate(25deg);
  border-radius: 24px;
}

.shape-gold-2 {
  width: 46px;
  height: 46px;
  right: 60px;
  bottom: 60px;
  background: var(--secondary);
  border-radius: 14px;
  transform: rotate(-10deg);
}

.shape-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(243, 182, 31, 0.5);
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-van-wrap {
  position: relative;
  z-index: 2;
  width: 108%;
  max-width: 640px;
  margin-inline-end: -4%;
  filter: drop-shadow(0 40px 45px rgba(15, 23, 42, 0.28));
  animation: float-van 6s ease-in-out infinite;
}

.hero-van {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float-van {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* --- Content column --- */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.hero-year {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--secondary), #D99A0C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0 10px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 22px;
}

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: #7A4E00;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(243, 182, 31, 0.55);
  margin-bottom: 36px;
  direction: ltr;
  unicode-bidi: isolate;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(22, 153, 199, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 17px;
  height: 17px;
}

/* --- Floating WhatsApp Card --- */
.floating-whatsapp-card {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text);
  max-width: 92%;
}

.floating-whatsapp-card:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 30px 60px -18px rgba(37, 211, 102, 0.4);
  color: var(--text);
}

.fw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  flex-shrink: 0;
}

.fw-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.fw-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.fw-phone {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--whatsapp-dark);
  direction: ltr;
  unicode-bidi: isolate;
}

/* =========================================================
   Trust Section
   ========================================================= */
.trust-section {
  padding: 0 0 110px;
  margin-top: -40px;
  position: relative;
  z-index: 6;
}

.trust-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 50px 40px;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.trust-card {
  text-align: center;
  padding: 20px 12px;
  height: 100%;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 153, 199, 0.12), rgba(22, 153, 199, 0.04));
  color: var(--primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
}

.trust-card:hover .trust-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   Section Heading (generic)
   ========================================================= */
.section-heading {
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* =========================================================
   Fleet Section
   ========================================================= */
.fleet-section {
  padding: 40px 0 120px;
  background: var(--bg-light);
  border-radius: 60px 60px 0 0;
}

.fleet-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.fleet-media {
  position: relative;
  height: 210px;
  margin: 14px 14px 0;
  border-radius: calc(var(--radius-md) - 8px);
  background: linear-gradient(150deg, #EAF7FC 0%, #D6EFF8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-media--gold {
  background: linear-gradient(150deg, #FDF3DC 0%, #FBE6B4 100%);
}

.fleet-van-icon {
  width: 78%;
  height: auto;
  fill: var(--primary);
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.fleet-media--gold .fleet-van-icon {
  fill: #C98A00;
}

.fleet-card:hover .fleet-van-icon {
  transform: scale(1.06) translateY(-4px);
}

.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-card);
}

.fleet-badge svg {
  width: 20px;
  height: 20px;
}

.fleet-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.fleet-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: auto;
}

.fleet-features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 999px;
}

.fleet-features li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.btn-book {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  color: #7A4E00;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 14px 26px -12px rgba(243, 182, 31, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -12px rgba(243, 182, 31, 0.65);
  color: #7A4E00;
}

/* =========================================================
   About Section
   ========================================================= */
.about-section {
  padding: 110px 0;
  background: var(--bg-light);
}

.about-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 60px;
}

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  direction: ltr;
  unicode-bidi: isolate;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about-visual .shape-sm {
  width: 260px;
  height: 260px;
  left: auto;
  right: -20px;
}

.about-van {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 25px 30px rgba(15, 23, 42, 0.18));
}

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  padding: 100px 0;
}

.cta-inner {
  position: relative;
  background: linear-gradient(120deg, #0B4E68 0%, var(--primary-dark) 45%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(243, 182, 31, 0.25), transparent 40%);
  pointer-events: none;
}

.cta-visual {
  position: relative;
  z-index: 2;
}

.cta-van {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.3));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.cta-tagline {
  color: var(--secondary-light);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.cta-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  justify-self: center;
  width: 100%;
  max-width: 260px;
}

.cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
}

.cta-phone-icon svg {
  width: 26px;
  height: 26px;
}

.cta-phone-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  direction: ltr;
  unicode-bidi: isolate;
}

.btn-whatsapp--solid {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, #0B4E68, #08394C);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  height: 46px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: var(--whatsapp);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.25s ease, padding-right 0.25s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.75);
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-contact li a:hover {
  color: var(--secondary-light);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-light);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* =========================================================
   Reveal animation
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-van-wrap {
    animation: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1199.98px) {
  .cta-inner {
    grid-template-columns: 1fr 1.4fr;
    grid-template-areas:
      "visual content"
      "card card";
    padding: 50px 40px;
  }
  .cta-visual { grid-area: visual; }
  .cta-content { grid-area: content; }
  .cta-card { grid-area: card; max-width: 100%; flex-direction: row; justify-content: center; margin-top: 20px; }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 78px;
  }

  .nav-links {
    position: fixed;
    inset-inline: 0;
    top: var(--header-height);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 18px;
    gap: 4px;
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    margin: 0;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    text-align: center;
    padding: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: 360px;
  }

  .feature-row {
    justify-content: center;
  }

  .hero-van-wrap {
    width: 90%;
    margin-inline-start: 0;
  }

  .about-panel .row {
    flex-direction: column-reverse;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-bottom: 160px;
  }

  .trust-panel {
    padding: 34px 22px;
  }

  .about-panel {
    padding: 34px 24px;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content"
      "card";
    padding: 40px 24px;
    text-align: center;
  }

  .cta-visual {
    justify-self: center;
    max-width: 220px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .floating-whatsapp-card {
    bottom: 18px;
    padding: 12px 18px;
  }

  .fw-text strong {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-year {
    font-size: 3.2rem;
  }

  .badge-pill {
    margin-bottom: 26px;
  }

  .feature-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .fleet-section {
    border-radius: 36px 36px 0 0;
  }

  .cta-card {
    flex-direction: column;
  }
}
