
:root {
  --white: #ffffff;
  --black: #000000;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-dark: #0c0c0c;
  --bg-darker: #060606;

  --gold: #F5C71A;
  --gold-hover: #e0b400;
  --gold-dim: rgba(245, 199, 26, 0.06);
  --gold-border: rgba(245, 199, 26, 0.18);
  --gold-glow: rgba(245, 199, 26, 0.25);

  --text: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --section-py: 100px;
  --section-py-sm: 64px;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 20px rgba(245,199,26,0.25);
  --shadow-gold-lg: 0 8px 40px rgba(245,199,26,0.30);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.35s var(--ease);
  --transition-fast: all 0.2s var(--ease);
  --transition-slow: all 0.5s var(--ease);

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 199, 26, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

::selection {
  background: var(--gold);
  color: var(--bg-dark);
}

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

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-sm {
  padding: var(--section-py-sm) 0;
  position: relative;
}

.heading-xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.heading-lg {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-top: 16px;
}

.divider-left {
  position: relative;
  padding-left: 20px;
}

.divider-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.95rem;
}

/* Button on dark backgrounds */
.cta .btn-outline,
.hero .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(0, 0, 0, 0.25);
}

.cta .btn-outline:hover,
.hero .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,199,26,0.08);
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky, 200);
  padding: 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}

.nav-logo-text span {
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.nav-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
  background: none;
  border: none;
  color: var(--white);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition-fast);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
  fill: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.mobile-close:hover svg { fill: var(--gold); }

.hero-form-group {
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,12,12,0.85) 0%, rgba(12,12,12,0.6) 50%, rgba(12,12,12,0.8) 100%),
    url('../img/ex.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* Hero Left */
.hero-left { max-width: 600px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(245,199,26,0.08);
  border: 1px solid rgba(245,199,26,0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.line-gold {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero Booking Card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.hero-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════
   FORMS (Global)
   ════════════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,199,26,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ef4444;
  background: rgba(239,68,68,0.04);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-check-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 4px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.check-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
}

.form-check.has-error .check-label {
  color: #dc2626;
}

.field-error {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #dc2626;
}

.form-captcha {
  margin: 18px 0 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
}

.form-captcha-widget {
  min-height: 66px;
}

.form-captcha-note {
  margin: 10px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-message[hidden] {
  display: none;
}

.form-message.success {
  background: rgba(34,197,94,0.08);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.2);
}

.form-message.error {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════ */
.services {
  background: var(--bg);
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  color: var(--gold);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.service-card:hover .service-icon svg { fill: var(--bg-dark); }

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold);
  gap: 10px;
}

.service-link svg { 
  width: 18px;
  height: 18px;
  transition: var(--transition-fast); }

/* ════════════════════════════════════════════════
   TRUST SECTION
   ════════════════════════════════════════════════ */
.trust {
  background: var(--bg-alt);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-content { max-width: 500px; }

.trust-heading { margin-bottom: 20px; }

.trust-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.trust-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}

.trust-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Stats */
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Trust Features */
.trust-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-feature {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.trust-feature:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
}

.trust-feature:hover .feature-icon {
  background: var(--gold);
  color: var(--bg-dark);
}

.trust-feature:hover .feature-icon svg { fill: var(--bg-dark); }

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   AREAS SECTION
   ════════════════════════════════════════════════ */
.areas {
  background: var(--bg);
}

.areas-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.area-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

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

.area-card.main {
  background: var(--gold-dim);
  border-color: var(--gold-border);
}

.area-card.main:hover {
  box-shadow: var(--shadow-gold);
}

.area-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.area-icon svg {
  width: 28px;
  height: 28px;
}

.area-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.area-name.gold { color: var(--gold); }

.area-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   MAP SECTION
   ════════════════════════════════════════════════ */
.map-section {
  background: var(--bg-alt);
  padding: var(--section-py-sm) 0;
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.map-heading { margin-bottom: 16px; }

.map-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.map-locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.map-loc.primary {
  color: var(--gold);
  font-weight: 700;
}

.map-loc svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ════════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════════ */
.booking-section {
  background: var(--bg);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.booking-details .label { margin-bottom: 14px; }
.booking-details .heading-xl { margin-bottom: 16px; }
.booking-details .text-muted { margin-bottom: 28px; line-height: 1.7; }

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.booking-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.booking-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* Booking form container */
.booking-form-container {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.booking-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-alt);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-details .label { margin-bottom: 14px; }
.contact-details .heading-xl { margin-bottom: 16px; }

.contact-intro {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-hours {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.contact-hours h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hours h4 svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-hours-row:last-child { border-bottom: none; }

.contact-hours-row .day { font-weight: 500; }
.contact-hours-row .time { color: var(--gold); font-weight: 600; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════ */
.cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.75) 100%),
    url('../img/Transport_vip.jpg') center/cover no-repeat;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-heading {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.cta .divider { margin: 0 auto 28px; }

.cta .label { color: var(--gold); }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  transition: var(--transition);
}

.cta-phone:hover {
  color: var(--gold-hover);
  transform: scale(1.03);
}

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

.cta-sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

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

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

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darker);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.5);
}

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 300px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.social-btn:hover svg { fill: var(--bg-dark); }

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.45);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom-tag {
  color: rgba(255,255,255,0.3);
}

.footer-bottom-link,
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom-link {
  color: var(--gold);
  background: rgba(245,199,26,0.1);
  border-color: rgba(245,199,26,0.22);
}

.footer-bottom-link:hover {
  color: var(--bg-dark);
  background: var(--gold);
  transform: translateY(-1px);
}

.footer-admin-link {
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}

.footer-admin-link:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(245,199,26,0.08);
}

/* ════════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  z-index: 100;
}

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

.scroll-top:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-dark);
}

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* Animate on scroll - initial state */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="left"] {
  transform: translateX(-28px);
}

