/* LimoRyder Global Styles */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c878;
  --gold-dark: #a07830;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --gray-bg: #f5f5f5;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition); padding: 0.25rem 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black) !important; padding: 0.5rem 1.25rem !important; border-radius: var(--radius); font-weight: 600 !important; border-bottom: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 50%, #1a1408 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 100px 2rem 4rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px; border-radius: 50px; color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 .gold { color: var(--gold); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 2rem; border-radius: var(--radius); font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--dark); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.btn-dark:hover { background: var(--dark2); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Quote Widget ──────────────────────────────────────── */
.quote-widget {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  margin: 3rem auto 0;
}
.quote-widget h3 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.quote-widget h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group.full { grid-column: 1 / -1; }
.input-group label { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.input-group input, .input-group select {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.95rem; transition: var(--transition); width: 100%;
}
.input-group input:focus, .input-group select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.input-group input::placeholder { color: rgba(255,255,255,0.35); }
.input-group select option { background: var(--dark); color: var(--white); }
.quote-btn { width: 100%; margin-top: 1rem; padding: 1rem; font-size: 1.1rem; }

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--dark); }
.section-gray { background: var(--gray-bg); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .tag { display: inline-block; color: var(--gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ── Vehicle Cards ────────────────────────────────────── */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.vehicle-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid #f0f0f0;
  position: relative;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.vehicle-card.popular::before { content: 'MOST POPULAR'; position: absolute; top: 16px; right: -30px; background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 4px 40px; transform: rotate(45deg); }
.vehicle-card-img { height: 180px; background: linear-gradient(135deg, var(--dark), var(--dark2)); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.vehicle-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); }
.vehicle-card-body { padding: 1.5rem; }
.vehicle-card-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.vehicle-card-body .examples { font-size: 0.8rem; color: var(--gray); margin-bottom: 1rem; }
.vehicle-specs { display: flex; gap: 1rem; margin-bottom: 1rem; }
.vehicle-spec { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--gray); }
.vehicle-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 1.25rem; }
.vehicle-price .amount { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.vehicle-price .unit { font-size: 0.85rem; color: var(--gray); }
.vehicle-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; }
.vehicle-features li { font-size: 0.875rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.vehicle-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── Stats ─────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 2rem 1rem; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── Markets ───────────────────────────────────────────── */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.market-card { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.market-card.coming-soon { border-left-color: var(--gray); opacity: 0.7; }
.market-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.badge-active { background: rgba(34,197,94,0.15); color: #16a34a; }
.badge-soon { background: rgba(156,163,175,0.2); color: var(--gray); }
.market-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.market-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.city-tag { background: var(--gray-bg); color: var(--dark); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; }

/* ── Booking Steps ─────────────────────────────────────── */
.steps-nav { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; flex-wrap: wrap; }
.step-item { display: flex; align-items: center; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-bg); border: 2px solid #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--gray); transition: var(--transition); }
.step-num.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-num.done { background: var(--dark); border-color: var(--dark); color: var(--white); }
.step-line { width: 60px; height: 2px; background: #e0e0e0; }
.step-line.done { background: var(--gold); }
.step-label { font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 6px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-card { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid #e0e0e0; border-radius: var(--radius);
  font-size: 0.95rem; color: var(--dark); transition: var(--transition);
  background: var(--white); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Price Breakdown ──────────────────────────────────── */
.price-card { background: var(--dark); border-radius: 16px; padding: 1.75rem; color: var(--white); }
.price-card h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.price-row.total { border-bottom: none; border-top: 2px solid var(--gold); margin-top: 0.5rem; padding-top: 1rem; font-size: 1.2rem; font-weight: 700; }
.price-row.total .amount { color: var(--gold); }
.price-row .surcharge { color: #f59e0b; }
.price-row .included { color: #4ade80; }

/* ── Flight Card ──────────────────────────────────────── */
.flight-card { background: var(--dark); border-radius: 16px; padding: 1.75rem; color: var(--white); border: 1px solid rgba(201,168,76,0.2); }
.flight-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.flight-airline { font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.flight-status { padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.status-scheduled { background: rgba(59,130,246,0.2); color: #60a5fa; }
.status-active { background: rgba(34,197,94,0.2); color: #4ade80; }
.status-delayed { background: rgba(245,158,11,0.2); color: #fbbf24; }
.status-landed { background: rgba(34,197,94,0.2); color: #4ade80; }
.status-cancelled { background: rgba(239,68,68,0.2); color: #f87171; }
.flight-route { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.flight-endpoint { text-align: center; flex: 1; }
.flight-endpoint .code { font-size: 1.8rem; font-weight: 800; }
.flight-endpoint .city { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.flight-endpoint .time { font-size: 1.1rem; font-weight: 600; margin-top: 4px; }
.flight-arrow { color: var(--gold); font-size: 1.5rem; }
.flight-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.flight-detail { text-align: center; }
.flight-detail .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.flight-detail .value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

/* ── Chat Widget ──────────────────────────────────────── */
.chat-fab { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; }
.chat-btn { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; cursor: pointer; font-size: 1.5rem; box-shadow: var(--shadow-gold); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.chat-btn:hover { transform: scale(1.1); }
.chat-window { position: fixed; bottom: 5.5rem; right: 2rem; width: 360px; max-height: 520px; background: var(--white); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.2); display: none; flex-direction: column; z-index: 998; overflow: hidden; }
.chat-window.open { display: flex; }
.chat-header { background: var(--dark); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.chat-header-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.chat-header-status { color: #4ade80; font-size: 0.75rem; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1.2rem; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-msg { max-width: 80%; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.9rem; line-height: 1.5; }
.chat-msg.bot { background: var(--gray-bg); color: var(--dark); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--gold); color: var(--black); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-area { padding: 1rem; border-top: 1px solid #f0f0f0; display: flex; gap: 8px; }
.chat-input { flex: 1; border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.9rem; outline: none; }
.chat-input:focus { border-color: var(--gold); }
.chat-send { background: var(--gold); color: var(--black); border: none; border-radius: 8px; padding: 0.65rem 1rem; cursor: pointer; font-weight: 700; }
.chat-quick-btns { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 1rem 0.75rem; }
.chat-quick { background: transparent; border: 1px solid var(--gold); color: var(--gold-dark); border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; cursor: pointer; transition: var(--transition); }
.chat-quick:hover { background: var(--gold); color: var(--black); }

/* ── Footer ────────────────────────────────────────────── */
footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; margin-bottom: 0.5rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-bottom .phone-link { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── Floating CTA ─────────────────────────────────────── */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--dark); border-top: 1px solid rgba(201,168,76,0.3); padding: 1rem 2rem; display: none; justify-content: space-between; align-items: center; }
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-cta p { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.sticky-cta .sticky-btns { display: flex; gap: 0.75rem; }
.sticky-cta .call-btn { background: none; border: 1px solid var(--gold); color: var(--gold); padding: 0.5rem 1rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.sticky-cta .book-btn { background: var(--gold); color: var(--black); padding: 0.5rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; text-decoration: none; }

/* ── Alert Banner ─────────────────────────────────────── */
.alert-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); text-align: center; padding: 0.6rem 2rem; font-size: 0.875rem; font-weight: 600; }
.alert-banner a { color: var(--black); font-weight: 700; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 2rem; gap: 1.25rem; border-top: 1px solid rgba(201,168,76,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .chat-window { width: calc(100vw - 2rem); right: 1rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 1rem 8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Utilities ────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.loading { opacity: 0.6; pointer-events: none; }
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Services Grid ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.service-card { text-align: center; padding: 2rem 1rem; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); transition: var(--transition); text-decoration: none; color: var(--dark); }
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.15); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--gray); }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--black); font-weight: 700; font-size: 1.1rem; }
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-city { font-size: 0.8rem; color: var(--gray); }

/* ── How It Works ──────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.how-step { padding: 2rem 1rem; }
.how-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.how-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.how-step p { font-size: 0.875rem; color: var(--gray); }
.section-dark .how-step h3 { color: var(--white); }

/* ── Page Hero ─────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--black), var(--dark2)); padding: 130px 2rem 5rem; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 1.5rem; font-size: 0.875rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
