/* RESET &amp; BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  /* Using Cormorant Garamond for a vintage, sophisticated look */
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--soft-cream);
  color: var(--dark-charcoal);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
/* ROOT COLORS */
:root {
  --deep-maroon: #5c0f17; /* Rich, dark red for main accents */
  --royal-gold: #b8860b; /* A deep, elegant gold */
  --soft-cream: #f8f5ee; /* A warm, off-white background */
  --text-dark: #2a1a1f; /* A rich, deep text color */
  --light-bg: #fdf9f5;
  --white: #ffffff;
  --border-color: #d8c3a5; /* A vintage-style border color */
}

/* TYPOGRAPHY */
h1, h2, h3 {
  /* Using Playfair Display for a classic, powerful headline font */
  font-family: 'Playfair Display', serif;
  color: var(--deep-maroon);
}
h1 span {
  color: var(--royal-gold);
}
.section-title {
  text-align: center;
  font-size: 3rem; /* Larger font size for grandeur */
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* CONTAINERS */
.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 80px 0; /* More vertical padding for a spacious feel */
}

/* HEADER &amp; NAVIGATION */
.luxury-header {
  background-color: var(--soft-cream);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Adding a subtle box shadow for a premium, elevated feel */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}

.logo img {
  height: 55px; /* Slightly larger logo for presence */
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px; /* Increased gap for a more open layout */
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.1rem; /* Slightly larger font size */
  font-weight: 600;
  /* Using the new elegant font for navigation */
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  position: relative;
  transition: color 0.4s ease;
  letter-spacing: 1px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background-color: var(--royal-gold);
  /* A subtle transition for the underline effect */
  transition: width 0.4s ease, transform 0.4s ease;
  transform-origin: left;
}

.nav-links li a:hover {
  color: var(--royal-gold);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* MOBILE TOGGLE BUTTON */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--deep-maroon); /* Matching the new color palette */
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    display: none;
    background-color: var(--soft-cream);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
  }
  
  .nav-links li a::after {
    bottom: -8px;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}


/* Hero Section */
:root {
  --maroon: #4b0f0f;
  --gold: #c5a880;
  --offwhite: #fffaf7;
  --dark-text: #1a1a1a;
  --light-text: #fdfdfd;
  --shadow-dark: rgba(0, 0, 0, 0.4);
}

.hero-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  min-height: 30vh;
  display: flex;
  align-items: center;
  color: var(--light-text);
  z-index: 1;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; /* ✅ vertically center text and form */
  gap: 40px;
  min-height: 100%; /* ensure proper alignment */
}

.hero-text {
  flex: 1 1 55%;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.hero-text h1 span {
  display: block;
  color: var(--offwhite);
  font-weight: normal;
}

.hero-text p {
  font-size: 1.125rem;
  max-width: 550px;
  line-height: 1.6;
  font-family: 'Lora', serif;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.btn-video:hover {
  color: #fff;
}

.play-icon {
  background: var(--gold);
  color: var(--maroon);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 18px;
  box-shadow: 0 2px 6px var(--shadow-dark);
}

.play-text {
  font-size: 16px;
}
/* Booking Form */
.booking-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 350px;
  margin-left: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

.booking-form h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s;
}

.booking-form input:focus {
  border-color: var(--maroon);
  outline: none;
}

.flex-row {
  display: flex;
  gap: 10px;
}

.flex-row &gt; div {
  flex: 1;
}

.lux-button {
  background-color: #6b0f1a;
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  display: inline-block;
}

.lux-button:hover {
  background-color: #d4af37;
  color: #6b0f1a;
}
/* Hero Section End */

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* Fix for mobile view */
@media (max-width: 768px) {
  .booking-form {
    margin: 0 auto; /* center horizontally */
    width: 100%;
    max-width: 90%; /* allow some margin on sides */
  }
}

.hero-form {
    width: 100%;
    margin-top: 30px;
  }

.flex-row {
    flex-direction: column;
}



/* FORM */
.hero-form {
  flex: 1 1 40%;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  margin-top: 0 !important; /* ✅ remove unnecessary vertical shift */
}

.hero-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-form label {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  margin-bottom: 5px;
  display: block;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 15px;
  background-color: #fff;
  color: #333;
}

.flex-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.flex-row &gt; div {
  flex: 1 1 45%;
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 50px; /* pill shape for luxury feel */
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 15, 26, 0.2);
}

