/* =====================================================
   FIRST CLASS CAR & LIMO SERVICE
   Premium black & gold theme — NYC luxury livery
   ===================================================== */

:root {
  --black: #0a0a0b;
  --black-2: #111113;
  --panel: #16161a;
  --panel-2: #1d1d22;
  --line: rgba(200, 160, 74, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold: #c8a04a;
  --gold-2: #e7c87a;
  --gold-bright: #f3dd9b;
  --gold-deep: #9a7a33;
  --gold-grad: linear-gradient(135deg, #f3dd9b 0%, #c8a04a 45%, #9a7a33 100%);

  --white: #f6f5f2;
  --muted: #b7b4ad;
  --muted-2: #8b8881;

  --max: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gold) var(--black-2); }

/* ---------- Gold scrollbar (WebKit) ---------- */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb {
  background: var(--gold-grad);
  border-radius: 10px;
  border: 3px solid var(--black-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }
::-webkit-scrollbar-corner { background: var(--black-2); }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: 0.01em; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad); color: #1a1407;
  box-shadow: 0 12px 30px rgba(200, 160, 74, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(200, 160, 74, 0.45); }
.btn-ghost {
  background: transparent; color: var(--gold-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold-2); background: rgba(200,160,74,0.08); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(10,10,11,0.95) 62%, rgba(10,10,11,0.55));
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.98);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 80px; height: auto; max-height: 80px; object-fit: contain; display: block; border-radius: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .b1 { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em; }
.brand-text .b2 { font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-2); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold-grad); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  display: flex; border: 1px solid var(--line); border-radius: 50px; overflow: hidden;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
}
.lang-toggle button {
  background: transparent; color: var(--muted-2); border: none; cursor: pointer;
  padding: 7px 13px; transition: all 0.3s; font-family: var(--sans); font-weight: 700;
}
.lang-toggle button.active { background: var(--gold-grad); color: #1a1407; }
.nav-cta { display: inline-flex; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--gold-2); transition: all 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 96px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) contrast(1.05); }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 75% 10%, rgba(200,160,74,0.16), transparent 55%),
    linear-gradient(90deg, rgba(8,8,9,0.95) 0%, rgba(8,8,9,0.78) 45%, rgba(8,8,9,0.45) 100%),
    linear-gradient(0deg, var(--black) 2%, transparent 40%);
}
.hero-inner { max-width: 720px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); letter-spacing: 0.01em; margin: 18px 0 22px; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 30px; margin-top: 54px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge .ic {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold-2);
}
.hero-badge .ic svg { width: 20px; height: 20px; }
.hero-badge .tx { font-size: 0.82rem; line-height: 1.3; }
.hero-badge .tx b { display: block; color: var(--white); font-size: 0.92rem; }
.hero-badge .tx span { color: var(--muted-2); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

.divider-line { display: inline-flex; align-items: center; gap: 14px; color: var(--gold-2); margin-bottom: 12px; }
.divider-line::before, .divider-line.both::after {
  content: ""; width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-line.both::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Value props ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 42px 34px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.value-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-deep); opacity: 0.5; }
.value-card .ic { width: 54px; height: 54px; color: var(--gold-2); margin-bottom: 22px; }
.value-card h3 { font-size: 1.7rem; margin-bottom: 12px; text-transform: capitalize; }
.value-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  border: 1px solid var(--line-soft);
}
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); filter: brightness(0.62) grayscale(0.2); }
.service-card:hover img { transform: scale(1.08); }
.service-card .sc-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,9,0.95) 8%, rgba(8,8,9,0.2) 65%, transparent); }
.service-card .sc-body { position: relative; padding: 30px; z-index: 2; }
.service-card .sc-ic { width: 38px; height: 38px; color: var(--gold-2); margin-bottom: 14px; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background:
    linear-gradient(rgba(8,8,9,0.86), rgba(8,8,9,0.92)),
    url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?auto=format&fit=crop&w=1600&q=70") center/cover fixed;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
.stat .l { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fleet-card {
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.4s var(--ease);
}
.fleet-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.fleet-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 0.7s var(--ease); }
.fleet-card:hover img { transform: scale(1.07); }
.fleet-card .fc-body { padding: 26px 28px 30px; }
.fleet-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.fleet-card .fc-cat { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); }
.fleet-card ul { list-style: none; margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-card li { font-size: 0.78rem; color: var(--muted); border: 1px solid var(--line-soft); padding: 5px 12px; border-radius: 50px; }

/* ---------- Rates ---------- */
.rates-wrap {
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table thead th {
  background: var(--gold-grad); color: #1a1407; font-family: var(--sans);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 20px 22px; text-align: center;
}
.rates-table thead th:first-child { text-align: left; }
.rates-table tbody td { padding: 20px 22px; text-align: center; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
.rates-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--white); }
.rates-table tbody tr:hover { background: rgba(200,160,74,0.05); }
.rates-table .dest { display: flex; align-items: center; gap: 10px; }
.rates-table .dest svg { width: 18px; height: 18px; color: var(--gold-2); }
.rates-table tbody td .price { color: var(--gold-bright); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }

.rate-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.route-card {
  display: flex; align-items: center; gap: 20px; padding: 26px 30px;
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line); border-radius: var(--radius);
}
.route-card .ic { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-2); flex-shrink: 0; }
.route-card .ic svg { width: 24px; height: 24px; }
.route-card .r-name { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.route-card .r-price { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-bright); font-weight: 700; }

