/* ============================================
   Anytime Rent A Car — Brand Theme (Yellow + Blue)
   ============================================ */

:root {
  --brand-yellow: #ffd60a;
  --brand-yellow-bright: #ffdf2b;
  --brand-yellow-dark: #f4c430;
  --brand-yellow-soft: #fff7cc;
  --brand-blue: #0d47a1;
  --brand-blue-light: #1e88e5;
  --brand-blue-pale: #e3f2fd;
  --brand-blue-dark: #062a6e;

  --bg-page: #ffffff;
  --bg-soft: #fffbe6;
  --bg-section: #f8f9fb;
  --bg-dark: #0a0e1a;
  --bg-card: #ffffff;
  --bg-elevated: #fafbfd;

  --text-primary: #0a0e1a;
  --text-secondary: #4a5160;
  --text-muted: #8a90a0;
  --text-on-dark: #ffffff;
  --text-on-yellow: #0a0e1a;

  --border: rgba(13, 71, 161, 0.08);
  --border-strong: rgba(13, 71, 161, 0.15);
  --border-yellow: rgba(255, 214, 10, 0.4);

  --shadow-sm: 0 4px 12px rgba(13, 71, 161, 0.08);
  --shadow-md: 0 16px 40px rgba(13, 71, 161, 0.1);
  --shadow-lg: 0 24px 64px rgba(13, 71, 161, 0.15);
  --shadow-yellow: 0 12px 32px rgba(255, 214, 10, 0.35);
  --shadow-blue: 0 12px 32px rgba(30, 136, 229, 0.35);

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1280px;
  --section-pad: clamp(4rem, 10vw, 8rem);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yellow-text {
  background: linear-gradient(135deg, var(--brand-yellow-dark) 0%, var(--brand-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--brand-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.loader-logo span { color: var(--brand-yellow); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--brand-yellow);
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(500%); }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(255, 214, 10, 0.5);
  border: 2px solid var(--brand-blue);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  color: var(--brand-blue);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.logo-text small {
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover { color: var(--brand-blue); }

.nav-menu a.active {
  color: var(--brand-blue);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-yellow);
  color: var(--brand-blue) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: var(--transition);
  box-shadow: var(--shadow-yellow);
  border: 2px solid var(--brand-yellow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--brand-blue);
  color: var(--brand-yellow) !important;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  box-shadow: var(--shadow-yellow);
  border-color: var(--brand-yellow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
}

.btn-secondary {
  background: white;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

.btn-secondary:hover {
  background: var(--brand-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-yellow-soft) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 204, 0.85) 50%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.65;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom { to { transform: scale(1.15); } }

.hero-glow { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand-yellow);
  border: 2px solid var(--brand-blue);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
  position: relative;
}

.hero-eyebrow .pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: pulse-ring 1.6s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--brand-blue-dark);
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--brand-yellow);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 600px;
  padding-top: 2rem;
  border-top: 2px solid var(--border-yellow);
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
  font-weight: 600;
}

.hero-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--brand-blue);
  border-radius: 12px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--brand-yellow-dark);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0.3; }
}

/* ===== Booking Widget ===== */
.booking-widget {
  position: relative;
  margin-top: -80px;
  z-index: 5;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.booking-form {
  max-width: var(--max-width);
  margin: 0 auto;
  background: white;
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  box-shadow: var(--shadow-lg);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
}

.field-group input,
.field-group select {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2);
}

/* ===== Featured Cars / Fleet ===== */
.fleet-section {
  background: var(--bg-section);
  position: relative;
}

.fleet-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.fleet-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.fleet-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-section);
}

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

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

.fleet-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.5);
}

.fleet-badge.luxury { background: var(--brand-blue); color: var(--brand-yellow); }
.fleet-badge.suv { background: var(--brand-blue); color: white; }
.fleet-badge.economy { background: #4caf50; color: white; }

.fleet-card-body { padding: 1.5rem; }

.fleet-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.fleet-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.fleet-specs {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 1.25rem;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.fleet-spec svg { width: 16px; height: 16px; color: var(--brand-blue); }

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet-price { display: flex; flex-direction: column; }

.fleet-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brand-blue);
  font-weight: 700;
}

