/* ===========================
   Taagira — Stylesheet v3
   تأجيرة - تصميم محسّن
   =========================== */

:root {
  /* Official brand colors */
  --blue: #0057ff;
  --blue-dark: #0048d6;
  --blue-deep: #003cb8;
  --soft: #f0f4ff;
  --soft-2: #f8fbff;
  --accent: #b7cfff;
  
  /* Neutral palette */
  --navy: #071b3a;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --white: #ffffff;
  
  /* WhatsApp brand */
  --wa: #25d366;
  --wa-dark: #1ebe5d;
  
  /* Shadows */
  --shadow: 0 22px 60px rgba(7, 27, 58, 0.14);
  --soft-shadow: 0 10px 30px rgba(7, 27, 58, 0.07);
  --card-shadow: 0 8px 24px rgba(7, 27, 58, 0.06);
  
  /* Radius */
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 30px;
  
  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus {
  right: 1rem;
}

/* ===========================
   Layout
   =========================== */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--soft-2), var(--soft));
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

/* ===========================
   Typography
   =========================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 87, 255, 0.09);
  color: var(--blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 780px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 900;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 24px rgba(0, 87, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(0, 87, 255, 0.28);
}

.btn-outline {
  background: white;
  color: var(--blue);
  border-color: rgba(0, 87, 255, 0.22);
}

.btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: #102a52;
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
}

/* ===========================
   Header
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.3rem;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}

.nav {
  display: flex;
  gap: 0.25rem;
}

.nav a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  color: #334155;
  font-size: 0.96rem;
  transition: var(--t);
}

.nav a:hover,
.nav a.active {
  background: var(--soft);
  color: var(--blue);
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.98rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--soft);
  transition: var(--t);
}

.phone-link:hover {
  background: var(--accent);
}

.phone-link svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--navy);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 900;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 60%, var(--blue) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(183, 207, 255, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 87, 255, 0.25), transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p.lead {
  font-size: 1.13rem;
  color: #e5edff;
  margin: 1.25rem 0 1.6rem;
  max-width: 600px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: white;
}

/* Trust badges in hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  color: #e5edff;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Hero visual card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}

.hero-card-title img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.hero-card-title strong {
  font-size: 1.05rem;
  color: var(--navy);
}

.hero-card-title small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.chip {
  background: var(--soft);
  border: 1px solid rgba(0, 87, 255, 0.09);
  padding: 0.85rem;
  border-radius: 14px;
}

.chip b {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.chip span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ===========================
   Stats Bar
   =========================== */
.stats-bar {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

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

.stat {
  padding: 0.5rem;
}

.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.25rem;
}

/* ===========================
   Who Are We Panel
   =========================== */
.who-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2.5rem;
  align-items: center;
}

.brand-box {
  min-height: 340px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 2rem;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  position: relative;
}

.brand-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.08);
  left: -95px;
  top: -95px;
}

.brand-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(183, 207, 255, 0.25);
  right: -60px;
  bottom: -60px;
}

.brand-box img {
  position: relative;
  width: min(260px, 72%);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(7, 27, 58, 0.12);
}

/* ===========================
   Clean List
   =========================== */
.clean-list {
  list-style: none;
  margin: 1.1rem 0 1.25rem;
}

.clean-list li {
  position: relative;
  padding-right: 2.1rem;
  margin: 0.5rem 0;
  color: #334155;
  line-height: 1.7;
}

.clean-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0.2rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
}

/* ===========================
   Two-Service Grid
   =========================== */
.two-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.main-service {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: var(--t-slow);
}

.main-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-illustration {
  height: 220px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.service-illustration.alt {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
}

.service-illustration::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -60px;
  right: -60px;
}

.service-illustration::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -40px;
  left: -40px;
}

.service-illustration svg {
  width: 110px;
  height: 110px;
  color: white;
  position: relative;
  z-index: 1;
}

.service-content {
  padding: 1.75rem;
}

.service-content h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0.4rem 0 0.5rem;
}

