/* ============================================================
   EURO RENTAL CARS LLC — Global Design System
   Karzone-inspired dark luxury theme
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #141414;
  --bg-card: #1A1A1A;
  --bg-elevated: #1E1E1E;
  --accent: #CDFF00;
  --accent-hover: #E5FF4D;
  --accent-dim: rgba(205, 255, 0, 0.12);
  --text-primary: #FFFFFF;
  --text-secondary: #999999;
  --text-muted: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1400px;
  --container-px: clamp(20px, 5vw, 80px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-normal: 400ms;
  --dur-slow: 800ms;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section-pad { padding: var(--section-pad) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Typography --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.body-lg { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.7; color: var(--text-secondary); }
.body-md { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }
.label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.accent-text { color: var(--accent); }
.counter-text {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur-normal) var(--ease-out);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: #000;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(205,255,0,0.3);
}
.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-secondary);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--accent); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Section Header --- */
.section-header { margin-bottom: clamp(40px, 6vw, 80px); }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--dur-normal) var(--ease-out);
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--container-px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo svg { width: 160px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-normal) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 24px; font-size: 11px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  padding: 100px var(--container-px) 40px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  color: var(--text-secondary);
  transition: color var(--dur-fast);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 20px; width: fit-content; }

/* ============================================================
   HERO — Video
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-counter {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-counter::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--container-px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  display: block;
}
/* Decorative circle */
.hero-circle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(120px, 15vw, 200px);
  height: clamp(120px, 15vw, 200px);
  border-radius: 50%;
  border: 1px solid rgba(205, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle-inner {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(205,255,0,0.4);
}
@media (max-width: 768px) {
  .hero-circle { display: none; }
  .hero-scroll { display: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { padding: var(--section-pad) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.about-image:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.about-badge-text { font-size: 12px; color: var(--text-secondary); }
.about-content { max-width: 520px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; }
.about-content .btn { margin-top: 16px; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .about-content { max-width: 100%; }
}

/* ============================================================
   FEATURED VEHICLE SHOWCASE
   ============================================================ */
.showcase { padding: var(--section-pad) 0; overflow: hidden; }
.showcase-inner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.showcase-brand-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.showcase-brand-bg span {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  user-select: none;
}
.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 0 var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.showcase-info { display: flex; flex-direction: column; gap: 20px; }
.showcase-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.showcase-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}
.showcase-info p { color: var(--text-secondary); font-size: 15px; }
.showcase-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.showcase-image:hover img { transform: scale(1.03); }
.showcase-specs { display: flex; flex-direction: column; gap: 16px; }
.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--dur-fast);
}
.spec-card:hover { border-color: var(--border-hover); }
.spec-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-icon svg { width: 18px; height: 18px; color: var(--accent); }
.spec-value {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--text-primary);
}
.spec-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.showcase-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--accent);
}
.showcase-price span { font-size: 14px; color: var(--text-muted); font-family: var(--font-body); }
.showcase-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.showcase-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  color: var(--text-secondary);
}
.showcase-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.showcase-nav svg { width: 18px; height: 18px; }
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-specs { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-brand-bg span { display: none; }
}

/* ============================================================
   BRAND LOGOS
   ============================================================ */
.brands { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 40px 0;
}
.brand-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  transition: all var(--dur-normal) var(--ease-out);
  color: var(--text-muted);
}
.brand-item:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--text-primary);
  transform: translateY(-4px);
}
.brand-item span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brands-cta { text-align: center; }

/* ============================================================
   CUSTOMER SERVICE SECTION
   ============================================================ */
.service-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.service-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.7) 100%);
}
.service-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.service-content h2 { margin-bottom: 24px; }
.service-content p { margin-bottom: 32px; }

/* ============================================================
   CONTACT STRIP (homepage)
   ============================================================ */
.contact-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: var(--text-primary); font-weight: 500; }

/* ============================================================
   VEHICLE CARD
   ============================================================ */
.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
}
.vehicle-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.vehicle-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.vehicle-card:hover .vehicle-card-image img { transform: scale(1.06); }
.vehicle-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
}
.vehicle-card:hover .vehicle-card-overlay { opacity: 1; }
.vehicle-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.vehicle-card-body { padding: 20px; }
.vehicle-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}
.vehicle-card-meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.vehicle-card-meta span + span::before {
  content: '·';
  margin-right: 12px;
}
.vehicle-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.vehicle-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vehicle-card-price strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
}
.vehicle-card-price span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FLEET GRID
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 560px; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-label .req { color: var(--accent); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--dur-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(205,255,0,0.1);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-terms {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.program-card.reverse { direction: rtl; }
.program-card.reverse > * { direction: ltr; }
.program-card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.program-card-image:hover img { transform: scale(1.04); }
.program-card-content { max-width: 480px; }
.program-card-content h2 { margin-bottom: 20px; }
.program-card-content p { margin-bottom: 16px; }
@media (max-width: 768px) {
  .program-card { grid-template-columns: 1fr; }
  .program-card.reverse { direction: ltr; }
  .program-card-content { max-width: 100%; }
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-content { max-width: 840px; }
.policy-section { margin-bottom: 48px; }
.policy-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 10px;
}
.policy-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.policy-section ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
}
.contact-detail-item:hover { border-color: var(--border-hover); }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--text-primary); }
.contact-detail-value a:hover { color: var(--accent); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-container iframe { display: block; }
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand svg { width: 160px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); max-width: 260px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-fast);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color var(--dur-fast); }
.footer-bottom a:hover { color: var(--accent); }
.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.back-to-top:hover { color: var(--accent); }
.back-to-top svg { width: 16px; height: 16px; }
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MEMBERSHIP CARD
   ============================================================ */
.membership-card {
  background: linear-gradient(135deg, #1A1A1A 0%, #0f0f0f 100%);
  border: 1px solid rgba(205,255,0,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,255,0,0.08) 0%, transparent 70%);
}
.membership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ============================================================
   PRICE RANGE
   ============================================================ */
.price-range-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.price-range-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 3px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}
.price-range-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-elevated), var(--accent));
  border-radius: 3px;
}
.price-range-labels { display: flex; justify-content: space-between; }
.price-range-labels span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-secondary);
}
.price-range-labels span.max { color: var(--accent); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE NAV
   ============================================================ */
@media (max-width: 1024px) { .nav-links { gap: 20px; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }
.highlight-box {
  background: var(--accent-dim);
  border: 1px solid rgba(205,255,0,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

/* ============================================================
   CREDIT BAR — Creatively Grow
   ============================================================ */
.credit-bar {
  text-align: center;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.credit-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.credit-link:hover { text-decoration: underline; }
.credit-heart {
  color: #e0302a;
  display: inline-block;
  animation: heartbeat 1.2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.3); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.2); }
  56%       { transform: scale(1); }
}
