:root {
  --gold: #d9b24c;
  --gold-dark: #c79b2c;
  --dark: #0b0c0f;
  --dark-soft: #15171d;
  --light: #ffffff;
  --muted: #71757f;
  --bg: #f6f3ee;
  --shadow-soft: 0 18px 40px rgba(15, 18, 27, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: #181920;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e4dfd6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  height: 60px;      /* adjust size if needed */
  width: auto;
  object-fit: contain;
  display: block;
}


.brand-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #373a44;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #555864;
}

.nav-phone span {
  font-weight: 600;
  color: #1b1d24;
}

.btn-gold {
  background: var(--gold);
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b1d24;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn-outline-light {
  border-radius: 999px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #111218;
  border-color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  color: #ffffff;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image:
    linear-gradient(90deg, rgba(10, 11, 18, 0.86) 0%, rgba(10, 11, 18, 0.35) 55%, rgba(10, 11, 18, 0.1) 100%),
    url("Images/HeaderPhoto1.png");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  padding: 4.2rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-end;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5e7d2;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  line-height: 1.03;
  margin-bottom: 0.8rem;
}

.hero-title {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}


/* Base fade-in-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation with staggered delays */
.hero-title {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-subtitle {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-actions .btn-gold {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-actions .btn-secondary {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Hero service cards (stagger them) */
.hero-service-card {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-service-card:nth-child(1) { animation-delay: 1s; }
.hero-service-card:nth-child(2) { animation-delay: 1.2s; }
.hero-service-card:nth-child(3) { animation-delay: 1.4s; }

/* Luxury On-Demand box */
.hero-right-box {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.6s;
}



.hero-subtitle {
  max-width: 480px;
  font-size: 0.98rem;
  color: #e9e2d7;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-actions .btn-secondary {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-service-card {
  background: #ffffff;
  color: #21232b;
  border-radius: 1.1rem;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
}

.hero-service-card strong {
  font-size: 0.9rem;
}

.hero-service-label {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(217, 178, 76, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-right-box {
  background: rgba(8, 10, 18, 0.86);
  border-radius: 1.4rem;
  padding: 1.5rem 1.4rem;
  max-width: 340px;
  border: 1px solid rgba(232, 221, 201, 0.4);
  box-shadow: 0 18px 40px rgba(4, 5, 10, 0.8);
}

.hero-right-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hero-right-list {
  list-style: none;
  font-size: 0.89rem;
  color: #e1d9cd;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.hero-right-list li::before {
  content: "• ";
  color: var(--gold);
}

.hero-right-note {
  font-size: 0.8rem;
  color: #d5c9b5;
}

/* SECTIONS */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0.25rem auto 0;
  color: var(--muted);
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-service {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.card-service:hover {
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Pop out shadow */
  z-index: 10; /* Ensures it overlaps neighbors slightly */
}

.card-img {
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-tag {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(217, 178, 76, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

.card-title {
  font-weight: 600;
  font-size: 1rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.card-link {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link:hover {
  text-decoration: underline;
}

/* FLEET */
.card-fleet {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
/* Hover effect */
.card-fleet:hover {
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Pop out shadow */
  z-index: 10; /* Ensures it overlaps neighbors slightly */
}

.fleet-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.fleet-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.fleet-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.btn-fleet {
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1.3rem;
  cursor: pointer;
  color: #1c1d21;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn-fleet:hover {
  background: var(--gold);
  color: #111318;
}


.fleet-price {
  margin: 10px 0 14px;
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}

.fleet-price span {
  display: block;
  font-size: 13px;
  color: #bbb;
  font-weight: 400;
}


/* TESTIMONIALS */
.testimonials {
  background: #f8f4ee;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card-testimonial {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.card-testimonial:hover {
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Pop out shadow */
  z-index: 10; /* Ensures it overlaps neighbors slightly */
}

.stars {
  color: #f6b800;
  font-size: 0.92rem;
}

.testimonial-title {
  font-weight: 600;
}

.testimonial-text {
  color: var(--muted);
}

.testimonial-footer {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.6rem;
  border: 2px solid var(--gold);
}

.avatar-circle img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: #22232a;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.83rem;
}



/* BOOKING */
.booking-section {
  background: #ffffff;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: stretch;
}

.booking-left {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(2, 5, 15, 0.10), rgba(2, 5, 15, 0.50)),
    url("Images/NightCar.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


/* Hover effect */
.booking-left:hover {
  transform: scale(1.03); /* Slightly bigger */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Pop out shadow */
  z-index: 10; /* Ensures it overlaps neighbors slightly */
}

.booking-left h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.booking-eyebrow {
  color: #f2e0b7 !important;
}

.booking-bullets {
  list-style: none;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.booking-bullets li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 600;
}

.booking-contact {
  font-size: 0.93rem;
  margin-top: 1.1rem;
}

.booking-contact span {
  font-weight: 600;
}

.booking-right {
  background: #f9f7f3;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.6rem 1.8rem;
}

.booking-right h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.booking-right p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
  color: #474954;
}

.form-group label span {
  color: #d44b3f;
}

input,
select,
textarea {
  border-radius: 0.9rem;
  border: 1px solid #e0dbd2;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(217, 178, 76, 0.5);
}

.booking-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.submit-row {
  margin-top: 0.8rem;
}

.submit-note {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.booking-message {
  margin-top: 0.5rem;
  font-size: 0.84rem;
}

/* FOOTER */
footer {
  background-image: url("Images/InsidePlane.png");
  color: #f3eee5;
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: #f0e3cf;
}

.footer-links {
  list-style: none;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #d3c8b5;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  color: #101117;
}

.subscribe-form {
  display: flex;
  margin-top: 0.6rem;
  gap: 0.4rem;
}

.subscribe-form input {
  flex: 1;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  border: 1px solid #44454f;
  background: #14151c;
  color: #f4ede1;
}

.subscribe-form input::placeholder {
  color: #8a8c95;
}

.subscribe-form button {
  border-radius: 999px;
  border: none;
  padding: 0.48rem 1.1rem;
  background: var(--gold);
  color: #111216;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #262731;
  padding-top: 1.1rem;
  font-size: 0.83rem;
  color: #b7b0a3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    justify-content: flex-start;
    margin-top: 1.6rem;
  }
  .hero-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .cards-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-service-strip {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-bottom,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}
