/* ============================================================
   لوان نور بندرعباس — Premium Design System
   RTL Farsi Intercity Bus Company
   ============================================================ */

/* ============================================================
   FONT FACES — Vazirmatn (self-hosted)
   ============================================================ */

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --primary: #14697A;
  --accent: #1A9BAA;
  --amber: #D08B2B;
  --amber-dark: #B8771F;
  --text: #3D4E5C;
  --text-light: #6B7D8C;
  --bg: #FFFFFF;
  --bg-light: #F4F7F8;
  --footer-bg: #1E2A34;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 3px rgba(20,105,122,0.08), 0 8px 24px rgba(20,105,122,0.10), 0 24px 56px rgba(20,105,122,0.08);
  --shadow-hover: 0 4px 12px rgba(20,105,122,0.14), 0 16px 40px rgba(20,105,122,0.16);
  --transition: 0.22s ease;
  --container: 1240px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--bg);
  line-height: 2.0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: rgba(26, 155, 170, 0.25);
}

/* ============================================================
   FOCUS VISIBLE
   ============================================================ */

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-tag {
  color: var(--amber);
  font-weight: 700;
}

.phone-ltr {
  direction: ltr;
  display: inline-block;
  unicode-bidi: isolate;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   BUTTONS — General
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-amber {
  background: var(--amber);
  color: #ffffff;
}

.btn-amber:hover {
  background: var(--amber-dark);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn-primary-color {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary-color:hover {
  background: #0f5566;
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg img {
    animation: none !important;
  }
}

/* ============================================================
   NAVBAR — .site-header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(20, 105, 122, 0.10), 0 2px 16px rgba(20, 105, 122, 0.06);
}

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

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--accent);
  display: block;
  line-height: 1.4;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

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

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  background: var(--amber);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.nav-cta:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 16px rgba(208, 139, 43, 0.35);
  color: #ffffff;
}

.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: color var(--transition), background var(--transition);
}

.nav-mobile-toggle:hover {
  color: var(--primary);
  background: rgba(20, 105, 122, 0.06);
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 105, 122, 0.12);
  width: 100%;
  border-top: 1px solid rgba(20, 105, 122, 0.08);
}

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

.mobile-menu .mobile-nav-links {
  list-style: none;
  padding: 12px 0;
}

.mobile-menu .mobile-nav-links li a {
  display: block;
  padding: 12px 24px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.mobile-menu .mobile-nav-links li a:hover,
.mobile-menu .mobile-nav-links li a.active {
  color: var(--primary);
  background: rgba(20, 105, 122, 0.05);
}

.mobile-menu .mobile-cta {
  padding: 16px 24px;
  border-top: 1px solid rgba(20, 105, 122, 0.08);
}

.mobile-menu .mobile-cta .nav-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION — .hero
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(480px, 70vh, 70vh);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(20, 105, 122, 0.92) 0%,
    rgba(20, 105, 122, 0.75) 40%,
    rgba(20, 105, 122, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: clamp(40px, 6vw, 80px) 0;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--amber);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  line-height: 1.4;
}

.btn-primary:hover {
  background: var(--amber-dark);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  line-height: 1.4;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* ============================================================
   STATS STRIP — .stats-strip
   ============================================================ */

.stats-strip {
  background: var(--primary);
  padding: 0;
}

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

.stat-card {
  padding: 28px 24px;
  text-align: center;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:last-child {
  border-inline-end: none;
}

.stat-card:first-child {
  border-inline-start: none;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section--light {
  background: var(--bg-light);
}

.section--white {
  background: var(--bg);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 40px;
}

.section-header {
  margin-bottom: 48px;
}

/* ============================================================
   SERVICE CARDS — .services-grid
   ============================================================ */

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

.service-card {
  background: #ffffff;
  border: 1px solid rgba(20, 105, 122, 0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #14697A, #1A9BAA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2.0;
}

/* ============================================================
   ROUTE CARDS — .routes-scroll
   ============================================================ */

.routes-scroll {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.routes-scroll::-webkit-scrollbar {
  height: 4px;
}

.routes-scroll::-webkit-scrollbar-track {
  background: rgba(20, 105, 122, 0.1);
  border-radius: 2px;
}

.routes-scroll::-webkit-scrollbar-thumb {
  background: rgba(20, 105, 122, 0.4);
  border-radius: 2px;
}

.routes-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 105, 122, 0.65);
}

.route-card {
  flex-shrink: 0;
  width: 220px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  scroll-snap-align: start;
  border: 1px solid rgba(20, 105, 122, 0.08);
}

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

.route-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.route-card:hover .route-img img {
  transform: scale(1.05);
}

.route-body {
  padding: 16px;
}

.route-city {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.route-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 6px;
  line-height: 1.3;
}

.route-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(26, 155, 170, 0.12);
  color: var(--accent);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   FLEET CARDS — .fleet-grid
   ============================================================ */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(20, 105, 122, 0.08);
}

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

.fleet-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.04);
}

.fleet-body {
  padding: 28px;
}

.fleet-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.fleet-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.spec-icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ============================================================
   TRUST STRIP — .trust-strip
   ============================================================ */

.trust-strip {
  background: var(--bg-light);
  padding: 40px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  text-align: center;
  min-width: 120px;
}

.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   CONTACT BAND — .contact-band
   ============================================================ */

.contact-band {
  background: var(--primary);
  padding: 48px 0;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.contact-icon {
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  line-height: 1.4;
}

.contact-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  display: block;
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
  transition: text-decoration var(--transition);
}

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

/* ============================================================
   FOOTER — .site-footer
   ============================================================ */

.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 2.0;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.footer-links {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.6;
  transition: color var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-contact-list li + li {
  margin-top: 12px;
}

.footer-contact-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   BOOKING / SEARCH FORM
   ============================================================ */

.booking-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  border: 1px solid rgba(20, 105, 122, 0.10);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-control {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1.5px solid rgba(20, 105, 122, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 155, 170, 0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

/* ============================================================
   BADGE / CHIP
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

.badge-accent {
  background: rgba(26, 155, 170, 0.12);
  color: var(--accent);
}

.badge-amber {
  background: rgba(208, 139, 43, 0.12);
  color: var(--amber);
}

.badge-primary {
  background: rgba(20, 105, 122, 0.12);
  color: var(--primary);
}

/* ============================================================
   DIVIDERS & SPACING HELPERS
   ============================================================ */

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to left, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 32px;
}

.spacer-sm  { height: 16px; }
.spacer-md  { height: 32px; }
.spacer-lg  { height: 64px; }

/* ============================================================
   ALERT / NOTICE
   ============================================================ */

.alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.alert-info {
  background: rgba(26, 155, 170, 0.08);
  color: var(--primary);
  border: 1px solid rgba(26, 155, 170, 0.2);
}

.alert-warning {
  background: rgba(208, 139, 43, 0.08);
  color: #8A5B1A;
  border: 1px solid rgba(208, 139, 43, 0.25);
}

/* ============================================================
   RESPONSIVE — max-width: 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

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

/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */

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

  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .stat-card {
    border-inline-start: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .stat-card:nth-child(odd) {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-card:last-child,
  .stat-card:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

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

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

  .hero-content {
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 105, 122, 0.8) 0%,
      rgba(20, 105, 122, 0.85) 60%,
      rgba(20, 105, 122, 0.92) 100%
    );
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-sub {
    margin-bottom: 28px;
  }

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

  .trust-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .booking-form {
    padding: 24px 20px;
  }
}

/* ============================================================
   RESPONSIVE — max-width: 430px (small phones ~390px)
   ============================================================ */

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

  .hero {
    min-height: 420px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section {
    padding: clamp(40px, 6vw, 56px) 0;
  }

  .route-card {
    width: 180px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .trust-grid {
    gap: 20px;
  }

  .trust-item {
    min-width: 90px;
  }

  .contact-band {
    padding: 36px 0;
  }

  .container {
    padding: 0 16px;
  }

  .footer-grid {
    gap: 24px;
  }

  .booking-form {
    padding: 20px 16px;
  }
}

/* ============================================================
   BEM ALIASES — bridge between generated CSS and HTML classes
   ============================================================ */

/* btn modifier */
.btn--amber { background: var(--amber); color: #ffffff; }
.btn--amber:hover { background: var(--amber-dark); box-shadow: var(--shadow-hover); color: #ffffff; }
.bg-light { background: var(--bg-light); }

/* ── Hero ── */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to left, rgba(20,105,122,0.92) 0%, rgba(20,105,122,0.75) 40%, rgba(20,105,122,0.45) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; max-width: 600px; padding: clamp(40px,6vw,80px) 0; }
.hero__title  { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; line-height: 1.4; margin-bottom: 16px; text-wrap: balance; }
.hero__sub    { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.9; margin-bottom: 32px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── Stats strip ── */
.stats-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 28px 24px; text-align: center; border-inline-start: 1px solid rgba(255,255,255,0.15); }
.stat-item:first-child { border-inline-start: none; }
.stat-item__number { font-size: 2rem; font-weight: 700; color: #fff; display: block; line-height: 1.2; }
.stat-item__label  { font-size: 0.82rem; color: rgba(255,255,255,0.75); display: block; margin-top: 4px; }

/* ── Section header ── */
.section__header { margin-bottom: 48px; }
.section__title  { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--primary); line-height: 1.4; margin-bottom: 12px; }
.section__sub    { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; margin-bottom: 0; }
.eyebrow { font-size: 0.8rem; font-weight: 600; color: var(--accent); display: block; margin-bottom: 8px; }

/* ── Service card ── */
.service-card__icon  { width: 60px; height: 60px; background: linear-gradient(135deg,#14697A,#1A9BAA); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #fff; flex-shrink: 0; }
.service-card__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
.service-card__title { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.service-card__desc  { font-size: 0.9rem; color: var(--text-light); line-height: 2.0; }

/* ── Route card ── */
.route-card__link  { display: block; text-decoration: none; color: inherit; height: 100%; }
.route-card__photo { aspect-ratio: 3/2; overflow: hidden; }
.route-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.route-card:hover .route-card__photo img { transform: scale(1.05); }
.route-card__body  { padding: 16px; }
.route-card__city  { font-size: 1rem; font-weight: 600; color: var(--primary); line-height: 1.4; margin-bottom: 6px; }
.route-card__price { font-size: 1.05rem; font-weight: 700; color: var(--amber); margin-bottom: 10px; line-height: 1.3; }

/* ── Fleet card ── */
.fleet-card__photo { aspect-ratio: 16/9; overflow: hidden; }
.fleet-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fleet-card:hover .fleet-card__photo img { transform: scale(1.04); }
.fleet-card__body  { padding: 28px; }
.fleet-card__title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.4; }
.fleet-card__specs { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.fleet-card__specs li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.spec-label { color: var(--text-light); font-size: 0.85rem; min-width: 64px; }
.spec-value { color: var(--text); font-weight: 500; }
.fleet-card__price { font-size: 1rem; font-weight: 600; color: var(--amber); margin-bottom: 18px; }

/* ── About strip ── */
.about-strip__grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip__media   { }
.about-strip__frame   { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.about-strip__frame img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__content { }
.about-strip__title   { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--primary); line-height: 1.4; margin-bottom: 20px; }
.about-strip__body    { font-size: 0.95rem; color: var(--text-light); line-height: 2.1; margin-bottom: 16px; }

/* ── Trust strip ── */
.trust-strip__grid   { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust-item__text    { font-size: 0.9rem; font-weight: 500; color: var(--text); display: block; text-align: center; }
.trust-item--enamad  { }
.enamad-badge        { border: 2px solid var(--primary); border-radius: var(--radius-sm); padding: 10px 20px; text-align: center; }
.enamad-badge__text  { font-size: 0.82rem; font-weight: 600; color: var(--primary); }

/* ── Contact band ── */
.contact-band__grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.contact-band__item    { display: flex; align-items: center; gap: 16px; color: #fff; }
.contact-band__icon    { color: rgba(255,255,255,0.9); flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.12); border-radius: 50%; }
.contact-band__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.contact-band__details { display: flex; flex-direction: column; gap: 2px; }
.contact-band__label   { font-size: 0.78rem; color: rgba(255,255,255,0.65); display: block; }
.contact-band__value   { font-size: 1rem; font-weight: 500; color: #fff; display: block; }

/* ── Header BEM ── */
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px; padding: 0 24px; max-width: var(--container); margin: 0 auto;
}
.site-header__logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.site-header__logo-icon { color: var(--primary); display: flex; align-items: center; }
.site-header__brand { display: flex; flex-direction: column; }
.site-header__nav { flex: 1; display: flex; justify-content: center; }
.site-header__nav-list { display: flex; gap: 32px; list-style: none; align-items: center; }
.site-header__nav-link { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color var(--transition); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.site-header__nav-link:hover { color: var(--primary); }
.site-header__nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.site-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-header__cart { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--text); text-decoration: none; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.site-header__cart:hover { color: var(--primary); background: rgba(20,105,122,0.06); }
.site-header__cart svg { stroke: currentColor; fill: none; }
.site-header__cart-badge { position: absolute; top: 2px; left: 2px; min-width: 18px; height: 18px; background: var(--amber); color: #fff; font-size: 0.65rem; font-weight: 700; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; line-height: 1; }
.site-header__cta { }
.site-header__hamburger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--text); border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.site-header__hamburger:hover { color: var(--primary); background: rgba(20,105,122,0.06); }
.site-header__hamburger svg { stroke: currentColor; fill: none; }

/* Mobile menu BEM */
.mobile-menu__list { list-style: none; padding: 12px 0; }
.mobile-menu__link { display: block; padding: 12px 24px; color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color var(--transition), background var(--transition); }
.mobile-menu__link:hover, .mobile-menu__link.active { color: var(--primary); background: rgba(20,105,122,0.05); }
.mobile-menu__cta  { display: block; margin: 8px 16px 16px; text-align: center; }

/* ── Footer BEM ── */
.site-footer__grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer__col  { }
.site-footer__col--brand { }
.site-footer__logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 12px; }
.site-footer__logo-icon { color: var(--accent); }
.site-footer__brand-name { color: #fff; font-size: 1.2rem; font-weight: 700; }
.site-footer__about { font-size: 0.85rem; line-height: 2.0; color: rgba(255,255,255,0.6); }
.site-footer__col-title { font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer__link-list { list-style: none; }
.site-footer__link-list li + li { margin-top: 10px; }
.site-footer__link { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: color var(--transition); }
.site-footer__link:hover { color: #fff; }
.site-footer__link svg { stroke: currentColor; fill: none; }
.site-footer__contact-list { list-style: none; }
.site-footer__contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.site-footer__contact-item + .site-footer__contact-item { margin-top: 12px; }
.site-footer__contact-item svg { stroke: var(--accent); fill: none; flex-shrink: 0; margin-top: 4px; }
.site-footer__contact-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--transition); }
.site-footer__contact-link:hover { color: #fff; }
.site-footer__contact-text { color: rgba(255,255,255,0.6); }
.site-footer__bottom { max-width: var(--container); margin: 48px auto 0; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.site-footer__copyright { }
.site-footer__tagline   { }

/* ── Responsive overrides for BEM ── */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-strip__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__hamburger { display: flex; }
  .stats-strip__grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-inline-start: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stat-item:nth-child(odd) { border-inline-end: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .contact-band__grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .hero__content { max-width: 100%; padding-inline: 16px; }
  .section__header { margin-bottom: 32px; }
}

@media (max-width: 430px) {
  .hero__title { font-size: 1.6rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stat-item__number { font-size: 1.6rem; }
  .site-header__inner { padding: 0 16px; }
}

/* ============================================================
   STAGE 2 — BUTTON BEM VARIANTS
   ============================================================ */

.btn--primary {
  background: var(--primary);
  color: #ffffff;
}
.btn--primary:hover {
  background: #0f5566;
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ============================================================
   PAGE HERO — interior pages
   ============================================================ */

.page-hero {
  background: var(--primary);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,155,170,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.page-hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.page-hero .eyebrow {
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 10px;
}

/* ============================================================
   NOTICE / ALERT VARIANTS
   ============================================================ */

.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.notice svg { flex-shrink: 0; margin-top: 2px; }

.notice--success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  color: #065f46;
}
.notice--success a { color: #065f46; font-weight: 600; }

.notice--error {
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.22);
  color: #991b1b;
}

.notice--info {
  background: rgba(26,155,170,0.08);
  border: 1px solid rgba(26,155,170,0.2);
  color: var(--primary);
}
.notice--info a { color: var(--primary); font-weight: 600; }

.notice--warning {
  background: rgba(208,139,43,0.08);
  border: 1px solid rgba(208,139,43,0.25);
  color: #8A5B1A;
}
.notice--warning a { color: #8A5B1A; font-weight: 600; }

/* ============================================================
   SHOP — filter bar + product grid
   ============================================================ */

.shop-filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(20,105,122,0.10);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
}

.shop-filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-filter-bar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.shop-filter-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-light);
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.shop-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.shop-filter-btn--active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.shop-filter-btn--active:hover {
  color: #ffffff;
  background: #0f5566;
}

.shop-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

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

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

/* Product card */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(20,105,122,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img-link {
  display: block;
  overflow: hidden;
}

.product-card__img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 8px;
  flex: 1;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover { color: var(--primary); }

.product-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 14px;
}

.product-card__btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-section {
  padding: clamp(40px, 5vw, 72px) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.breadcrumb__link {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb__link:hover { color: var(--primary); }

.breadcrumb__sep { color: var(--text-light); font-size: 0.8rem; }

.breadcrumb__current { color: var(--text); font-weight: 500; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery__main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-light);
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-gallery__thumb {
  width: 72px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.product-gallery__thumb--active,
.product-gallery__thumb:hover {
  border-color: var(--primary);
}

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

/* Product info panel */
.product-info__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.product-info__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.product-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(20,105,122,0.10);
}

.product-info__price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--amber);
}

.product-info__per {
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-info__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 2.0;
  margin-bottom: 20px;
}

.product-info__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-info__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.product-info__features li svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

/* Add-to-cart form */
.product-add-form {
  padding-top: 24px;
  border-top: 1px solid rgba(20,105,122,0.10);
}

.product-add-form__row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.product-add-form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.product-add-form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Quantity stepper */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(20,105,122,0.20);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-stepper__btn {
  width: 40px;
  height: 42px;
  background: var(--bg-light);
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.qty-stepper__btn:hover { background: rgba(20,105,122,0.10); }

.qty-stepper__input {
  width: 56px;
  height: 42px;
  text-align: center;
  border: none;
  border-right: 1.5px solid rgba(20,105,122,0.15);
  border-left: 1.5px solid rgba(20,105,122,0.15);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-stepper__input::-webkit-inner-spin-button,
.qty-stepper__input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ============================================================
   CART & CHECKOUT
   ============================================================ */

.cart-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty__icon {
  display: block;
  margin: 0 auto 24px;
  color: rgba(20,105,122,0.25);
}

.cart-empty__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cart-empty__sub {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* Order success */
.order-success {
  text-align: center;
  padding: 80px 24px;
}

.order-success__icon {
  width: 72px;
  height: 72px;
  background: rgba(16,185,129,0.12);
  color: #065f46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.order-success__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.order-success__msg {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.order-success__sub {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Cart items */
.cart-items__title,
.checkout-form-wrap__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(20,105,122,0.10);
}

/* Cart table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cart-table th {
  text-align: right;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 1px solid rgba(20,105,122,0.12);
  background: var(--bg-light);
}

.cart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(20,105,122,0.07);
  vertical-align: middle;
  color: var(--text);
}

.cart-table tr:last-child td { border-bottom: none; }

.cart-table__center { text-align: center !important; }

.cart-table__name {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.cart-table__name:hover { text-decoration: underline; }

.cart-table__total-row td {
  font-weight: 700;
  padding-top: 16px;
  border-top: 2px solid rgba(20,105,122,0.12);
  border-bottom: none;
}

.cart-table__total-label { color: var(--text); font-size: 0.95rem; }

.cart-table__total-amount { color: var(--amber); font-size: 1.1rem; }

/* Checkout form card */
.checkout-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20,105,122,0.10);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.checkout-form__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(20,105,122,0.10);
  font-size: 0.95rem;
  color: var(--text);
}

.checkout-form__total strong {
  color: var(--amber);
  font-size: 1.15rem;
}

.checkout-form__submit { width: 100%; justify-content: center; }

/* ============================================================
   FORM FIELDS — shared
   ============================================================ */

.site-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.form-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.form-field__req {
  color: #e11d48;
  margin-right: 2px;
}

.form-field__input {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1.5px solid rgba(20,105,122,0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}

.form-field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,155,170,0.12);
  background: #fff;
}

.form-field__input::placeholder { color: var(--text-light); }

.form-field__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

.form-field--error .form-field__input {
  border-color: #e11d48;
}

.form-field__error {
  font-size: 0.8rem;
  color: #e11d48;
  font-weight: 500;
}

.form-field__hint {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info-col__title,
.contact-form-col__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(20,105,122,0.10);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(20,105,122,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item__detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  display: block;
  text-decoration: none;
}

a.contact-info-item__value:hover { color: var(--primary); }

.contact-form-col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,105,122,0.08);
}

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */

.account-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Auth card (login/register) */
.auth-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,105,122,0.08);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(20,105,122,0.10);
}

.auth-tab {
  flex: 1;
  padding: 16px 24px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
}

.auth-tab:hover { color: var(--primary); }

.auth-tab--active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(20,105,122,0.03);
}

.auth-card .notice,
.auth-card .site-form {
  padding: 24px 28px;
  margin-bottom: 0;
}

.auth-card .btn-block { margin-top: 8px; }

.auth-card__note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(20,105,122,0.08);
  margin: 0;
}

.auth-card__note a { color: var(--primary); font-weight: 600; }

/* Account dashboard */
.account-dashboard {
  max-width: 900px;
  margin: 0 auto;
}

.account-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(20,105,122,0.10);
  flex-wrap: wrap;
  gap: 16px;
}

.account-dashboard__welcome {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.role-badge {
  display: inline-block;
  background: rgba(208,139,43,0.12);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.account-orders__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-badge--pending  { background: rgba(208,139,43,0.12); color: #8A5B1A; }
.status-badge--confirmed { background: rgba(16,185,129,0.10); color: #065f46; }
.status-badge--completed { background: rgba(20,105,122,0.10); color: var(--primary); }
.status-badge--cancelled { background: rgba(220,38,38,0.07); color: #991b1b; }

/* Shared data table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20,105,122,0.10);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  text-align: right;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-light);
  border-bottom: 1px solid rgba(20,105,122,0.10);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(20,105,122,0.06);
  vertical-align: middle;
  color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(20,105,122,0.88) 0%, rgba(20,105,122,0.65) 50%, rgba(20,105,122,0.4) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.about-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.about-hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
}

/* History section */
.about-history {
  padding: clamp(56px, 7vw, 96px) 0;
}

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

.about-history__text p + p { margin-top: 16px; }
.about-history__text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2.1;
}

.about-history__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.about-history__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About stats */
.about-stats {
  background: var(--primary);
  padding: clamp(40px, 5vw, 64px) 0;
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-card__value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-card__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stats .stat-card {
  border-inline-start: 1px solid rgba(255,255,255,0.15);
}

.about-stats .stat-card:first-child { border-inline-start: none; }

/* About values */
.about-values {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,105,122,0.08);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.value-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.value-card__icon svg { stroke: currentColor; fill: none; }

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 2.0;
}

/* About CTA */
.about-cta {
  background: var(--primary);
  padding: clamp(56px, 7vw, 80px) 0;
}

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

.about-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-cta__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 32px;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.about-cta .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============================================================
   404 & ERROR SECTION
   ============================================================ */

.error-section {
  padding: clamp(80px, 12vw, 140px) 0;
}

.error-section__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.error-section__code {
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: rgba(20,105,122,0.12);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.error-section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-section__msg {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.error-section__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.error-section__links {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
}

.error-section__links p { margin-bottom: 12px; }

.error-section__links ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.error-section__links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.error-section__links a:hover { text-decoration: underline; }

/* ============================================================
   STAGE 2 RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-form-wrap { max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-history__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid--sm { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shop-filter-bar { top: 0; position: static; }
  .product-add-form__actions { flex-direction: column; }
  .product-add-form__actions .btn { width: 100%; justify-content: center; }
  .contact-form-col { padding: 24px 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .auth-card { max-width: 100%; border-radius: var(--radius-md); }
  .error-section__actions { flex-direction: column; align-items: center; }
  .about-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-grid--sm { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats .stat-card { border-inline-start: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .about-stats .stat-card:nth-child(odd) { border-inline-end: 1px solid rgba(255,255,255,0.15); }
  .cart-layout { gap: 24px; }
  .product-add-form__row { flex-direction: column; align-items: flex-start; }
}
