@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #C9A84C; --gold-light: #E8C97A; --gold-dim: #8B6B2A;
  --black: #050505; --charcoal: #0D0D0D; --dark: #111111; --card: #161616;
  --border: rgba(201,168,76,0.2); --border-bright: rgba(201,168,76,0.5);
  --white: #F5F0E8; --muted: rgba(245,240,232,0.5);
  --font-display: 'Cormorant Garamond', serif; --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 24px 60px; display: flex; justify-content: space-between; align-items: center; background: linear-gradient(to bottom, rgba(5,5,5,0.97), transparent); transition: background 0.4s, border-bottom 0.4s, padding 0.4s; }
nav.scrolled { background: rgba(5,5,5,0.98); border-bottom: 1px solid var(--border); padding: 16px 60px; }
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.12em; color: var(--white); text-decoration: none; flex-shrink: 0; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; font-weight: 500; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 28px; font-family: var(--font-body); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-weight: 500; text-decoration: none; display: inline-block; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin: -8px; -webkit-tap-highlight-color: transparent; }
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(5,5,5,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; padding: 80px 24px 40px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(28px, 8vw, 42px); color: var(--white); text-decoration: none; transition: color 0.3s; text-align: center; padding: 4px 0; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--gold); }
.mobile-menu-cta { margin-top: 12px; background: var(--gold) !important; color: var(--black) !important; font-family: var(--font-body) !important; font-size: 12px !important; letter-spacing: 0.25em; text-transform: uppercase; padding: 16px 48px !important; font-weight: 700 !important; }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 28px; color: var(--muted); cursor: pointer; background: none; border: none; line-height: 1; padding: 8px; -webkit-tap-highlight-color: transparent; }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 60px 90px; background: var(--charcoal); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,168,76,0.06), transparent); }
.page-hero-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 8vw, 80px); font-weight: 300; line-height: 0.95; position: relative; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 13px; color: var(--muted); line-height: 2; max-width: 520px; margin-top: 20px; position: relative; }

/* ── SECTIONS ── */
section { padding: 100px 60px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 300; line-height: 1.05; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 14px; line-height: 2; color: var(--muted); max-width: 500px; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--black); padding: 16px 44px; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; font-weight: 700; transition: all 0.3s; text-decoration: none; display: inline-block; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 16px 44px; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; border: 1px solid rgba(245,240,232,0.3); cursor: pointer; font-weight: 500; transition: all 0.3s; text-decoration: none; display: inline-block; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 32px 60px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(30px, 5vw, 48px); font-weight: 300; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.65); font-weight: 600; }