.fleet-price small { font-size: 0.75rem; color: var(--text-muted); }

.fleet-card-btn {
  background: var(--brand-yellow);
  border: 2px solid var(--brand-yellow);
  color: var(--brand-blue);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.fleet-card-btn:hover {
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-color: var(--brand-blue);
}

/* ===== Services ===== */
.services-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.1) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.service-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-blue);
}

.service-card:hover .service-icon {
  background: var(--brand-blue);
  transform: rotate(-5deg) scale(1.05);
}

.service-card:hover .service-icon svg { color: var(--brand-yellow); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== About ===== */
.about-section {
  position: relative;
  background: var(--bg-page);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--brand-yellow);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 71, 161, 0.7) 100%);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--brand-yellow);
  border: 2px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brand-blue);
  z-index: 1;
}

.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.about-badge .badge-text small { font-size: 0.85rem; opacity: 0.85; }

.about-content h2 { margin-bottom: 1.5rem; }

.about-content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-soft);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.feature-list li:hover {
  border-color: var(--brand-yellow);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg { width: 22px; height: 22px; color: var(--brand-yellow); }

.feature-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-text p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

/* ===== Vision Mission ===== */
.vm-section {
  background: var(--brand-blue);
  color: white;
  position: relative;
  overflow: hidden;
}

.vm-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.vm-section .section-header h2 { color: white; }
.vm-section .section-header p { color: rgba(255,255,255,0.85); }
.vm-section .section-eyebrow { color: var(--brand-yellow); }
.vm-section .section-eyebrow::before { background: var(--brand-yellow); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.vm-card:hover {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  transform: translateY(-6px);
}

.vm-card:hover h3, .vm-card:hover p { color: var(--brand-blue); }

.vm-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.vm-card-icon svg { width: 30px; height: 30px; color: var(--brand-blue); }

.vm-card:hover .vm-card-icon { background: var(--brand-blue); }
.vm-card:hover .vm-card-icon svg { color: var(--brand-yellow); }

.vm-card h3 { font-size: 2rem; margin-bottom: 1rem; color: white; }
.vm-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

/* ===== Testimonials ===== */
.testimonials-section { position: relative; background: var(--bg-section); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--brand-yellow);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 2px dashed var(--border-yellow);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-yellow);
  border: 2px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

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

.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; color: var(--brand-yellow-dark); }

/* ===== CTA Section ===== */
.cta-section { position: relative; padding: var(--section-pad) 0; overflow: hidden; }

.cta-card {
  position: relative;
  background: var(--brand-yellow);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
  border: 3px solid var(--brand-blue);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.15), transparent 70%);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
}

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

.cta-card .section-eyebrow { color: var(--brand-blue); }
.cta-card .section-eyebrow::before { background: var(--brand-blue); }

.cta-card h2 {
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.cta-card p {
  font-size: 1.15rem;
  color: var(--brand-blue-dark);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-actions .btn-primary {
  background: var(--brand-blue);
  color: var(--brand-yellow);
  border-color: var(--brand-blue);
}

.cta-actions .btn-primary:hover {
  background: white;
  color: var(--brand-blue);
  border-color: white;
}

.cta-actions .btn-secondary {
  background: white;
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.cta-actions .btn-secondary:hover {
  background: var(--brand-blue);
  color: white;
}

/* ===== Footer ===== */
.footer {
  background: var(--brand-blue);
  color: rgba(255,255,255,0.85);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { color: white; }
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.7); }

.footer-brand p {
  color: rgba(255,255,255,0.75);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: white;
}

.footer-social a:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--brand-blue);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--brand-yellow);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover { color: var(--brand-yellow); transform: translateX(4px); }

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-bottom-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); }
.footer-bottom-links a:hover { color: var(--brand-yellow); }

/* ===== Page Header ===== */
.page-header {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(255, 214, 10, 0.25), transparent 60%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-yellow);
}

.page-header > .container { position: relative; z-index: 1; }

.page-header h1 { margin-bottom: 1rem; color: white; }

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .section-eyebrow { color: var(--brand-yellow); }
.page-header .section-eyebrow::before { background: var(--brand-yellow); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1.5rem;
}