[data-animate="right"] {
  transform: translateX(28px);
}

[data-animate="scale"] {
  transform: scale(0.92);
}

/* Animated state */
[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered delays */
[d1] { transition-delay: 0.05s; }
[d2] { transition-delay: 0.15s; }
[d3] { transition-delay: 0.25s; }
[d4] { transition-delay: 0.35s; }
[d5] { transition-delay: 0.45s; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-card { max-width: 480px; }

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
    --section-py-sm: 48px;
  }

  .nav-links,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero > .container {
    padding-top: 60px;
    padding-bottom: 48px;
  }

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

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .hero-trust { flex-direction: column; gap: 12px; }

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

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

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

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

  .cta { padding: 60px 0; }

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

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

  .footer-bottom-links {
    justify-content: center;
  }

  .booking-form-container,
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

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

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

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

  .cta-phone { font-size: 1.3rem; }

  .form-check-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================================================================
   ABOUT PAGE — Additional Styles
   ================================================================ */

/* ── Page Hero Banner ── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.7) 50%, rgba(12,12,12,0.85) 100%),
    url('../img/se.jpg') center/cover no-repeat;
  z-index: 0;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero-content .label {
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero-title .text-gold { color: var(--gold); }

.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 28px;
}

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: 28px;
}

.breadcrumb-nav a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition-fast);
}

.breadcrumb-nav a:hover { color: var(--white); }

.breadcrumb-nav .sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-nav .current {
  color: rgba(255,255,255,0.5);
}

/* Gold underline accent */
.page-hero-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ── About Content Section ── */
.about-content {
  background: var(--bg);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Gold corner accent on image */
.about-image::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 100px;
  height: 100px;
  border-right: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 28px;
  font-style: italic;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--gold-dim);
  transform: translateX(6px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

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

.about-feature-text {
  flex: 1;
}

.about-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.about-feature-text span {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Stats Section ── */
.stats-section {
  background: var(--bg-alt);
}

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

.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

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

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* ── Values Section ── */
.values-section {
  background: var(--bg);
}

.values-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}

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

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(245,199,26,0.04), transparent);
  transition: height 0.4s var(--ease);
}

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

.value-card:hover::before {
  height: 100%;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

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

.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(245,199,26,0.3);
}

.value-card:hover .value-icon svg {
  fill: var(--bg-dark);
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── Timeline Section ── */
.timeline-section {
  background: var(--bg-alt);
}

.timeline-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(245,199,26,0.15));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 16px 0;
  display: flex;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 32px);
  text-align: right;
  justify-content: flex-end;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 32px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-alt);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(245,199,26,0.15);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 0 8px rgba(245,199,26,0.12);
}

.timeline-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--transition);
  width: 100%;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.timeline-year {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.timeline-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

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

.testimonials-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover::before {
  opacity: 1;
}

/* Quote icon */
.testimonial-quote {
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-quote svg {
  width: 32px;
  height: 32px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--gold);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Contact Section (About Page) ── */
.about-contact {
  background: var(--bg-alt);
}

.about-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-contact-info .label { margin-bottom: 14px; }

.about-contact-info .heading-xl { margin-bottom: 16px; }

.about-contact-intro {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card-item:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-card-text a:hover {
  color: var(--gold);
}

/* ── CTA Banner (About Page) ── */
.about-cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,12,12,0.92), rgba(12,12,12,0.78)),
    url('../img/Transport_vip.jpg') center/cover no-repeat;
  z-index: 0;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-inner .heading-xl {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.about-cta-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

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

.about-cta .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.about-cta .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,199,26,0.08);
}

