/* ===== LUXURY AVIATORS - Global Styles ===== */
/* Black & Gold Luxury Theme */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-dark: #A88A3D;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-medium: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #444444;
  --success: #4CAF50;
  --error: #E53935;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --shadow: 0 4px 30px rgba(201, 168, 76, 0.1);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ===== Utility Classes ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-dark { background: var(--black); }
.section-darker { background: var(--black-light); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.gold-line {
  width: 80px; height: 2px; background: var(--gold);
  margin: 20px auto;
}
.gold-line-left {
  width: 80px; height: 2px; background: var(--gold);
  margin: 20px 0;
}

/* ===== Headings ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1 { font-size: 3.2rem; letter-spacing: 1px; }
h2 { font-size: 2.4rem; letter-spacing: 0.5px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  padding: 12px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 45px;
  height: 45px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gray-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-book-btn {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}
.nav-book-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-book-btn::after { display: none !important; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content .section-subtitle { margin-bottom: 15px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== Cards ===== */
.service-card {
  background: var(--black-light);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 15px; color: var(--white); }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* ===== Fleet / Car Cards ===== */
.fleet-card {
  background: var(--black-light);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow);
}
.fleet-card-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.fleet-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-image img { transform: scale(1.05); }
.fleet-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fleet-card-body { padding: 35px; }
.fleet-card-body h3 { margin-bottom: 10px; font-size: 1.5rem; }
.fleet-card-body .car-tagline {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  margin-bottom: 15px;
}
.fleet-card-body p { color: var(--gray); margin-bottom: 20px; font-size: 0.95rem; }
.fleet-card-features {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 25px;
}
.fleet-card-features span {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding: 5px 14px;
  font-size: 0.8rem;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ===== Pricing Table ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.pricing-card {
  background: var(--black-light);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.pricing-card.featured { position: relative; }
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-card h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.pricing-amount span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pricing-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-features { margin-bottom: 30px; text-align: left; }
.pricing-features li {
  padding: 8px 0;
  color: var(--gray-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
}

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-medium);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 0;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--gray-dark); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px; right: -15px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray-light); margin-bottom: 20px; }

/* ===== Stats ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { color: var(--gray-light); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.footer {
  background: var(--black-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-about .nav-logo { margin-bottom: 20px; }
.footer-about p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }
.footer h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--gray); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-dark);
  font-size: 0.8rem;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: 10px; }
.breadcrumb {
  color: var(--gray);
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 10px; }

/* ===== Thank You Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--black-light);
  border: 1px solid var(--gold);
  padding: 60px 50px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.modal-content .checkmark {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: var(--gold);
}
.modal-content h3 { margin-bottom: 15px; }
.modal-content p { color: var(--gray-light); margin-bottom: 25px; }
.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-close:hover { color: var(--gold); }

/* ===== Loading Spinner ===== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .grid-2, .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 70px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fleet-card-image { height: 220px; }
  .about-image::after { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { min-height: 600px; }
}
