/* ==========================================================================
   Yahya Gulf Transport Services — Bespoke Luxury Design System
   Subdomain: transport.yahyagulf.net
   Color System: Saudi Royal Emerald, Arabian Gold & Alabaster Glass
   ========================================================================== */

:root {
  --primary-deep: #04120B;
  --primary: #062316;
  --primary-mid: #0D3823;
  --primary-light: #134E32;
  --primary-surface: #102F20;
  
  --gold: #C8A951;
  --gold-light: #E0C472;
  --gold-bright: #F5DC8C;
  --gold-dark: #9F8236;
  --gold-glow: rgba(200, 169, 81, 0.25);
  --gold-glass: rgba(200, 169, 81, 0.12);

  --bg-dark: #071A11;
  --bg-darker: #030E08;
  --bg-alt: #0A2217;

  --card-glass: rgba(14, 42, 28, 0.78);
  --card-glass-hover: rgba(18, 54, 36, 0.92);
  --border-subtle: rgba(200, 169, 81, 0.18);
  --border-active: rgba(200, 169, 81, 0.55);

  --text-primary: #FFFFFF;
  --text-secondary: #D4DFD8;
  --text-muted: #8E9F94;
  --text-gold: #C8A951;

  --success: #10B981;
  --danger: #EF4444;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 30px rgba(200, 169, 81, 0.3);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-bn: 'Noto Sans Bengali', system-ui, sans-serif;
  --font-ar: 'Noto Sans Arabic', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(200, 169, 81, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(13, 56, 35, 0.4) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Multilingual Font Adaptation */
html[lang="bn"] body {
  font-family: var(--font-bn), var(--font-base);
}

html[lang="ar"] body {
  font-family: var(--font-ar), var(--font-base);
}

/* RTL Layout Mode */
[dir="rtl"] {
  text-align: right;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ─── Top Bar & Navigation ────────────────────────────────── */
.transport-topbar {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.85rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch-group {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 2px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--primary-deep);
}

/* ─── Dark/Light Theme Toggle Button ─────────────────────── */
.theme-toggle-btn {
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  touch-action: manipulation;
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--primary-deep);
  border-color: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
}

/* Main Navbar */
.transport-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 26, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  background: rgba(200, 169, 81, 0.08);
}

.btn-nav-call:hover {
  background: var(--gold);
  color: var(--primary-deep);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ─── Hero Section ────────────────────────────────────────── */
.transport-hero {
  position: relative;
  padding: 60px 0 90px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 18, 11, 0.75) 0%, rgba(7, 26, 17, 0.95) 100%);
  z-index: 1;
}

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

.hero-text-col {
  padding-right: 20px;
}

