/* =========================
   BUTTONS & NAVBAR
========================= */
/* BRAND TEXT */
.brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  font-size: 1.2rem;
  color: #333;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background:  #ffbc03;
  border-radius: 10px;
  transition: width 0.35s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ffbc03;
}

.btn-orange {
  background: linear-gradient(135deg, #e7aa02, #ffbc03);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 28px;
  border-radius: 10px;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-2px);
  color: #fff;
}
















/* =========================
   HERO SECTION
========================= */
.hero-section {
  min-height: calc(100vh - 80px);
  background: url('../images/heroimage.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .hero-section {
    min-height: calc(120vh - 80px); /* increase height for desktop */
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.83);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1,
.hero-section p,
.hero-section span {
  z-index: 2;
}

/* =========================
   PREMIUM TAG & TEXT
========================= */
.premium-tag {
  display: inline-block;
  background: #ffbc03;
  color: #fff;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 20px 4px;
}

.text-highlight {
  color: #eeaf03;
  position: relative;
}

.text-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: rgba(255, 122, 0, 0.4);
  border-radius: 2px;
}

.hero-desc {
  max-width: 520px;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   FORM & CARD
========================= */
.card {
  backdrop-filter: blur(10px);
}

.form-control-dark {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control-dark:focus {
  color: #fff !important; /* override Bootstrap's focus color */
  -webkit-text-fill-color: #fff; /* Chrome/Edge fix */
  background: rgba(0, 0, 0, 0.85); /* optional slightly darker */
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}

.card {
  backdrop-filter: blur(10px);
  overflow-x: hidden; /* prevents horizontal overflow */
}








/* =========================
   TOP RENTALS BASE
========================= */
.top-rentals {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* =========================
   BACKGROUND GLOW
========================= */
.top-rentals::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -200px;
  width: 520px;
  height: 520px;
  
  z-index: 0;
}

/* =========================
   LEFT CONTENT
========================= */
.text-content {
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-content.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

/* Heading divider */
.text-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 14px;
  border-radius: 10px;
}

/* =========================
   SPECS
========================= */
.car-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #333;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.spec i {
  font-size: 1.4rem;
  color: #ff7a00;
}

/* =========================
   RIGHT IMAGE
========================= */
.rental-bg {
  position: relative;
  height: 520px;
  border-radius: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  transition: opacity 1s ease, transform 1s ease;
  z-index: 1;
}

/* Image glow */
.rental-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
 
  z-index: -1;
}

.rental-bg.fade-out {
  opacity: 0;
  transform: translateX(60px);
}

/* =========================
   TEXT & BUTTON
========================= */
.car-name {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  color: #111;
}

.book-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  background: green;
  border: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.45);
}

