/* VARIABLES & RESET */
:root {
  --primary: #c29546; /* Premium Gold */
  --secondary: #0f172a; /* Deep Navy */
  --dark: #020617;
  --light: #f8fafc;
  --text-gray: #64748b;
  --white: #ffffff;
  --shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--secondary);
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(194, 149, 70, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #a67c33;
}

.btn.outline {
  border-color: var(--white);
  color: var(--white);
}

.btn.outline:hover {
  background: var(--white);
  color: var(--secondary);
}

.btn.full-width {
  width: 100%;
  margin-top: 10px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo i {
  font-size: 28px;
  color: var(--primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--white); /* White initially */
  line-height: 1;
}

.navbar.scrolled .brand-name { color: var(--secondary); }
.brand-sub { font-size: 12px; color: var(--primary); letter-spacing: 1px; text-transform: uppercase;}

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.navbar.scrolled .nav-links a { color: var(--secondary); }
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  border: 1px solid var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--primary) !important;
}

.nav-cta:hover { background: var(--primary); color: white !important; }

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}
.navbar.scrolled .menu-btn { color: var(--secondary); }

/* HERO */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  /* If image fails, fallback to dark gradient */
  background-color: #2c3e50; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,6,23,0.7), rgba(2,6,23,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 20px;
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-gold { color: var(--primary); font-style: italic; }

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* SECTION STYLES */
.section { padding: 80px 0; }
.bg-light { background: #f1f5f9; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 2px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #fff8eb;
  color: var(--primary);
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* FLEET */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.fleet-card:hover { transform: translateY(-5px); }

.card-image {
  position: relative;
  height: 220px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
}

.card-details { padding: 25px; }

.card-details h3 { margin-bottom: 15px; font-size: 1.4rem; }

.features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.features li {
  font-size: 13px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fleet-card button {
  width: 100%;
  padding: 12px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.fleet-card button:hover { background: var(--primary); }

/* PLACES */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.place-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.place-card:hover img { transform: scale(1.1); }

.place-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.place-overlay h3 { margin-bottom: 5px; }
.place-overlay p { font-size: 0.9rem; opacity: 0.8; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stars { color: #f59e0b; margin-bottom: 15px; }
.review-card p { font-style: italic; color: var(--text-gray); margin-bottom: 20px; }

.reviewer { display: flex; align-items: center; gap: 15px; }
.avatar {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CONTACT */
.dark { background: var(--secondary); color: white; }
.dark .section-header h2 { color: white; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.info-item i {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
}

.info-item a, .info-item p { color: rgba(255,255,255,0.8); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  color: var(--secondary);
}

.contact-form h3 { margin-bottom: 20px; }

/* Include textarea */
.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  resize: vertical; /* Allows user to resize height only */
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus { 
  border-color: var(--primary); 
}

/* FOOTER */
footer {
  background: #000;
  color: rgba(255,255,255,0.6);
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
}

.socials { margin-top: 15px; }
.socials a { color: white; font-size: 1.2rem; margin: 0 10px; }

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: slideUp 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { color: var(--secondary); }
  .menu-btn { display: block; }

  .hero h1 { font-size: 2.2rem; }
  .contact-layout { grid-template-columns: 1fr; }
}