.breadcrumb a:hover { color: var(--brand-yellow); }
.breadcrumb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-yellow);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--brand-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.3), transparent 70%);
}

.contact-info-card > * { position: relative; }

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-info-card > p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-list li { display: flex; gap: 1rem; }

.contact-list .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .ci-icon svg { width: 20px; height: 20px; color: var(--brand-blue); }

.contact-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  font-weight: 700;
}

.contact-list p, .contact-list a {
  color: white;
  font-size: 1rem;
}

.contact-list a:hover { color: var(--brand-yellow); }

.contact-form {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-form > p { color: var(--text-secondary); margin-bottom: 1rem; }

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

.contact-form textarea {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  color: var(--text-primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  min-height: 140px;
  transition: var(--transition-fast);
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2);
}

.contact-form button { align-self: flex-start; }

.map-wrap {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--brand-yellow);
  height: 460px;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== WhatsApp Floating ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg { width: 32px; height: 32px; color: white; }

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-menu { gap: 1.5rem; }
  .booking-form { grid-template-columns: 1fr 1fr 1fr; }
  .booking-form .field-group:last-of-type { grid-column: span 2; }
  .booking-form button { grid-column: span 3; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: white;
    border-left: 4px solid var(--brand-yellow);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active { transform: translateX(0); }
  .menu-toggle { display: flex; z-index: 1001; }
  .nav-cta { display: none; }
  .booking-widget { margin-top: -50px; }
  .booking-form { grid-template-columns: 1fr; padding: 1.5rem; }
  .booking-form button { grid-column: span 1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .vm-card { padding: 2rem 1.5rem; }
  .contact-info-card, .contact-form { padding: 1.75rem; }
}

/* ===== Page-specific tweaks ===== */
/* Filter buttons (fleet page) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  background: white;
  border: 2px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}
.filter-btn:hover { border-color: var(--brand-yellow); color: var(--brand-blue); }
.filter-btn.active {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-yellow);
}
.fleet-card.hidden { display: none; }

/* Service feature blocks */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.service-feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--brand-yellow);
}
.service-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.service-feature:hover .service-feature-img img { transform: scale(1.05); }
.service-feature h2 { margin: 1rem 0 1.25rem; }
.service-feature > div > p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 1.5rem; }
.service-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
.service-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}
.service-points svg { width: 18px; height: 18px; color: var(--brand-blue); flex-shrink: 0; }
@media (max-width: 1024px) {
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .service-points { grid-template-columns: 1fr; }
}

/* Timeline (about page) */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--brand-yellow);
  transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 1.5rem 2.5rem; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-yellow);
  border: 3px solid var(--brand-blue);
  box-shadow: 0 0 0 4px white, 0 4px 12px rgba(13, 71, 161, 0.2);
}
.timeline-item:nth-child(odd)::before { right: -9px; }
.timeline-item:nth-child(even)::before { left: -9px; }
.timeline-item .year {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.timeline-item p { color: var(--text-secondary); font-size: 0.95rem; }
@media (max-width: 768px) {
  .timeline::before { left: 8px; }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 1rem 1rem 1rem 2.5rem;
  }
  .timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before {
    left: 0; right: auto;
  }
}

/* Values (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 32px; height: 32px; color: var(--brand-blue); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; }
.value-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Stats banner (about page) */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  background: var(--brand-yellow);
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.12), transparent 70%);
}
.stats-banner > * { position: relative; z-index: 1; }
.stats-banner .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-banner .stat-label {
  color: var(--brand-blue-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* Quick contact tiles (contact page) */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.quick-contact {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.quick-contact:hover {
  transform: translateY(-4px);
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.quick-contact .qc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-contact .qc-icon svg { width: 26px; height: 26px; color: var(--brand-blue); }
.quick-contact strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
}
.quick-contact p, .quick-contact a {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}
.quick-contact a:hover { color: var(--brand-blue); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item[open] { border-color: var(--brand-yellow); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
  font-weight: 700;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--brand-yellow-dark); }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.7; }

/* Contact form success */
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--brand-yellow-soft);
  border: 2px solid var(--brand-yellow);
  color: var(--brand-blue-dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}