/* ── Responsive for About Page ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img { height: 380px; }

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

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

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

  .about-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 72px;
  }

  .about-image img { height: 300px; }

  .about-image::after { display: none; }

  .timeline::before {
    left: 18px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 18px;
  }

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

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

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

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

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    text-align: center;
  }
}

/* ==========================================================================
   INNER SERVICE PAGES (City Taxi, Navette, etc.)
   ========================================================================== */

/* Hero Grid Layout for Services */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

.page-hero .hero-actions .btn {
  min-width: 220px;
  justify-content: center;
}

.page-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.page-hero-image {
  width: min(100%, 480px);
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.14);
}

.page-icon-box svg {
  width: 100%;
  max-width: 380px;
  color: var(--gold);
  opacity: 0.9;
  filter: drop-shadow(0 8px 30px rgba(245, 199, 26, 0.4));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.back-link:hover { color: var(--gold); }
.back-link svg { width: 18px; }

/* Page Content Structure */
.page-content {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* Features List inside Service Page */
.page-features-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.page-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-feature {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.page-feature:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.page-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.page-feature:hover .page-feature-icon {
  background: var(--gold);
  color: var(--bg-dark);
}

.page-feature-icon svg { width: 24px; }
.page-feature h4 { font-size: 1.1rem; margin-bottom: 8px; }
.page-feature p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Zones inside content */
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zone-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-alt);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

a.zone-tag:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

/* Sidebar Call to Action Box */
.page-cta-box {
  background: var(--bg-dark);
  color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.page-cta-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.page-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-cta-phone svg { width: 28px; }

.page-cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.page-cta-box .btn { width: 100%; margin-bottom: 12px; }

.page-cta-box .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.page-cta-box .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,199,26,0.1);
}

.page-zones {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.page-zones h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.page-zones .zone-tag {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.page-zones a.zone-tag:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* Service Inner Pages Responsive */
@media (max-width: 1024px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-visual { display: none; }
  .back-link { justify-content: center; }
  .page-hero-inner div[style*="display:flex"] { justify-content: center; }
  
  .page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-cta-box {
    position: static;
    margin-top: 20px;
  }
}

.legal-overview {
  background:
    radial-gradient(circle at top left, rgba(245,199,26,0.08), transparent 38%),
    var(--bg);
  padding-top: 72px;
  padding-bottom: 44px;
}

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

.legal-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.legal-card-highlight {
  background:
    linear-gradient(135deg, rgba(12,12,12,0.98), rgba(12,12,12,0.92)),
    var(--bg-dark);
  border-color: rgba(245,199,26,0.2);
  box-shadow: var(--shadow-xl);
}

.legal-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 18px;
}

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

.legal-card-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.legal-card h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.legal-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: inherit;
}

.legal-card a:hover {
  color: var(--gold);
}

.legal-card-highlight h2 {
  color: var(--white);
}

.legal-card-highlight p {
  color: rgba(255,255,255,0.68);
}

.legal-content {
  background: var(--bg-alt);
  padding-top: 40px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 320px;
  gap: 28px;
  align-items: start;
}

.legal-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-section-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.legal-section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-section-card > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
}

.legal-detail-block,
.legal-content-block {
  padding: 18px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.legal-content-block + .legal-content-block {
  margin-top: 16px;
}

.legal-detail-block h3,
.legal-content-block h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.legal-detail-block p,
.legal-content-block p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(245,199,26,0.1);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary) !important;
}

.legal-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-list li + li {
  margin-top: 10px;
}

.legal-numbered-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

.legal-numbered-list li {
  padding: 20px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.legal-numbered-list li + li {
  margin-top: 16px;
}

.legal-numbered-list strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 8px;
}

.legal-numbered-list p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-sidebar-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
}

.legal-sidebar-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.legal-sidebar-card nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-sidebar-card nav a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-sidebar-card nav a:hover {
  color: var(--bg-dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(4px);
}

.legal-sidebar-contact p {
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 18px;
}

.legal-sidebar .btn {
  width: 100%;
}

.legal-sidebar .btn + .btn {
  margin-top: 10px;
}

.legal-sidebar-contact .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}

.legal-sidebar-contact .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,199,26,0.08);
}

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

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

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .legal-overview {
    padding-top: 56px;
  }

  .legal-overview-grid,
  .legal-detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-section-card {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .legal-numbered-list li {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-bg,
  .page-hero-bg {
    transform: none !important;
  }
}
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #F5C71A; /* WhatsApp green vibe */
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .call-button {
    display: none;
  }
}
