/* ===================================================
   HUMMINGBIRD CARS — Global Stylesheet
   hummingbirdcars.com
=================================================== */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #9A7A30;
  --gold-pale:  #F5EDD4;
  --black:      #0A0A0A;
  --dark:       #111318;
  --dark2:      #1A1D24;
  --dark3:      #22262F;
  --off-white:  #FAF9F6;
  --text-dark:  #1A1A1A;
  --mid:        #6B6B6B;
  --border-light: #E2D9C8;
  --border-dark:  rgba(201,168,76,0.18);
  --radius:     4px;
  --shadow:     0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* ── UTILITY ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

.label-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-title span { color: var(--gold); }

.section-title-white { color: #fff; }
.section-title-white span { color: var(--gold-light); }

.section-subtitle {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.gold { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn:active { transform: translateY(0) !important; }

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon { font-size: 26px; filter: drop-shadow(0 0 8px rgba(201,168,76,0.4)); }

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-cta {
  height: 40px;
  padding: 0 22px;
  font-size: 10px;
  letter-spacing: 2px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 4px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

/* ── DIVIDER ── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ── BADGE ── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand-text {
  font-size: 13px;
  line-height: 1.8;
  max-width: 280px;
  margin-top: 16px;
  color: rgba(255,255,255,0.45);
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-contact-icon { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-title span { color: var(--gold); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.5); }

/* ── CTA BANNER (shared) ── */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .page-hero { padding: 120px 0 60px; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.5); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BOOKING FORM FIELDS (used on homepage quick search) ── */
.f-row { display: grid; gap: 14px; margin-bottom: 14px; }
.f-row.col2 { grid-template-columns: 1fr 1fr; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}
.f-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.f-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.f-wrap.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
}
.f-icon {
  padding: 0 10px;
  font-size: 16px;
  pointer-events: none;
  flex-shrink: 0;
  color: var(--gold);
}
.f-input {
  flex: 1;
  height: 46px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  padding-right: 10px;
}
.f-input::placeholder { color: #bbb; }
select.f-input { cursor: pointer; appearance: none; }
.f-chevron { padding: 0 10px; color: #aaa; font-size: 11px; pointer-events: none; }

@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .page-hero { padding: 120px 0 60px; }
  .f-row.col2 { grid-template-columns: 1fr; }
}
