/*
  Surrey Limo — Minimal, modern, responsive styles
  - System font stack for speed and reliability
  - CSS variables for quick theming
*/

:root {
  --bg: #0e0f12;
  --surface: #13151a;
  --muted: #1a1d24;
  --text: #e9edf1;
  --subtle: #b8c0cc;
  --primary: #c8a04a; /* champagne gold */
  --primary-2: #b38b33;
  --accent: #4face2;
  --ok: #39c07f;
  --danger: #ff6b6b;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(200,160,74,.12), transparent 60%),
              radial-gradient(1000px 500px at -10% -10%, rgba(79,172,226,.08), transparent 60%),
              var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--primary); }
svg { display: block; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; padding: 8px 12px; background: var(--surface); border-radius: 8px; outline: 2px solid var(--primary); }

/* Layout helpers */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 30%) , var(--bg); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { font-size: 32px; margin: 0 0 8px; letter-spacing: .3px; }
.section-header p { margin: 0; color: var(--subtle); }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15,16,22,.7); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .3px; }
.brand-mark { width: 28px; height: 28px; }
.brand-text { font-size: 18px; }

.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a { opacity: .9; padding: 8px 10px; border-radius: 8px; }
.site-nav a:hover { background: rgba(255,255,255,.04); }
.site-nav .cta-link { color: var(--bg); background: linear-gradient(135deg, var(--primary), var(--primary-2)); padding: 10px 14px; border-radius: 10px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--text); cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px auto; transition: .2s ease; }

/* Hero */
.hero { padding: 96px 0 64px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(28px, 4vw, 46px); line-height: 1.2; margin: 0 0 12px; }
.hero-copy p { color: var(--subtle); margin-top: 0; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; margin-top: 18px; }
.trust-bullets { display: flex; gap: 18px; padding: 0; margin: 16px 0 0; list-style: none; color: var(--subtle); flex-wrap: wrap; }

.limo-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 22px; }
.limo-illustration { height: 240px; border-radius: 12px; background:
  radial-gradient(220px 120px at 20% 20%, rgba(200,160,74,.35), transparent 60%),
  radial-gradient(300px 180px at 80% 10%, rgba(79,172,226,.25), transparent 60%),
  linear-gradient(135deg, #1d212a, #12141a);
  position: relative;
}
.limo-illustration::after {
  content: ""; position: absolute; inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 200" fill="none" stroke="%23e9edf1" stroke-opacity="0.2" stroke-width="3"><path d="M40 120h80c10-20 30-30 50-30h160c30 0 60 10 80 30h90c10 0 20 10 20 20 0 10-8 18-18 18H416c-10 10-26 14-40 14H212c-18 0-36-8-46-22H58c-14 0-26-10-26-22 0-10 8-16 16-16Z"/></svg>') center/contain no-repeat;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,.35));
}

/* Cards / Grids */
.cards { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin: 8px 0; font-size: 18px; }
.card p { margin: 0; color: var(--subtle); }

.media { display: grid; grid-template-columns: 1fr; gap: 12px; }
.media-img { border-radius: 10px; aspect-ratio: 16/10; box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 24px rgba(0,0,0,.35); }
.placeholder { background: linear-gradient(135deg, rgba(200,160,74,.2), rgba(79,172,226,.2)); position: relative; overflow: hidden; }
.placeholder::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient( 120deg, rgba(255,255,255,.04) 0 2px, transparent 2px 6px ); mix-blend-mode: overlay; }
.placeholder.sedan { background: linear-gradient(135deg, rgba(79,172,226,.25), rgba(200,160,74,.18)); }
.placeholder.suv { background: linear-gradient(135deg, rgba(200,160,74,.25), rgba(79,172,226,.2)); }
.placeholder.stretch { background: linear-gradient(135deg, rgba(200,160,74,.2), rgba(200,160,74,.1)); }
.placeholder.sprinter { background: linear-gradient(135deg, rgba(79,172,226,.22), rgba(79,172,226,.12)); }

/* Icons */
.icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); position: relative; }
.icon::after { content: ""; position: absolute; inset: 0; margin: auto; width: 26px; height: 26px; opacity: .85; }
.i-airport::after { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c8a04a"><path d="M21 16v2H3v-2h18zM4.2 13.6l6.1-1.6L7 3.5l2-.5 5.3 6.3 6.5-1.7 1 2.5-7.8 2 .7 4.4-2.1.5-3.2-3.7-4.7 1.2-.5-1.9z"/></svg>') center/contain no-repeat; }
.i-briefcase::after { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c8a04a"><path d="M9 7V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2h3a2 2 0 0 1 2 2v3H2V9a2 2 0 0 1 2-2h5zm2-2h2v2h-2V5zm-9 9h20v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3z"/></svg>') center/contain no-repeat; }
.i-rings::after { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c8a04a"><path d="M8 10a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm8-6a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm-8 8a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm8-6a3 3 0 1 0 0 6 3 3 0 0 0 0-6z"/></svg>') center/contain no-repeat; }
.i-night::after { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c8a04a"><path d="M21 12.8A8.5 8.5 0 1 1 11.2 3 7 7 0 1 0 21 12.8z"/></svg>') center/contain no-repeat; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.price-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.price-card h3 { margin: 0 0 6px; }
.price { font-size: 28px; font-weight: 700; color: var(--primary); margin: 6px 0 12px; }
.price-card ul { margin: 0 0 14px; padding-left: 18px; color: var(--subtle); }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.form { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  background: #0f1218; color: var(--text); outline: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(200,160,74,.18); }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.form-hint { margin: 0; color: var(--subtle); }

.contact-card { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.contact-card h3 { margin-top: 0; }
.small { font-size: 13px; }
.dim { color: var(--subtle); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; background: rgba(0,0,0,.2); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; opacity: .95; }
.footer-brand img { width: 22px; height: 22px; }
.footer-nav { display: flex; gap: 12px; justify-content: center; }
.legal { text-align: right; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); transition: transform .06s ease, filter .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); filter: brightness(.96); }
.btn-primary { color: var(--bg); background: linear-gradient(135deg, var(--primary), var(--primary-2)); border: none; }
.btn-ghost { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 64px 0 auto 0; height: auto; padding: 12px; background: rgba(15,16,22,.98); border-bottom: 1px solid rgba(255,255,255,.08); transform-origin: top; transform: scaleY(0); transition: .15s ease; display: grid; gap: 8px; }
  .site-nav.open { transform: scaleY(1); }
  .nav-toggle { display: inline-block; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .legal { text-align: center; }
}