/* =========================
   RESPONSIVE – TABLET
========================= */
@media (max-width: 992px) {
  .rental-bg {
    height: 420px;
    background-position: center;
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */
@media (max-width: 768px) {
  .top-rentals::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .text-content {
    text-align: center;
  }

  .text-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .car-specs {
    grid-template-columns: 1fr 1fr;
  }

  .rental-bg {
    height: 320px;
    margin-top: 40px;
    background-position: center;
  }

  .book-btn {
    display: inline-flex;
    justify-content: center;
  }
}

/* =========================
   RESPONSIVE – SMALL MOBILE
========================= */
@media (max-width: 576px) {
  .car-specs {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rental-bg {
    height: 300px;
  }
}






/* =========================
   WHY CHOOSE US
========================= */
.why-us {
  background: #f8f9fa;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.185); 
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Icon top-left */
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  position: absolute;
  top: -26px;
  left: 26px;
}

/* Text spacing */
.why-card h5 {
  margin-top: 24px;
}

.why-card p {
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .icon-box {
    left: 20px;
  }
}








/* ===== SECTION ===== */
.premium-cars-section {
  padding: 70px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

/* ===== HEADING ===== */
.premium-cars-container {
  text-align: center;
  margin-bottom: 50px;
}

.premium-cars-title {
  font-size: 38px;
  font-weight: 800;
  color: #222;
}

.premium-cars-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* ===== GRID ===== */
.premium-cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* ===== CARD ===== */
.premium-car-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 2px solid #cfcdcd;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);

  transform: scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease;

  animation: cardReveal 0.9s ease both;
  will-change: transform;
}

.premium-car-card:hover {
  transform: scale(1.06);
  
}

/* ===== IMAGE SECTION ===== */
.premium-car-image {
  height: 300px;
  background: #e9e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-bottom: 1px solid #eeeeee;
}

.premium-car-image img {
  max-height: 280px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* ===== BASE STATE (IMPORTANT) ===== */
.premium-car-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ===== CARD HOVER ===== */
.premium-car-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}

/* ===== IMAGE BASE ===== */
.premium-car-image img {
  transition: transform 0.4s ease;
}

/* ===== IMAGE HOVER (FOLLOWS CARD) ===== */
.premium-car-card:hover .premium-car-image img {
  transform: scale(1.08);
}

/* ===== PRICE TAG ===== */
.premium-price-tag {
  position: static;              /* REMOVE absolute */
  display: block;
  width: fit-content;
  margin: -10px auto 10px auto;   /* spacing between image & content */
  background: #ffbc03;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-align: center;
}

.premium-booking-note {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #d32f2f;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* ===== CONTENT ===== */
.premium-car-content {
  padding: 26px;
  background: #ffffff;
}

.premium-car-name {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin-bottom: 18px;
}

/* ===== SPECS ===== */
.premium-car-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 14px;
  color: #444;
  margin-bottom: 24px;
}

.premium-car-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.premium-car-specs i {
  color: #ffbc03;
}

/* ===== BUTTONS ===== */


.premium-btn-orange,
.premium-btn-green {
  flex: 1;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.premium-btn-orange {
  background: #ffbc03;
  color: #ffffff;
}

.premium-btn-orange:hover {
  background: #ffbc03;
  transform: translateY(-2px);
}

/* FLEX SETUP */
.premium-car-actions {
  display: flex;
  gap: 14px;
}
.premium-car-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* VIEW DETAILS TAKES FULL SPACE */
.premium-btn-orange {
  flex: 1; /* takes remaining space */
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  background: #ffbc03;
  color: #fff;
}

.premium-btn-orange:hover {
  background: #e56d00;
  transform: translateY(-2px);
}

/* WHATSAPP ICON BUTTON */
.premium-btn-whatsapp {
  flex: 0 0 auto; /* fixed size */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


.premium-btn-green i {
  margin-right: 6px;
}

/* ===== VIEW ALL ===== */
.premium-view-all {
  text-align: center;
  margin-top: 50px;
}

.premium-view-all-btn {
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 15px;
}

/* ===== CARD ANIMATION ===== */
@keyframes cardReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .premium-cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .premium-cars-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .premium-car-image {
    height: 280px;
    padding: 20px;
  }

  .premium-car-image img {
    max-height: 260px;
    width: 100%;
  }

  .premium-car-name {
    font-size: 18px;
  }

  .premium-car-specs {
    font-size: 13px;
  }

  .premium-car-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
}

}
.premium-btn-whatsapp {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}




/* =========================
   FACTS SECTION
========================= */
.facts-section {
  position: relative;
  padding: 90px 0;
  background: url("../images/counter.webp") center/cover no-repeat;
  overflow: hidden;
}

.facts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.facts-section .container {
  position: relative;
  z-index: 2;
}

/* HEADER */
.facts-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
}

.facts-header p {
  margin-top: 8px;
  color: #d1d5db;
  font-size: 1rem;
}

/* GRID */
.facts-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.fact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* ICON */
.fact-card i {
  font-size: 2.2rem;
  color: #ffbc03;
  margin-bottom: 12px;
}

/* NUMBER */
.fact-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* LABEL */
.fact-card span {
  display: block;
  margin-top: 6px;
  color: #e5e7eb;
  font-size: 0.95rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .facts-section {
    padding: 70px 0;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}





.plan-trip-section {
  padding: 80px 0;
  background: #ffffff;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.plan-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
   /* dark orange */
}

.plan-header p {
  margin-top: 8px;
  font-size: 1rem;
  color: #f58c02; /* medium orange */
}

/* GRID */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

/* STEP */
.plan-step {
  transition: transform 0.4s ease;
}

.plan-step:hover {
  transform: translateY(-10px);
}

/* ICON */
.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbc03, #ff8903);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

/* ICON ANIMATION */
.icon-wrapper:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 15px 25px rgba(255, 140, 66, 0.4);
}

/* TEXT */
.plan-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e25822;
  margin-bottom: 12px;
}

.plan-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b4f3a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 2rem;
  }
}