/* ── REVIEWS ── */
.stars { color: var(--gold); letter-spacing: 2px; }
.review-card { background: var(--card); padding: 40px 32px; border: 1px solid var(--border); transition: border-color 0.3s; }
.review-card:hover { border-color: var(--border-bright); }
.review-quote { font-family: var(--font-display); font-size: 60px; line-height: 0.6; color: var(--gold); opacity: 0.3; margin-bottom: 16px; }
.review-text { font-family: var(--font-display); font-size: 15px; line-height: 1.9; color: rgba(245,240,232,0.85); margin-bottom: 24px; font-style: italic; }
.review-author { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.review-event { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ── FLEET CARD ── */
.fleet-card { background: var(--card); border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; overflow: hidden; position: relative; }
.fleet-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fleet-card-body { padding: 28px 24px; }
.fleet-card-icon { font-size: 48px; margin-bottom: 14px; display: block; opacity: 0.7; }
.fleet-card-name { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 400; margin-bottom: 6px; }
.fleet-card-cap { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.fleet-card-desc { font-size: 13px; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }
.fleet-features { list-style: none; }
.fleet-features li { font-size: 12px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.fleet-features li::before { content: '—'; color: var(--gold); font-size: 10px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 60px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-text-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.trust-text-val { font-size: 12px; color: var(--white); margin-top: 2px; font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--charcoal); border-top: 1px solid var(--border); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: var(--muted); line-height: 2; max-width: 280px; }
.footer-heading { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.3s; padding: 2px 0; display: inline-block; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 11px; color: var(--muted); }

/* ── FLOATING BUTTONS ── */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35); animation: whatsappPulse 2.5s ease-in-out infinite; transition: transform 0.3s; -webkit-tap-highlight-color: transparent; }
.whatsapp-btn:hover, .whatsapp-btn:active { transform: scale(1.12); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip { position: absolute; right: 64px; background: var(--card); border: 1px solid var(--border); color: var(--white); font-size: 11px; padding: 8px 14px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: all 0.3s; pointer-events: none; font-family: var(--font-body); }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.phone-float { position: fixed; bottom: 24px; right: 92px; z-index: 999; width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s, background 0.3s; box-shadow: 0 4px 16px rgba(201,168,76,0.3); -webkit-tap-highlight-color: transparent; }
.phone-float:hover, .phone-float:active { transform: scale(1.12); background: var(--gold-light); }
.phone-float svg { width: 24px; height: 24px; fill: var(--black); }
.phone-tooltip { position: absolute; right: 64px; background: var(--card); border: 1px solid var(--border); color: var(--white); font-size: 11px; padding: 8px 14px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: all 0.3s; pointer-events: none; font-family: var(--font-body); }
.phone-float:hover .phone-tooltip { opacity: 1; transform: translateX(0); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; } .reveal-d4 { transition-delay: 0.4s; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes whatsappPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ============================
   TABLET — max 960px
============================ */
@media (max-width: 960px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 24px; }
  .page-hero { padding: 130px 24px 70px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 28px 24px; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-bar { gap: 24px; padding: 28px 24px; justify-content: flex-start; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .phone-float { bottom: 20px; right: 86px; width: 54px; height: 54px; }
  .whatsapp-tooltip, .phone-tooltip { display: none; }
}

/* ============================
   MOBILE — max 600px
============================ */
@media (max-width: 600px) {
  .logo { font-size: 18px; }
  section { padding: 56px 18px; }
  .page-hero { padding: 110px 18px 56px; }

  /* Stats 2×2 */
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 20px 18px; gap: 16px; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 8px; letter-spacing: 0.12em; }

  /* Titles */
  .section-title { font-size: clamp(26px, 8vw, 38px); }
  .section-body { font-size: 13px; }
  .page-hero-title { font-size: clamp(34px, 10vw, 52px); }

  /* Full-width buttons */
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    font-size: 11px;
  }

  /* Trust badges stack vertically */
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 18px; }

  /* Fleet */
  .fleet-card-body { padding: 22px 18px; }

  /* Reviews */
  .review-card { padding: 32px 20px; }
  .review-text { font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 56px 18px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }

  /* Floating buttons */
  .whatsapp-btn { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .phone-float { bottom: 16px; right: 76px; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .phone-float svg { width: 20px; height: 20px; }
}

/* ============================
   SMALL PHONES — max 380px
============================ */
@media (max-width: 380px) {
  nav { padding: 14px 16px; }
  .logo { font-size: 16px; letter-spacing: 0.08em; }
  section { padding: 48px 16px; }
  footer { padding: 48px 16px 28px; }
  .stats-bar { padding: 18px 16px; gap: 12px; }
  .stat-num { font-size: 26px; }
  .whatsapp-btn { right: 14px; bottom: 14px; width: 46px; height: 46px; }
  .phone-float { right: 68px; bottom: 14px; width: 46px; height: 46px; }
}

/* ============================================================
   COMPREHENSIVE INLINE-STYLE MOBILE FIX — all pages
   Overrides hardcoded paddings and grid columns on phones
============================================================ */

@media (max-width: 960px) {
  /* Inline-styled section paddings */
  section[style*="padding:80px 60px"],
  section[style*="padding: 80px 60px"],
  section[style*="padding:100px 60px"],
  section[style*="padding: 100px 60px"] { padding: 60px 24px !important; }

  /* 3-col inline grids to 1-col */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* 4-col inline grids to 2-col */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Fleet 2-col to 1-col */
  .vehicle-section { grid-template-columns: 1fr !important; }
  .vehicle-photo { min-height: 240px !important; }
  .vehicle-info { padding: 32px 24px !important; }

  /* About/drivers heavy gap 2-col to 1-col */
  div[style*="gap:100px"], div[style*="gap: 100px"] { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* CTA button rows stacked */
  div[style*="gap:16px"][style*="justify-content:center"],
  div[style*="gap: 16px"][style*="justify-content: center"] { flex-direction: column !important; align-items: center !important; }
  div[style*="gap:16px"][style*="justify-content:center"] > a,
  div[style*="gap: 16px"][style*="justify-content: center"] > a { text-align: center !important; max-width: 320px !important; }
}

@media (max-width: 600px) {
  /* Section paddings */
  section[style*="100px 60px"], section[style*="80px 60px"] { padding: 56px 18px !important; }
  section[style*="60px"] { padding-left: 18px !important; padding-right: 18px !important; }

  /* Services big card padding */
  div[style*="padding:52px 44px"], div[style*="padding: 52px 44px"] { padding: 32px 20px !important; }

  /* Stretch limo span-2 card to span-1 */
  .fp-card[style*="grid-column"] { grid-column: span 1 !important; }
  .fp-card[style*="grid-column"] img { height: 220px !important; object-position: center center !important; }
  .fp-card[style*="grid-column"] .fp-info { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }

  /* Fleet vehicle */
  .vehicle-section { grid-template-columns: 1fr !important; }
  .vehicle-photo { min-height: 200px !important; }
  .vehicle-info { padding: 28px 18px !important; }
  .vehicle-name { font-size: 26px !important; }
  .vehicle-specs { grid-template-columns: 1fr 1fr !important; }

  /* Hero buttons stack */
  .hero-actions { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .hero-actions a { width: 80vw; max-width: 300px; text-align: center; }

  /* Gold CTA sections */
  section[style*="background:var(--gold)"], section[style*="background: var(--gold)"] { padding: 56px 18px !important; }
  section[style*="background:var(--gold)"] div[style*="display:flex"],
  section[style*="background: var(--gold)"] div[style*="display:flex"] { flex-direction: column !important; align-items: center !important; }
  section[style*="background:var(--gold)"] a[style*="padding:16px 44px"],
  section[style*="background: var(--gold)"] a[style*="padding:16px 44px"] { text-align: center !important; padding: 18px 24px !important; }

  /* Heavy gap grids */
  div[style*="gap:100px"], div[style*="gap: 100px"] { grid-template-columns: 1fr !important; gap: 36px !important; }
  div[style*="gap:60px"], div[style*="gap: 60px"] { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Reviews 4-col rating to 2x2 */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2,1fr) !important; gap: 2px !important; }

  /* Reviews 3-col to 1-col */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; gap: 12px !important; }

  .stats-bar { padding: 20px 18px !important; }
  img { max-width: 100%; height: auto; }
}

@media (max-width: 380px) {
  .vehicle-name { font-size: 22px !important; }
  .vehicle-specs { grid-template-columns: 1fr !important; }
  .hero-actions a { width: 90vw; }
  div[style*="padding:52px 44px"], div[style*="padding: 52px 44px"] { padding: 24px 16px !important; }
  div[style*="padding:40px 36px"], div[style*="padding: 40px 36px"] { padding: 24px 16px !important; }
}

html, body { overflow-x: hidden; }