[dir="rtl"] .hero-text-col {
  padding-right: 0;
  padding-left: 20px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.hero-main-title span.text-gold {
  color: var(--gold);
  text-shadow: 0 0 25px rgba(200, 169, 81, 0.35);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 28px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.trust-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── Interactive Booking Engine Card ─────────────────────── */
.booking-engine-wrapper {
  background: var(--card-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(200, 169, 81, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking-header {
  margin-bottom: 20px;
}

.booking-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trip-type-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 18px;
}

.trip-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.trip-tab.active {
  background: var(--primary-light);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(4, 20, 13, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  background: rgba(4, 20, 13, 0.95);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A951' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

[dir="rtl"] select.form-control {
  background-position: left 12px center;
  padding-right: 14px;
  padding-left: 36px;
}

.recommend-badge {
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  display: none;
}

/* Live Calculated Fare Box */
.fare-calculator-banner {
  background: linear-gradient(135deg, rgba(16, 47, 32, 0.9) 0%, rgba(9, 29, 19, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fare-title-sub {
  display: flex;
  flex-direction: column;
}

.fare-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.fare-breakdown {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.fare-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 0 16px var(--gold-glow);
}

.btn-confirm-booking {
  width: 100%;
  background: linear-gradient(135deg, #C8A951 0%, #B6923C 100%);
  color: var(--primary-deep);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
  transition: var(--transition);
}

.btn-confirm-booking:hover {
  background: linear-gradient(135deg, #DFBF68 0%, #C8A951 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 81, 0.55);
}

.booking-privacy-micro {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ─── Section Header ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Pillars Section ─────────────────────────────────────── */
.pillars-section {
  padding: 70px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.pillar-card {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── Fleet Showcase Section ──────────────────────────────── */
.fleet-section {
  padding: 90px 0;
}

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

.fleet-card {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fleet-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: #0D261B;
  overflow: hidden;
}

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

.fleet-card:hover .fleet-image {
  transform: scale(1.05);
}

.fleet-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 18, 11, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

[dir="rtl"] .fleet-card-badge {
  left: auto;
  right: 14px;
}

.fleet-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-category {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.fleet-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.fleet-specs-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.spec-item i {
  color: var(--gold);
}

.fleet-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-pricing-box {
  display: flex;
  flex-direction: column;
}

.pricing-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
}

.btn-fleet-book {
  background: var(--gold);
  color: var(--primary-deep);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-fleet-book:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

/* ─── Routes & Rate Card Section ──────────────────────────── */
.routes-section {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.table-responsive-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--card-glass);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

[dir="rtl"] .rates-table {
  text-align: right;
}

.rates-table th, .rates-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rates-table th {
  background: rgba(4, 18, 11, 0.9);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rates-table tr:hover td {
  background: rgba(200, 169, 81, 0.04);
}

.route-cell-title {
  font-weight: 600;
  color: #FFFFFF;
}

.route-cell-dur {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-pill {
  font-weight: 700;
  color: var(--gold-light);
}

.btn-table-select {
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-table-select:hover {
  background: var(--gold);
  color: var(--primary-deep);
}

/* ─── Ziyarat Section ─────────────────────────────────────── */
.ziyarat-section {
  padding: 90px 0;
}

.ziyarat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ziyarat-card {
  background: var(--card-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ziyarat-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ziyarat-list {
  list-style: none;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.ziyarat-list li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ─── How It Works Section ────────────────────────────────── */
.how-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

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

.how-card {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.how-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.how-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── Testimonials Section ────────────────────────────────── */
.testimonials-section {
  padding: 90px 0;
}

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

.testimonial-card {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 14px;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ─── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  padding: 90px 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.02rem;
  color: #FFFFFF;
}

.faq-icon {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 22px 20px;
}

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(16, 50, 33, 0.9) 0%, rgba(6, 26, 17, 0.95) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.cta-banner-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold-lg {
  background: var(--gold);
  color: var(--primary-deep);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-gold-lg:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline-lg {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--border-gold);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-outline-lg:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ─── Footer ──────────────────────────────────────────────── */
.transport-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Developer Credit Mini Dot */
.dev-credit-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dev-credit-dot {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1px solid rgba(200, 169, 81, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dev-credit-dot:hover, .dev-credit-dot.active {
  border-color: var(--gold);
  transform: scale(1.2);
}

.dot-core {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.developer-credit-popup {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: #061F13;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  z-index: 100;
}

[dir="rtl"] .developer-credit-popup {
  right: auto;
  left: 0;
}

.developer-credit-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.developer-link {
  color: var(--gold-light);
  font-weight: 700;
}

/* ─── Floating WhatsApp Button ────────────────────────────── */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

[dir="rtl"] .floating-whatsapp-btn {
  right: auto;
  left: 24px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ─── Sticky Mobile Action Bar ────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(4, 18, 11, 0.96);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-sticky-inner {
  display: flex;
  gap: 12px;
}

.mobile-bar-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-bar-book {
  background: var(--gold);
  color: var(--primary-deep);
}

.mobile-bar-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

/* ─── Mobile Navigation Drawer ────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-darker);
  border-left: 1px solid var(--border-gold);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

[dir="rtl"] .mobile-drawer {
  right: auto;
  left: -320px;
  border-left: none;
  border-right: 1px solid var(--border-gold);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

[dir="rtl"] .mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.drawer-nav a:hover {
  color: var(--gold);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ─── Responsive Media Queries ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text-col {
    padding-right: 0;
    text-align: center;
  }

  [dir="rtl"] .hero-text-col {
    padding-left: 0;
  }

  .hero-trust-bar {
    justify-content: center;
  }

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

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

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

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

  .navbar-nav, .btn-nav-call {
    display: none;
  }

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

  .hero-main-title {
    font-size: 2rem;
  }

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

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

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

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

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

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

  .mobile-sticky-bar {
    display: block;
  }

  .floating-whatsapp-btn {
    bottom: 74px;
  }

  body {
    padding-bottom: 60px;
  }

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

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

/* ==========================================================================
   Light Mode Luxury Theme
   ========================================================================== */
body.light-mode {
  --primary-deep: #0D3823;
  --primary: #114B2E;
  --primary-mid: #1A603C;
  --primary-light: #247A4D;
  --primary-surface: #E8F3EC;
  
  --gold: #A88632;
  --gold-light: #B8963D;
  --gold-bright: #947424;
  --gold-dark: #6F5415;
  --gold-glow: rgba(168, 134, 50, 0.2);
  --gold-glass: rgba(168, 134, 50, 0.1);

  --bg-dark: #F7FAF8;
  --bg-darker: #FFFFFF;
  --bg-alt: #EDF3EF;

  --card-glass: rgba(255, 255, 255, 0.95);
  --card-glass-hover: #FFFFFF;
  --border-subtle: rgba(13, 56, 35, 0.14);
  --border-active: rgba(168, 134, 50, 0.7);

  --text-primary: #071C10;
  --text-secondary: #264230;
  --text-muted: #5A7564;
  --text-gold: #947424;

  --shadow-sm: 0 4px 12px rgba(13, 56, 35, 0.08);
  --shadow-md: 0 10px 25px rgba(13, 56, 35, 0.12);
  --shadow-lg: 0 18px 45px rgba(13, 56, 35, 0.16);
  --shadow-gold: 0 6px 20px rgba(168, 134, 50, 0.22);

  background-color: #F7FAF8;
  color: #071C10;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(168, 134, 50, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(17, 75, 46, 0.05) 0%, transparent 50%);
}

body.light-mode .transport-topbar {
  background: #FFFFFF;
  border-bottom-color: rgba(13, 56, 35, 0.1);
}

body.light-mode .topbar-left {
  color: #264230;
}

body.light-mode .lang-switch-group {
  background: #E8F3EC;
  border-color: rgba(13, 56, 35, 0.15);
}

body.light-mode .lang-btn {
  color: #5A7564;
}

body.light-mode .lang-btn.active, 
body.light-mode .lang-btn:hover {
  background: var(--gold);
  color: #FFFFFF;
}

body.light-mode .theme-toggle-btn {
  background: rgba(168, 134, 50, 0.12);
  border-color: rgba(168, 134, 50, 0.3);
  color: var(--gold-dark);
}

body.light-mode .theme-toggle-btn:hover {
  background: var(--gold);
  color: #FFFFFF;
}

body.light-mode .transport-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .brand-name {
  color: #071C10;
}

body.light-mode .nav-link {
  color: #264230;
}

body.light-mode .nav-link:hover, 
body.light-mode .nav-link.active {
  color: var(--gold);
}

body.light-mode .btn-nav-call {
  background: rgba(168, 134, 50, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

body.light-mode .btn-nav-call:hover {
  background: var(--gold);
  color: #FFFFFF;
}

body.light-mode .mobile-nav-toggle {
  color: #071C10;
  border-color: rgba(13, 56, 35, 0.15);
}

body.light-mode .hero-bg-overlay {
  background: linear-gradient(180deg, rgba(247, 250, 248, 0.88) 0%, rgba(237, 243, 239, 0.97) 100%);
}

body.light-mode .hero-main-title {
  color: #071C10;
}

body.light-mode .hero-main-title span.text-gold {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(168, 134, 50, 0.2);
}

body.light-mode .hero-desc {
  color: #264230;
}

body.light-mode .hero-trust-bar {
  border-top-color: rgba(13, 56, 35, 0.12);
}

body.light-mode .trust-text {
  color: #5A7564;
}

body.light-mode .booking-engine-wrapper {
  background: #FFFFFF;
  border-color: rgba(168, 134, 50, 0.35);
  box-shadow: 0 15px 40px rgba(13, 56, 35, 0.12);
}

body.light-mode .booking-title {
  color: #071C10;
}

body.light-mode .booking-subtitle {
  color: #5A7564;
}

body.light-mode .trip-type-tabs {
  background: #EDF3EF;
  border-color: rgba(13, 56, 35, 0.12);
}

body.light-mode .trip-tab {
  color: #5A7564;
}

body.light-mode .trip-tab.active {
  background: var(--primary);
  color: #FFFFFF;
}

body.light-mode .form-label {
  color: #071C10;
}

body.light-mode .form-control {
  background: #F7FAF8;
  border-color: rgba(13, 56, 35, 0.2);
  color: #071C10;
}

body.light-mode .form-control:focus {
  background: #FFFFFF;
  border-color: var(--gold);
}

body.light-mode .recommend-badge {
  background: rgba(168, 134, 50, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

body.light-mode .fare-calculator-banner {
  background: linear-gradient(135deg, #0D3823 0%, #062316 100%);
  border-color: var(--gold);
}

body.light-mode .section-title {
  color: #071C10;
}

body.light-mode .section-subtitle {
  color: #264230;
}

body.light-mode .pillar-card {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

body.light-mode .pillar-title {
  color: #071C10;
}

body.light-mode .pillar-desc {
  color: #264230;
}

body.light-mode .fleet-card {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .fleet-name {
  color: #071C10;
}

body.light-mode .fleet-specs-row {
  border-top-color: rgba(13, 56, 35, 0.1);
  border-bottom-color: rgba(13, 56, 35, 0.1);
}

body.light-mode .spec-item {
  color: #264230;
}

body.light-mode .fleet-desc {
  color: #4A6654;
}

body.light-mode .fleet-footer {
  border-top-color: rgba(13, 56, 35, 0.1);
}

body.light-mode .pricing-val {
  color: var(--gold-dark);
}

body.light-mode .table-responsive-wrapper {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .rates-table th {
  background: #E8F2EC;
  color: #071C10;
  border-bottom-color: rgba(13, 56, 35, 0.15);
}

body.light-mode .rates-table td {
  border-bottom-color: rgba(13, 56, 35, 0.08);
}

body.light-mode .route-cell-title {
  color: #071C10;
}

body.light-mode .route-cell-dur {
  color: #5A7564;
}

body.light-mode .price-pill {
  color: var(--gold-dark);
}

body.light-mode .btn-table-select {
  background: rgba(168, 134, 50, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}

body.light-mode .btn-table-select:hover {
  background: var(--gold);
  color: #FFFFFF;
}

body.light-mode .ziyarat-card {
  background: #FFFFFF;
  border-color: rgba(168, 134, 50, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .ziyarat-title {
  color: #071C10;
}

body.light-mode .ziyarat-card p,
body.light-mode .ziyarat-list li {
  color: #264230;
}

body.light-mode .how-card {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

body.light-mode .how-title {
  color: #071C10;
}

body.light-mode .how-desc {
  color: #264230;
}

body.light-mode .testimonial-card {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

body.light-mode .testimonial-quote {
  color: #264230;
}

body.light-mode .testimonial-author {
  color: #071C10;
}

body.light-mode .faq-item {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
}

body.light-mode .faq-question {
  color: #071C10;
}

body.light-mode .faq-answer {
  color: #264230;
}

body.light-mode .mobile-drawer {
  background: #FFFFFF;
  border-color: rgba(168, 134, 50, 0.3);
}

body.light-mode .drawer-header {
  border-bottom-color: rgba(13, 56, 35, 0.1);
}

body.light-mode .drawer-close {
  color: #071C10;
}

body.light-mode .drawer-nav a {
  color: #264230;
}

body.light-mode .drawer-nav a:hover {
  color: var(--gold-dark);
}

body.light-mode .privacy-card {
  background: #FFFFFF;
  border-color: rgba(168, 134, 50, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .privacy-title {
  color: #071C10;
}

body.light-mode .privacy-section h3 {
  color: var(--gold-dark);
}

body.light-mode .privacy-section p,
body.light-mode .privacy-section ul li {
  color: #264230;
}

/* ==========================================================================
   Interactive Booking Modal Popup
   ========================================================================== */
.booking-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: 92%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  z-index: 2501;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--gold-glow);
}

body.light-mode .booking-modal {
  background: #FFFFFF;
  border-color: rgba(168, 134, 50, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

body.light-mode .modal-close-btn {
  background: #EDF3EF;
  color: #071C10;
  border-color: rgba(13, 56, 35, 0.15);
}

[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 16px;
}

.modal-close-btn:hover {
  background: var(--gold);
  color: var(--primary-deep);
  transform: rotate(90deg);
}

/* Modal Car Header Banner */
.modal-vehicle-header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(200, 169, 81, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}

body.light-mode .modal-vehicle-header {
  background: #EAF4EE;
  border-color: rgba(168, 134, 50, 0.35);
}

.modal-car-thumb-wrapper {
  width: 130px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: #0D261B;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-car-info {
  display: flex;
  flex-direction: column;
}

.modal-car-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

body.light-mode .modal-car-badge {
  color: var(--gold-dark);
}

.modal-car-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.modal-car-specs {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Services Grid */
.services-section {
  padding: 85px 0;
  background: var(--bg-alt);
}

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

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

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

.service-card {
  background: var(--card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

body.light-mode .service-card {
  background: #FFFFFF;
  border-color: rgba(13, 56, 35, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 16px;
}

body.light-mode .service-icon-box {
  color: var(--gold-dark);
}

.service-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

body.light-mode .service-category {
  color: var(--gold-dark);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

body.light-mode .service-card-features {
  border-top-color: rgba(13, 56, 35, 0.08);
}

.service-card-features li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

body.light-mode .service-card-features li i {
  color: var(--gold-dark);
}

.btn-service-book {
  background: rgba(200, 169, 81, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-top: auto;
  width: 100%;
}

body.light-mode .btn-service-book {
  color: var(--gold-dark);
  background: rgba(168, 134, 50, 0.12);
}

.btn-service-book:hover {
  background: var(--gold);
  color: var(--primary-deep);
}


