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

:root {
  --midnight: #0c0f1a;
  --midnight-light: #151929;
  --midnight-mid: #1a1f35;
  --silver: #c0c0c0;
  --silver-light: #d4d4d8;
  --silver-bright: #e8e8ec;
  --gold-accent: #b8a178;
  --white: #ffffff;
  --text-muted: #8a8fa0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--silver-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(12,15,26,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(192,192,192,.08);
}
.navbar-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.navbar-logo img { width: 150px; }

.navbar-logo span {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--silver-bright); letter-spacing: 4px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: #fff; font-size: .82rem;
  font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold-accent); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: .65rem 1.8rem; border: 1px solid var(--gold-accent);
  color: var(--gold-accent); font-family: var(--font-body); font-size: .78rem;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  background: transparent; transition: all .3s; text-decoration: none;
  margin-left: 20px;
  text-align: center;
}
.nav-cta:hover { background: var(--gold-accent); color: var(--midnight); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--silver-light);
  transform-origin: center;
  transition: transform .3s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(.5); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.35) saturate(.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,15,26,.3) 0%, rgba(12,15,26,.7) 60%, var(--midnight) 100%);
}
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 5%; z-index: 2;
}
.hero-tag {
  font-size: .75rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  max-width: 900px; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-accent); }
.hero-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 540px;
  line-height: 1.7; margin-bottom: 2.4rem; font-weight: 300;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.btn-primary {
  padding: .85rem 2.6rem; background: var(--gold-accent); color: var(--midnight);
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .3s; text-decoration: none;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,161,120,.25); }
.btn-outline {
  padding: .85rem 2.6rem; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,.25);
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

/* Carousel indicators */
.carousel-dots {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .8rem; z-index: 3;
}
.carousel-dot {
  width: 32px; height: 2px; background: rgba(255,255,255,.25);
  border: none; cursor: pointer; transition: all .4s; padding: 0;
}
.carousel-dot.active { background: var(--gold-accent); width: 48px; }

/* ── SECTION COMMON ── */
.section { padding: 7rem 5%; }
.section-tag {
  font-size: .72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted); max-width: 580px; line-height: 1.8;
  font-weight: 300; font-size: .95rem;
}
.divider {
  width: 60px; height: 1px; background: var(--gold-accent); margin: 1.5rem 0;
}

/* ── SERVICES ── */
#services { background: var(--midnight-light); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-desc { margin: 0 auto; }
.services-header .divider { margin: 1.5rem auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  position: relative; overflow: hidden; border: 1px solid rgba(192,192,192,.06);
  background: var(--midnight); transition: all .5s; cursor: pointer;
  group: true;
}
.service-card:hover { border-color: rgba(184,161,120,.2); transform: translateY(-6px); }
.service-card-img {
  width: 100%; height: 260px; object-fit: cover;
  filter: brightness(.8) saturate(.8);
  transition: all .6s;
}
.service-card:hover .service-card-img { filter: brightness(.4) saturate(.9); transform: scale(1.05); }
.service-card-body { padding: 2rem; }
.service-card-icon {
  width: 48px; height: 48px; border: 1px solid rgba(184,161,120,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; color: var(--gold-accent); font-size: 1.2rem;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  color: var(--white); margin-bottom: .8rem;
}
.service-card p {
  color: var(--text-muted); font-size: .88rem; line-height: 1.7; font-weight: 300;
}

/* ── FLEET / GALLERY ── */
#gallery { background: var(--midnight); }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header .section-desc { margin: 0 auto; }
.gallery-header .divider { margin: 1.5rem auto; }
.fleet-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.fleet-card {
  position: relative; overflow: hidden; border: 1px solid rgba(192,192,192,.05);
  background: var(--midnight-light);
}
.fleet-card-img-wrap {
  position: relative; overflow: hidden; height: 300px;
}
.fleet-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.8); transition: all .6s;
}
.fleet-card:hover .fleet-card-img-wrap img { filter: brightness(.45); transform: scale(1.04); }
.fleet-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .35rem 1rem; background: rgba(184,161,120,.9);
  color: var(--midnight); font-size: .68rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}
.fleet-card-body { padding: 1.6rem 2rem; }
.fleet-card-body h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--white); margin-bottom: .5rem;
}
.fleet-card-body p {
  color: var(--text-muted); font-size: .85rem; line-height: 1.6; font-weight: 300;
}
.fleet-card-features {
  display: flex; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap;
}
.fleet-card-features span {
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver); padding: .3rem .8rem;
  border: 1px solid rgba(192,192,192,.12);
}

/* ── ABOUT ── */
#about { background: var(--midnight-light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1200px; margin: 0 auto; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  filter: brightness(.86) saturate(.85);
}
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; border: 1px solid var(--gold-accent);
  z-index: -1;
}
.about-text .section-desc { max-width: 100%; margin-bottom: 2rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-stat h4 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 300;
  color: var(--gold-accent);
}
.about-stat p {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-top: .3rem;
}