.btn-primary:hover {
  background: #f6f1e7; /* rich creamy off-white */
  color: var(--maroon);
  border: 0.5px solid var(--maroon); /* thin maroon border */
  box-shadow: 0 6px 18px rgba(246, 241, 231, 0.5);
  transform: translateY(-2px); /* lift effect */
}

.btn-primary:active {
  transform: translateY(0); /* button press */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


/* Responsive: make form full width and stack inputs on small screens */
@media (max-width: 768px) {
  .hero-form {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .flex-row {
    flex-direction: column;
    gap: 0;
  }

  .flex-row &gt; div {
    flex: 1 1 100%;
  }
}

/* <!-- Fleet Section Start --> */
.fleet-section {
  background-color: #f9f5f0;
  padding: 20px 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--maroon);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background-color: var(--maroon);
  display: block;
  margin: 12px auto 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #a16c4e10;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.fleet-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05);
}

.fleet-content {
  padding: 20px 25px;
  text-align: center;
}

.fleet-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 10px;
}

.fleet-content p {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.fleet-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.fleet-buttons a {
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  min-width: 120px;
  text-align: center;
}

/* Outline Button */
.btn-outline {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
}

/* Filled Button */
.btn-filled {
  background: var(--maroon);
  color: #fff;
  border: 2px solid var(--maroon);
}

.btn-filled:hover {
  background: #6b1e1e;
  border-color: #6b1e1e;
}

/* <!-- Fleet Section End --> */


/* TESTIMONIALS */
.testimonials {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f5f0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--maroon);
  margin-bottom: 40px;
  position: relative;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 30%;
  background-color: #fff8f1;
  padding: 25px 30px;
  border: 2px solid #e6d5b8;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(120, 20, 20, 0.1);
  font-family: 'Georgia', serif;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(120, 20, 20, 0.15);
}

.testimonial-card::before {
  content: "“";
  font-size: 40px;
  color: var(--maroon);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #5e4a3c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--maroon-dark);
  text-align: right;
}

/* Responsive: Stack on small screens */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}
/* Testimonial End */
/* Maharaja Steps */
.maharaja-steps {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  font-family: 'Georgia', serif;
}

.maharaja-steps .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(20, 4, 4, 0.7); /* dark maroon overlay */
  z-index: 1;
}

.maharaja-steps .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #ffcc99;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #4b0f0f;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.step-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.step-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #e2b07c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.step-icon img {
  width: 35px;
  height: 35px;
  filter: invert(1);
}

.step-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffe3c4;
}

.step-box p {
  font-size: 14px;
  color: #e0d1b7;
  line-height: 1.6;
}
/* MAHARAJA STEPS END */

/* Tour Packages */
.tour-section {
  background: #0d0d0d;
  padding: 4rem 2rem;
  font-family: 'Playfair Display', serif;
}

.tour-section h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ffe8c6;
  margin-bottom: 3rem;
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 30%, transparent);
  color: #fff;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 2;
}

.tour-card:hover .tour-content {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
}

.tour-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffe8c6;
}

.tour-content p {
  font-size: 0.95rem;
  margin: 0.2rem 0;
  color: #f0f0f0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .tour-card {
    height: 300px;
  }

  .tour-cards {
    grid-template-columns: 1fr;
  }

  .tour-card:hover .tour-content {
    backdrop-filter: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 30%, transparent);
  }

  .tour-content {
    height: auto;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 30%, transparent);
    backdrop-filter: none;
  }
}
/* Tour Package */

/* Why Choose us */
.why-choose-us {
  background: linear-gradient(to bottom, #3b1f1a, #1c0e0a);
  padding: 6rem 2rem;
  color: #f5efe6;
  font-family: 'Playfair Display', serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  z-index: 0;
}

.section-header h2 {
  font-size: 3rem;
  color: #e5b56d;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.subheading {
  font-size: 1.15rem;
  color: #d3c0a8;
  font-style: italic;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reason-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
  position: relative;
}

.reason-box::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 16px;
  border: 1px dashed rgba(229, 181, 109, 0.2);
  pointer-events: none;
}

.reason-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
}

.reason-box h3 {
  color: #ffdeac;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.reason-box p {
  color: #f0eae2;
  font-size: 0.97rem;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}


/* Why Choose us end */