.rate-notes { margin-top: 26px; padding: 26px 30px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--panel); }
.rate-notes ul { list-style: none; display: grid; gap: 12px; }
.rate-notes li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.95rem; }
.rate-notes li::before { content: "▸"; position: absolute; left: 0; color: var(--gold-2); }

/* ---------- Forms ---------- */
.form-card {
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--black-2); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 14px 16px; color: var(--white); font-family: var(--sans); font-size: 0.95rem;
  transition: border 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-2); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form-note { font-size: 0.85rem; color: var(--muted-2); margin-top: 18px; }
.form-success { display: none; padding: 18px 22px; border-radius: 12px; background: rgba(200,160,74,0.12); border: 1px solid var(--line); color: var(--gold-bright); margin-top: 18px; }
.form-success.show { display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 26px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .ic { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--line); color: var(--gold-2); }
.contact-item .ic svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 5px; }
.contact-item p { color: var(--muted); }
.contact-item a:hover { color: var(--gold-bright); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 360px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.9); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; text-align: center; padding: 100px 0; overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(200,160,74,0.14), transparent 60%),
    linear-gradient(rgba(8,8,9,0.9), rgba(8,8,9,0.96)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1600&q=70") center/cover;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 32px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 180px 0 90px; text-align: center; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(8,8,9,0.82), rgba(8,8,9,0.94)),
    url("https://images.unsplash.com/photo-1518391846015-55a9cc003b25?auto=format&fit=crop&w=1600&q=70") center/cover;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }

/* ---------- Font Awesome icon sizing ---------- */
.btn i { font-size: 0.95em; line-height: 1; }
.hero-badge .ic i { font-size: 18px; }
.value-card .ic { display: inline-flex; align-items: center; justify-content: center; width: auto; height: auto; }
.value-card .ic i { font-size: 38px; line-height: 1; }
.service-card .sc-ic { display: inline-block; width: auto; height: auto; font-size: 30px; line-height: 1; margin-bottom: 14px; }
.route-card .ic i { font-size: 22px; }
.rates-table .dest i { font-size: 16px; }
.contact-item .ic i { font-size: 20px; }
.footer-social a i { font-size: 17px; }
.float-call i { font-size: 24px; line-height: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line-soft); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted-2); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; color: var(--gold-2); transition: all 0.3s; }
.footer-social a:hover { background: var(--gold-grad); color: #1a1407; border-color: transparent; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: 0.84rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold-grad);
  display: grid; place-items: center; color: #1a1407; box-shadow: 0 12px 30px rgba(200,160,74,0.4);
  transition: transform 0.3s;
}
.float-call:hover { transform: scale(1.08); }
.float-call svg { width: 26px; height: 26px; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .values, .services-grid, .fleet-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 80px 0; }
  .nav { height: 88px; }
  .brand img { width: 62px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.76rem; }
  .hero { padding-top: 92px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0px; left: 0; right: 0;
    background: rgba(12,12,14,0.98); backdrop-filter: blur(16px);
    flex-direction: column; gap: 0; padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-120%); transition: transform 0.4s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px 0; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .nav { height: 84px; }
  .brand img { width: 54px; }
  .brand-text .b1 { font-size: 1rem; }
  .brand-text .b2 { font-size: 0.52rem; letter-spacing: 0.28em; }
  .hero { padding-top: 84px; }
  .page-hero { padding: 130px 0 64px; }
  .values, .services-grid, .fleet-grid, .form-grid, .rate-routes { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .hero-badges { gap: 20px; }
  .rates-table { font-size: 0.85rem; }
  .rates-table thead th, .rates-table tbody td { padding: 14px 12px; }
  .rates-wrap { overflow-x: auto; }
}