/* ===== FEATURE HIGHLIGHT CSS ===== */
.fh-section {
  position: relative;
  padding: 10px 0; /* reduced top/bottom padding */
  background-size: cover;
  background-position: center;
  color: #000000;
  overflow: hidden;
}

.fh-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 
  z-index: 1;
}

.fh-container {
  position: relative;
  z-index: 2;
}

.fh-title {
  text-align: center;
  font-size: 3.5rem; /* desktop */
  margin-bottom: 5px;
  color: #ecae04;
  font-weight: bold;
}

/* Tablets */
@media (max-width: 991px) {
  .fh-title {
    font-size: 2.8rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .fh-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}


/* FLEX CONTAINER */
.fh-content {
  display: flex;
  justify-content: center;
  align-items: center; /* center points vertically with image */
  flex-wrap: wrap;
  gap: 35px; /* reduced gap */
}

/* LEFT & RIGHT POINTS */
.fh-points {
  display: flex;
  flex-direction: column;
  gap: 25px; /* slightly reduced gap */
  flex: 0 0 auto;
  max-width: 200px; 
}

.fh-left {
  text-align: left;
}

.fh-right {
  text-align: left;
}

/* SINGLE POINT */
.fh-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.fh-icon {
  background: #ffbc03;
  color: #fff;
  width: 55px;
  height: 55px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.fh-point h4 {
  margin: 0 0 4px;
  font-size: 1.4rem;
}

.fh-point p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* CENTER IMAGE */
.fh-center {
  flex: 1 1 auto; 
  text-align: center;
}

.fh-center img {
  max-width: 700px; 
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .fh-center img {
    max-width: 650px;
  }
}

@media (max-width: 1200px) {
  .fh-center img {
    max-width: 550px;
  }
}

@media (max-width: 992px) {
  .fh-section {
    padding: 15px 0; /* reduced top/bottom padding on mobile */
  }

  .fh-content {
    flex-direction: column; /* stack points and image vertically */
    gap: 30px;
  }

  .fh-left, .fh-right {
    text-align: center;
    max-width: 100%; /* points take full width */
    width: 100%;
    padding: 0 15px; /* optional side padding */
  }

  .fh-point {
    justify-content: flex-start; /* align items neatly */
    width: 100%; /* take full width */
    gap: 15px;
  }

  .fh-center img {
    max-width: 100%; /* image takes full screen width */
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
}








/* ===== GRADIENT CTA SECTION ===== */
.cta-section-gradient {
  position: relative;
  background: linear-gradient(135deg, #000000, #1a1a1a, #111111); /* dark gradient */
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-container-gradient {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-gradient {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ff9a03; /* bright orange title */
}

.cta-subtitle-gradient {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #fff;
}

.cta-btn-gradient {
  display: inline-block;
  background: #ffbc03; /* bright orange button */
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-btn-gradient:hover {
  background: #e05500; /* darker orange on hover */
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-title-gradient {
    font-size: 2.5rem;
  }
  .cta-subtitle-gradient {
    font-size: 1.1rem;
  }
  .cta-btn-gradient {
    padding: 12px 30px;
    font-size: 1rem;
  }
}





/* ===== FAQ SECTION ACCORDION ===== */
.faq-section-columns {
  padding: 50px 20px;
  background: #fff;
  color: #111;
}

.faq-title-columns {
  text-align: center;
  font-size: 3rem;
 
  margin-bottom: 40px;
  font-weight: bold;
}

/* FLEX TWO COLUMNS */
.faq-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ ITEM */
.faq-item {
  border-radius: 8px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-question-columns {
  width: 100%;
  padding: 15px 20px;
  background: #f1f1f1;
  border: none;
  outline: none;
  color: #111;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question-columns:hover {
  background: #ffc403;
  
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + becomes X when open */
}

.faq-answer-columns {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #f9f9f9;
}

.faq-answer-columns p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer-columns {
  max-height: 200px; /* adjust based on content */
  padding: 15px 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-columns {
    flex-direction: column;
    gap: 30px;
  }
  .faq-column {
    flex: 1 1 100%;
  }
  .faq-title-columns {
    font-size: 2.5rem;
  }
  .faq-question-columns {
    font-size: 1.1rem;
  }
  .faq-answer-columns p {
    font-size: 0.95rem;
  }
}





/* ===== FOOTER BLACK TEXTURED ===== */
/* ===== FOOTER TEXTURED ===== */
.footer-textured {
  background: #000 url('images/footer-texture.png') repeat;
  color: #fff;
  padding: 60px 20px 0;
  font-family: 'Poppins', sans-serif;
}

/* WRAPPER */
.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* LOGO LEFT */
.footer-logo {
  flex: 0 0 260px;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #ccc;
}

/* RIGHT DETAILS */
.footer-details {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* BOX */
.footer-box h4 {
  color: #ffc403;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #ffc403;
}

/* SOCIAL */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ffc403;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-details {
    grid-template-columns: 1fr;
  }
}






/* =========================
   ABOUT US – RIYA CAR RENTAL
========================= */

.aboutus-rcr-section {
  padding: 80px 0;
  background: #ffffff;
}

.aboutus-rcr-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.aboutus-rcr-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.aboutus-rcr-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.aboutus-rcr-content {
  padding-left: 10px;
}

.aboutus-rcr-tag {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  color: #ff7a00;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.aboutus-rcr-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.aboutus-rcr-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* LIST */
.aboutus-rcr-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.aboutus-rcr-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.aboutus-rcr-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7a00;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .aboutus-rcr-title {
    font-size: 2rem;
  }

  .aboutus-rcr-content {
    padding-left: 0;
  }
}









/* =========================
   HORIZONTAL BANNER SECTION
========================= */
.rcr-banner-section {
  position: relative;
  width: 100%;
  height: 250px; /* less height */
  background: url('../images/about1.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcr-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcr-banner-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 0 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rcr-banner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .rcr-banner-title {
    font-size: 1.5rem;
  }
}





/* SECTION BACKGROUND */
.pickup-info-section {
  background: linear-gradient(135deg, #fff5ec, #ffffff);
  padding: 90px 0;
}

/* TITLE */
.pickup-title {
  font-weight: 800;
  font-size: 2.6rem; /* increased */
  color: #111;
}

/* SUBTEXT */
.pickup-info-section p {
  font-size: 1.05rem;
}

/* LEFT LIST */
.pickup-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.pickup-list i {
  color: #ffaf03;
  font-size: 1.4rem; /* bigger icons */
  margin-top: 4px;
}

.pickup-list span strong {
  display: block;
  font-size: 1.05rem; /* increased */
  color: #111;
}

.pickup-list span small {
  color: #666;
  font-size: 0.95rem;
}

/* RIGHT AREA TAGS */
.pickup-area div {
  padding: 10px 16px;
  border-radius: 30px;
  background: #ffffff;
  font-size: 0.95rem; /* increased */
  font-weight: 500;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.pickup-area div:hover {
  background: #ffc403;
  
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .pickup-title {
    font-size: 2rem;
  }
}





/* CAR IMAGE */
.car-main-img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
}

/* RIGHT COLUMN */
.car-detail-right {
  max-width: 600px;
  margin-left: auto;
}



/* PREMIUM PRICE TAG */
.premium  {
  padding: 6px 18px;
  font-weight: 700;
  font-size: 1.6rem;
  display: inline-block;
}

/* PRICE SMALL TEXT */
.car-price small {
  font-size: 1.2rem;
  color: #666;
}

/* RATINGS 2x2 GRID */
.car-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px; /* vertical gap 20px, horizontal 40px */
  margin-top: 20px;
}

/* RATING ITEM */
.rating-item span {
  display: block;
  font-size: 1rem;
  color: #777;
  margin-bottom: 3px;
}

.rating-item strong {
  font-size: 1.3rem;
  color: #ffae01;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .car-main-img {
    max-height: 400px;
  }

  


  .rating-item strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .car-main-img {
    max-height: 300px;
  }

  

  .car-detail-right {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .car-ratings-grid {
    grid-template-columns: 1fr; /* stack on mobile */
    gap: 15px;
  }

  .rating-item {
    text-align: center;
  }
}




.specs-icon {
  font-size: 1.6rem;
  color: #ffc403;
  margin-bottom: 8px;
}
.specs-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: solid 1px rgba(0, 0, 0, 0.24);
}

.specs-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.specs-card p {
  margin: 0;
  color: #666;
}






.feature-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.feature-item i {
  font-size: 1.6rem;
  color: #ffc403;
  margin-bottom: 8px;
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
}

.feature-item:hover {
  background: #ff6a00;
  color: #fff;
}

.feature-item:hover i {
  color: #fff;
}
.features-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  border: solid 1px rgba(0, 0, 0, 0.24);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.feature-row i {
  font-size: 1.2rem;
  color: #ffc403;
}


.premium-btn-whatsapp,
.premium-btn-whatsapp i {
  text-decoration: none !important;
}


.has-plus::after {
  content: "+";
  margin-left: 3px;
}

.premium-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 10px;
  justify-content: center;
}

.premium-features span {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,0.05);
  white-space: nowrap;
}









/* Prevent overflow issues */
.navbar-brand {
  max-width: 65%;
}

.brand-text {
  font-size: 16px;
}

.brand-subtitle {
  font-size: 12px;
}

/* Make toggler smaller */
.navbar-toggler {
  font-size: 14px;
}

/* Call button styling */
.call-nav {
  background-color: #fff;
  color: #ffc403;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 25px;
  border: 1px solid #ffc403;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Extra small devices */
@media (max-width: 400px) {
  .brand-text {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .navbar-brand img {
    height: 35px;
  }
}





.about-goa-rental h2 {
  font-weight: 700;
  
}

.about-goa-rental p {
  font-size: 16px;
  color: #333;
}

.about-goa-rental ul li {
  font-size: 15px;
}

/* Make list wrap nicely on small screens */
@media (max-width: 768px) {
  .about-goa-rental ul {
    flex-direction: column !important;
    gap: 0.5rem;
  }
}

.about-goa-rental img {
  width: 100%;          /* take full width of the column */
  max-width: 600px;     /* optional: limit max width on large screens */
  height: auto;         /* maintain aspect ratio */
  border-radius: 10px;  /* rounded corners */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* subtle shadow */
  object-fit: cover;    /* crop nicely if needed */
}



/* Mobile adjustments */
@media (max-width: 768px) {
  .about-goa-rental img {
    height: auto;        /* normal height on small screens */
  }
}