/* CONTACT CTA - HERITAGE LUXE STYLE */
.contact-section {
  position: relative;
  background-color: #3d0f0f; /* Deep maroon base */
  background-image: url('images/ornamental-texture.png'); /* Optional: damask/heritage subtle background */
  background-size: cover;
  background-blend-mode: multiply;
  color: #f9e6cc;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  font-family: 'Georgia', serif;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 221, 180, 0.1), transparent 70%);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.contact-section h2 {
  font-size: 2.8rem;
  color: #ffe2b0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.1);
}

.contact-section p {
  font-size: 1.15rem;
  color: #e7d4b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-section .cta-button {
  display: inline-block;
  padding: 14px 34px;
  background-color: transparent;
  border: 2px solid #ffcc99;
  color: #ffcc99;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 rgba(255, 204, 153, 0.2);
}

.contact-section .cta-button:hover {
  background-color: #ffcc99;
  color: #3d0f0f;
  box-shadow: 0 0 15px #ffcc99;
}


/* FOOTER */
/* FOOTER SECTION */
.custom-footer {
  background-color: var(--text); /* Deep heritage tone */
  color: #E3BD66;
  padding: 60px 20px 30px;
  font-family: 'DM Serif Display', serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-heading {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #E3BD66;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #E3BD66;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.1rem;
  color: #E3BD66;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-contact i {
  margin-right: 8px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #E3BD66;
}

.footer-bottom i {
  color: var(--accent);
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-text,
  .hero-form {
    flex: 1 1 100%;
    padding: 0;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .about-section {
    flex-direction: column;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}
/* Calander */
.flatpickr-calendar {
  font-family: 'Playfair Display', serif;
  border-radius: 10px;
  background-color: #fffaf7;
  color: #4b0f0f;
  border: 1px solid #c5a880;
}

.flatpickr-day.today {
  background: var(--gold);
  color: white;
}

.flatpickr-time input {
  border: none;
  background: #fffaf7;
  color: var(--maroon);
}

/* Urbania Intro - Maharaja Theme */
.urbania-intro {
  background-color: #fdf8f3; /* creamy background */
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.lux-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  background: #fff9f4; /* subtle cream card */
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(111, 15, 26, 0.12);
  padding: 40px;
  border: 1px solid rgba(111, 15, 26, 0.15); /* maroon-ish border */
}

.lux-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid #b8884f; /* rich gold border */
  box-shadow: 0 12px 30px rgba(111, 15, 26, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(111, 15, 26, 0.35);
}

.lux-content {
  flex: 1;
  max-width: 600px;
  color: #3f2a24; /* deep coffee text */
}

.lux-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #6b0f1a; /* deep maroon */
  margin-bottom: 20px;
  line-height: 1.2;
}

.lux-title span {
  color: #b8884f; /* accent gold for keywords */
}

.lux-text {
  font-size: 1.15rem;
  color: #5c4a42;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lux-button {
  background-color: #6b0f1a; /* maroon button */
  color: #fffaf2; /* off-white text */
  padding: 14px 34px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #b8884f; /* gold border */
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(111, 15, 26, 0.2);
}

.lux-button:hover {
  background-color: #fdf4e3; /* creamy hover */
  color: #6b0f1a;
  box-shadow: 0 8px 20px rgba(184, 136, 79, 0.35);
}

/* Mobile View */
@media (max-width: 768px) {
  .lux-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 25px;
    align-items: center;
  }

  .lux-title {
    font-size: 2rem;
    text-align: center;
  }

  .lux-text {
    text-align: left;
  }

  .lux-button {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .lux-image img {
    max-width: 100%;
  }

  .lux-content {
    max-width: 100%;
  }
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 1023px) {
  .lux-wrapper {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    align-items: center;
  }

  .lux-title {
    font-size: 2.3rem;
    text-align: center;
  }

  .lux-text {
    text-align: left;
  }

  .lux-button {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .lux-content {
    max-width: 100%;
  }

  .lux-image img {
    max-width: 100%;
  }
}




/* Fleet Page CSS */
.fleet-hero {
  background-image: url('images/HMW5.png'); /* Replace with your background image */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7efe2;
  font-family: 'Playfair Display', serif;
}

.fleet-hero-overlay {
  background: rgba(30, 10, 10, 0.705); /* Dark maroon glass overlay */
  padding: 4rem 2rem;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fleet-hero h1 {
  font-size: 3rem;
  color: #e5b56d;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.fleet-hero p {
  font-size: 1.2rem;
  color: #f0e4d2;
  font-style: italic;
}
/* Fleet Page Css */
/* about page css */
.about-content {
  background-color: #fdf8f3;
  padding: 5rem 2rem;
  font-family: 'DM Sans', sans-serif;
  color: #2d1a14;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: #5c2a23;
  margin-bottom: 1rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4e3a36;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-box {
  background: #fff7ee;
  border: 1px solid #f1e3d1;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(92, 42, 35, 0.1);
  transition: transform 0.3s;
}

.about-box:hover {
  transform: translateY(-6px);
}

.about-box h3 {
  color: #9b5d3f;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.about-box p {
  font-size: 1rem;
  color: #3f2a24;
  line-height: 1.6;
}
/* about page css end */

/* about maharaja */
.about-maharaja {
  padding: 2rem 2rem;
  background-color: #fdf8f3;
  font-family: 'DM Sans', sans-serif;
  color: #3f2a24;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.about-info {
  flex: 1 1 500px;
  min-width: 280px;
}

.about-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #e0b973;
  margin-bottom: 0.75rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.highlighted {
  color: #b8884f;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: #5c4a42;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-box {
  background-color: #fff7ee;
  border: 1px solid #ecdccc;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  flex: 1 1 150px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 1.8rem;
  color: #e0b973;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5c2a23;
}

.stat-label {
  font-size: 0.9rem;
  color: #7a5c4d;
}

/* Gallery Styling */
.about-gallery {
  flex: 1 1 400px;
  min-width: 280px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 180px 180px;
  gap: 12px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

.tall-img {
  grid-column: 1 / 3;
  height: 380px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: center;
    padding: 3rem 1rem; /* less padding on sides */
    align-items: center; /* center align content */
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 50px;
  }

  .tall-img {
    grid-column: 1 / 3;
    height: 300px;
  }

  .about-title {
    font-size: 2rem;
  }
}

/* Contactpage */
.contact-section {
  padding: 4rem 1.5rem;
  background-color: var(--ivory);
  color: var(--text-dark);
  font-family: var(--sans);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-wrapper {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form {
  flex: 1 1 500px;
  background-color: #fffdfb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(94, 31, 31, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: var(--serif);
  margin-bottom: 0.4rem;
  color: var(--maroon);
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #e6d9cf;
  background: #fff;
  color: var(--text-dark);
}

.btn-submit {
  background-color: var(--maroon);
  color: #fff;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-family: var(--sans);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #3b1212;
}

.contact-details {
  flex: 1 1 300px;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-box {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--text-dark);
  gap: 1rem;
}

.detail-box i {
  font-size: 1.4rem;
  color: var(--gold);
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.3rem;
  margin-right: 1rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--maroon);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form,
  .contact-details {
    flex: 1 1 100%;
  }
}

/* floating stuff */
.floating-btn {
  position: fixed;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease;
  animation: floatPulse 2.8s ease-in-out infinite;
  border: 1px solid rgba(128, 0, 0, 0.3);
}

.floating-btn img {
  width: 26px;
  height: 26px;
}

.floating-btn i {
  font-size: 22px;
  color: var(--maroon, #800000);
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(128, 0, 0, 0.3);
}

/* WhatsApp Button */
.floating-btn.whatsapp {
  left: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
  animation: floatPulse 2.8s ease-in-out infinite, glowPulseWhatsApp 1.8s ease-in-out infinite;
}

.floating-btn.whatsapp i {
  font-size: 24px;
  color: white;
}

/* WhatsApp Glow Animation */
@keyframes glowPulseWhatsApp {
  0%, 100% {
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.8), 0 0 30px rgba(37, 211, 102, 0.6);
  }
}

/* Floating Animation (shared with call) */
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}


/* Call Button */
.floating-btn.call {
  right: 20px;
  background: linear-gradient(135deg, #b30000, #800000);
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(179, 0, 0, 0.6);
  animation: floatPulse 2.8s ease-in-out infinite, glowPulse 1.8s ease-in-out infinite;
}

.floating-btn.call i {
  font-size: 24px;
  color: white;
}

/* Floating Animation */
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Glow Animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(179, 0, 0, 0.6), 0 0 20px rgba(179, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(179, 0, 0, 0.8), 0 0 30px rgba(179, 0, 0, 0.6);
  }
}