/* ── REVIEWS ── */
#reviews { background: var(--midnight); }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .section-desc { margin: 0 auto; }
.reviews-header .divider { margin: 1.5rem auto; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.review-card {
  padding: 2.5rem; border: 1px solid rgba(192,192,192,.06);
  background: var(--midnight-light); transition: all .4s;
}
.review-card:hover { border-color: rgba(184,161,120,.15); }
.review-stars { color: var(--gold-accent); font-size: .9rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.review-card blockquote {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  color: var(--silver-bright); line-height: 1.7; font-style: italic;
  margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--midnight-mid); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-size: 1.1rem; color: var(--gold-accent);
}
.review-author-info h5 { color: var(--white); font-size: .88rem; font-weight: 500; }
.review-author-info p { color: var(--text-muted); font-size: .75rem; margin-top: .15rem; }
.google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 3rem; color: var(--text-muted); font-size: .8rem;
}
.google-badge svg { width: 18px; height: 18px; }

/* ── CONTACT ── */
#contact { background: var(--midnight-light); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--midnight); border: 1px solid rgba(192,192,192,.1);
  color: var(--white); padding: .9rem 1rem; font-family: var(--font-body);
  font-size: .9rem; outline: none; transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold-accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--midnight); }
.contact-info-side { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid rgba(184,161,120,.25); display: flex;
  align-items: center; justify-content: center; color: var(--gold-accent);
}
.contact-info-item h5 { color: var(--white); font-size: .9rem; font-weight: 500; }
.contact-info-item p { color: var(--text-muted); font-size: .85rem; margin-top: .2rem; }
.contact-info-item a { color: var(--text-muted); font-size: .85rem; margin-top: .2rem; }

/* ── MAP ── */
#map { background: var(--midnight); padding: 0; }
.map-section-header { text-align: center; padding: 5rem 5% 2rem; }
.map-section-header .divider { margin: 1.5rem auto; }
.map-container {
  width: 100%; height: 450px; filter: grayscale(.6)  contrast(1.1);
  border-top: 1px solid rgba(192,192,192,.05);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--midnight); border-top: 1px solid rgba(192,192,192,.06);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand p {
  color: var(--text-muted); font-size: .85rem; line-height: 1.7;
  margin-top: 1rem; max-width: 320px; font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
  margin-bottom: 1.2rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  color: var(--text-muted); text-decoration: none; font-size: .85rem;
  transition: color .3s; font-weight: 300;
}
.footer-col ul a:hover { color: var(--gold-accent); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(192,192,192,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: .78rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(192,192,192,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none; font-size: .8rem;
  transition: all .3s;
}
.footer-socials a:hover { border-color: var(--gold-accent); color: var(--gold-accent); }

/* ── DISCOUNT MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
  background: var(--midnight-light); border: 1px solid rgba(184,161,120,.2);
  max-width: 480px; width: 90%; padding: 3rem; text-align: center;
  position: relative; transform: translateY(20px);
  transition: transform .4s;
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; transition: color .3s;
  line-height: 1;
}
.modal-close:hover { color: var(--white); }
.modal-badge {
  display: inline-block; padding: .3rem 1.2rem;
  border: 1px solid var(--gold-accent); color: var(--gold-accent);
  font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.modal h2 {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 400;
  color: var(--white); margin-bottom: .5rem;
}
.modal .discount-amount {
  font-family: var(--font-display); font-size: 4rem; font-weight: 300;
  color: var(--gold-accent); line-height: 1.1; margin-bottom: .5rem;
}
.modal p {
  color: var(--text-muted); font-size: .9rem; line-height: 1.6;
  margin-bottom: 1.8rem; font-weight: 300;
}
.modal-input-group {
  display: flex; gap: 0; margin-bottom: 1rem;
}
.modal-input-group input {
  flex: 1; padding: .85rem 1rem; background: var(--midnight);
  border: 1px solid rgba(192,192,192,.1); border-right: none;
  color: var(--white); font-family: var(--font-body); font-size: .88rem;
  outline: none;
}
.modal-input-group input:focus { border-color: var(--gold-accent); }
.modal-input-group button {
  padding: .85rem 1.8rem; background: var(--gold-accent);
  color: var(--midnight); border: none; font-family: var(--font-body);
  font-size: .75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: background .3s;
}
.modal-input-group button:hover { background: var(--white); }
.modal-dismiss {
  background: none; border: none; color: var(--text-muted);
  font-size: .78rem; cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; transition: color .3s;
}
.modal-dismiss:hover { color: var(--silver); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid, .reviews-grid { grid-template-columns: 1fr; max-width: 600px; }
  .fleet-grid { grid-template-columns: 1fr; max-width: 600px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .navbar-logo img { width: 120px; }
  .navbar {
    padding: 0 1rem;
  }
  .navbar-logo {
    margin-left: -40px;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12,15,26,.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(192,192,192,.06);
    padding: 0 5%;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height .38s ease, opacity .28s ease, transform .38s ease, padding .38s ease;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .24s ease;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 2rem 5%;
    gap: 1.4rem;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }

  .footer-brand p {
    margin: 0 auto;
  }
  .section {
    padding: 2rem 1rem;
  }
}