.label {
  display: inline-block;
  background: var(--soft);
  color: var(--blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 0.27rem 0.85rem;
  font-size: 0.82rem;
}

/* ===========================
   Why Grid
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--card-shadow);
  transition: var(--t);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card .icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  margin-bottom: 0.85rem;
}

.why-card .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ===========================
   Fleet — Car Cards (Smart placeholder design)
   =========================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.car-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--t-slow);
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.car-visual {
  height: 175px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* Car color variations */
.car-visual.c-blue { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.car-visual.c-red { background: linear-gradient(135deg, #7f1d1d 0%, #ef4444 100%); }
.car-visual.c-white { background: linear-gradient(135deg, #94a3b8 0%, #e2e8f0 100%); }
.car-visual.c-gray { background: linear-gradient(135deg, #334155 0%, #64748b 100%); }
.car-visual.c-black { background: linear-gradient(135deg, #0f172a 0%, #334155 100%); }
.car-visual.c-gold { background: linear-gradient(135deg, #92400e 0%, #d97706 100%); }
.car-visual.c-bronze { background: linear-gradient(135deg, #78350f 0%, #b45309 100%); }
.car-visual.c-petrol { background: linear-gradient(135deg, #0c4a6e 0%, #0891b2 100%); }

.car-visual svg {
  width: 130px;
  height: 80px;
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.car-visual.c-white svg {
  color: #1e293b;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  color: var(--blue);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.car-body {
  padding: 1.1rem;
}

.car-body h3 {
  color: var(--navy);
  line-height: 1.45;
  font-size: 1.02rem;
}

.car-color {
  color: var(--blue);
  font-weight: 800;
  margin: 0.2rem 0 0.5rem;
  font-size: 0.88rem;
}

.car-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.simple-note {
  margin-top: 1.5rem;
  background: white;
  border: 1px dashed rgba(0, 87, 255, 0.3);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  text-align: center;
  color: #475569;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===========================
   Steps
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--t);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step .num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.step h3 {
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.step p {
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   Pricing Cards
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  transition: var(--t);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, white 0%, var(--soft-2) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--blue);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.pricing-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.pricing-card .price small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-card .price-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial::before {
  content: "”";
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: 5rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.testimonial p {
  color: #334155;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 0.85rem;
}

.stars {
  color: #f59e0b;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* ===========================
   FAQ Accordion
   =========================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--t);
}

.faq-item[open] {
  box-shadow: var(--card-shadow);
  border-color: rgba(0, 87, 255, 0.2);
}

.faq-item summary {
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: var(--t);
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--soft-2);
}

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--blue);
  font-weight: 900;
  transition: transform var(--t);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.35rem 1.25rem;
  color: #334155;
  line-height: 1.85;
}

/* ===========================
   CTA Panel
   =========================== */
.cta-panel {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  left: -120px;
  top: -120px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.cta-panel p {
  color: #e5edff;
  margin-top: 0.4rem;
}

.cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cta-panel .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ===========================
   Page Hero (subpages)
   =========================== */
.page-hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.page-visual {
  height: 365px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  right: -80px;
}

.page-visual svg {
  width: 220px;
  height: 220px;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* ===========================
   Content Grid (cards)
   =========================== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.content-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--t);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.content-card .icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.content-card .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.content-card h3 {
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
}

.content-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===========================
   Split section
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.visual-box {
  height: 370px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--soft), var(--accent));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-box svg {
  width: 200px;
  height: 200px;
  color: var(--blue);
  filter: drop-shadow(0 8px 16px rgba(0, 87, 255, 0.2));
}

/* ===========================
   Contact Form
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group label .req {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--ink);
  transition: var(--t);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-card .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-card a {
  color: var(--blue);
  font-weight: 800;
  display: block;
  margin-top: 0.2rem;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 100px;
  border-top: 5px solid var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer img.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: #cbd5e1;
  line-height: 1.85;
}

.footer h4 {
  margin-bottom: 0.85rem;
  color: white;
  font-size: 1.05rem;
}

.footer a {
  display: block;
  padding: 0.2rem 0;
  transition: var(--t);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--accent);
  padding-right: 4px;
}

.footer-phone {
  font-size: 1.4rem !important;
  color: white !important;
  font-weight: 900;
  margin: 0.4rem 0;
}

.social-icons {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: var(--t);
  padding: 0;
}

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

.social-icons svg {
  width: 18px;
  height: 18px;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
  padding: 0;
}

/* ===========================
   Floating WhatsApp + Mobile Bottom
   =========================== */
.float-wa {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 999;
  background: var(--wa);
  color: white;
  padding: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: var(--t);
  animation: pulse-wa 2s infinite;
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  color: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

.mobile-bottom {
  display: none;
}

/* ===========================
   Reveal Animation
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-wa { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .hero-grid,
  .who-panel,
  .page-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .two-service-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid,
  .fleet-grid,
  .content-grid,
  .pricing-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .cta-panel {
    display: block;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
    margin-top: 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 68px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand span {
    font-size: 1.15rem;
  }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-chips,
  .why-grid,
  .fleet-grid,
  .content-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .two-service-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .float-wa {
    display: none;
  }
  .mobile-bottom {
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(7, 27, 58, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 1000;
    overflow: hidden;
  }
  .mobile-bottom a {
    text-align: center;
    padding: 0.85rem 0.35rem;
    font-size: 0.86rem;
    font-weight: 900;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .mobile-bottom a.wh {
    background: var(--wa);
    color: white;
  }
  .mobile-bottom svg {
    width: 18px;
    height: 18px;
  }
  .footer {
    padding-bottom: 110px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-hero {
    padding: 50px 0;
  }
  .page-visual {
    height: 240px;
  }
  .page-visual svg {
    width: 150px;
    height: 150px;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .testimonial::before {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .container {
    width: 94%;
  }
}

/* Print styles */
@media print {
  .header, .footer, .float-wa, .mobile-bottom, .hero-actions, .cta-actions {
    display: none !important;
  }
  body {
    color: black;
    background: white;
  }
}
