/* =============================================
   SAFE DRIVE TRAVEL - NEW DESIGN SYSTEM
   Colors: #78bb26 (Green) | #ed6663 (Coral)
   Font: Montserrat Alternates
============================================= */

:root {
  --green: #78bb26;
  --green-dark: #558d10;
  --green-glow: rgba(30, 203, 21, 0.25);
  --coral: #ed6663;
  --coral-dark: #d94f4c;
  --coral-light: rgba(237, 102, 99, 0.15);
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-4: #242424;
  --white: #ffffff;
  --light: #f9f9f9;
  --white-80: rgba(255,255,255,0.8);
  --white-20: rgba(255,255,255,0.08);
  --font: 'Montserrat Alternates', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0;}
img { max-width: 100%; display: block; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ===================== LOADER ===================== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-size: 26px; font-weight: 800; letter-spacing: 2px; }
.loader-logo span { color: var(--green); }
.loader-bar {
  width: 200px; height: 3px;
  background: var(--dark-4); border-radius: 2px; overflow: hidden;
}
.loader-bar-inner {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--coral));
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ===================== HEADER ===================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 30px;
  background: #fff;
  transition: var(--transition);
}
#site-header.scrolled {
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; max-width: 1400px; margin: 0 auto;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    box-shadow: 0 0 20px var(--green-glow);
    padding: 2px;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block; font-size: 17px; font-weight: 800;
  letter-spacing: 0.5px;
}
.logo-text small {
  font-size: 10px; font-weight: 500;
  color: var(--green); letter-spacing: 2px; text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav > li { position: relative; }
.desktop-nav > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--dark);
  transition: var(--transition);
}
.desktop-nav > li > a:hover,
.desktop-nav > li.active > a {
  color: var(--green);
  background: var(--white-20);
}
.desktop-nav .has-dropdown > a::after {
  content: '\f107'; font-family: FontAwesome;
  font-size: 11px; margin-top: 1px;
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--dark-3);
    border: 1px solid rgba(30, 203, 21, 0.15);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* columns: 2; */
    /* column-gap: 4px; */
    max-height: 420px;
    overflow: auto;
}
.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu-custom li a {
  display: block; padding: 8px 12px;
  font-size: 12px; font-weight: 500;
  color: var(--white-80); border-radius: 8px;
  transition: var(--transition);
  break-inside: avoid;
}
.dropdown-menu-custom li a:hover {
  background: var(--white-20); color: var(--green);
}

/* Header CTA */
.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-call {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  background: var(--dark);
  color: var(--white); border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.btn-call:hover { background: var(--coral); border-color: var(--coral); }
.btn-book-header {
  padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--green-glow);
}
.btn-book-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
#mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: var(--transition);
}
#mobile-menu-overlay.open { opacity: 1; visibility: visible; }

#mobile-nav-panel {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 85vw); z-index: 1000;
  background: var(--dark-2);
  padding: 80px 24px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
    display: flex;
    flex-direction: column;
}
#mobile-nav-panel.open { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--white-80); transition: var(--transition);
}
.mobile-nav-links a:hover { background: var(--white-20); color: var(--green); }
.mobile-submenu { display: none; padding-left: 16px; margin-top: 4px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { font-size: 13px; font-weight: 500; padding: 8px 14px; }
.mobile-toggle-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.mobile-toggle-btn i { transition: transform 0.3s; }
.mobile-toggle-btn.open i { transform: rotate(180deg); }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-align: center;
}
.mobile-cta .mc-call { background: var(--coral); color: var(--white); }
.mobile-cta .mc-book {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark);
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px; position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--green); border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 5px; opacity: 1; }
  50% { top: 14px; opacity: 0; }
}

.hfb-text strong { font-size: 14px; font-weight: 800; display: block; }
.hfb-text span { font-size: 10px; color: var(--white-80); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===================== MARQUEE STRIP ===================== */
.marquee-strip {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  padding: 14px 0; overflow: hidden; position: relative; z-index: 2;
}
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 30px; font-size: 12px; font-weight: 700;
  color: var(--dark); letter-spacing: 1px; text-transform: uppercase;
}
.marquee-item::after {
  content: '●'; font-size: 8px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== SECTION BASE ===================== */
section { padding: 35px 0; }
.section-wrap { max-width: 1400px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -1px;
}
.section-title .highlight { color: var(--green); }
.section-title .highlight-coral { color: var(--coral); }
.section-desc {
  font-size: 15px; color: var(--dark-3);
  max-width: 560px; margin: 16px auto 0;
  line-height: 1.8;
}

/* Fade in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== BOOKING SECTION ===================== */
#booking {
  border-top: 1px solid rgba(30,203,21,0.1);
  border-bottom: 1px solid rgba(30,203,21,0.1);
  padding: 30px 0;
  position: relative; overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.booking-info .bi-title {
  font-size: 32px; font-weight: 900;
  line-height: 1.2; margin-bottom: 16px;
}
.booking-info .bi-title span { color: var(--green); }
.booking-info .bi-desc { color: var(--dark); font-size: 14px; line-height: 1.8; }
.booking-info .bi-contact {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 16px; border-radius: 12px;
  background: rgba(30,203,21,0.07);
  border: 1px solid rgba(30,203,21,0.2);
}
.bi-contact .bc-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--green); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.bi-contact .bc-text strong { font-size: 16px; font-weight: 800; }
.bi-contact .bc-text span { font-size: 12px; color: var(--white-80); color: #000; }

/* Booking Form */
.booking-form-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
}
.booking-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--coral));
}
.booking-form-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--white-80); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.form-control-custom {
  width: 100%; padding: 12px 16px;
  background: var(--dark-4);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px; color: var(--white);
  font-family: var(--font); font-size: 14px;
  transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-control-custom:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: rgba(30,203,21,0.04);
}
.form-control-custom::placeholder { color: rgba(255,255,255,0.3); }
select.form-control-custom {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2#78bb26' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select.form-control-custom option { background: var(--dark-3); }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); border: none; border-radius: 12px;
  font-family: var(--font); font-size: 15px; font-weight: 800;
  letter-spacing: 0.5px; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px var(--green-glow);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,203,21,0.4);
}

/* ===================== WHY CHOOSE US ===================== */
#why-us {
  background: var(--light);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,203,21,0.05), transparent 70%);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  width: 100%; border-radius: 20px;
  object-fit: cover; height: 480px;
}
.why-image-overlay {
  position: absolute; inset: 0;
  border-radius: 20px;
}
.why-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--dark-2);
  border: 1px solid rgba(30,203,21,0.3);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.wib-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wib-text strong { display: block; font-size: 22px; font-weight: 900; color: #fff;}
.wib-text span { font-size: 12px; color: var(--white-80); }

.why-content { }
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 22px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(30,203,21,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 44px; height: 44px; border-radius: 10px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(30,203,21,0.15), rgba(30,203,21,0.05));
  border: 1px solid rgba(30,203,21,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--green);
}
.fc-title { font-size: 14px; font-weight: 800; margin-bottom: 8px; color: #fff;}
.fc-desc { font-size: 12px; color: var(--white-80); line-height: 1.6; }

/* ===================== CARS SECTION ===================== */
#cars {
  background: var(--white);
  position: relative;
}
.cars-filter {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 50px; flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: #0000002b;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green); color: var(--dark);
  border-color: var(--green);
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.car-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid #a3a3a3;
}
.car-card:hover {
  border-color: rgba(30,203,21,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.car-card-header {
  padding: 20px 20px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.car-category-tag {
  padding: 4px 12px; border-radius: 50px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.tag-suv { background: rgba(30,203,21,0.12); color: var(--green); }
.tag-hatchback { background: rgba(237,102,99,0.12); color: var(--coral); }
.tag-sedan { background: rgba(100,149,237,0.12); color: #6495ed; }
.tag-mpv { background: rgba(255,193,7,0.12); color: #ffc107; }

.car-price-badge {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white); border-radius: 10px;
  padding: 6px 12px; font-size: 13px; font-weight: 900;
  text-align: right;
  display: none;
}
.car-price-badge small { font-size: 9px; font-weight: 500; display: block; }

.car-img-wrap {
  padding: 0px 30px; text-align: center; position: relative;
}
.car-img-wrap img {
  height: 160px; width: 100%; object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.06) translateY(-5px); }

.car-card-body { padding: 0 20px 20px; }
.car-name { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.car-specs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.car-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    background: rgb(0 0 0 / 8%);
    border-radius: 6px;
    padding: 5px 8px;
}
.car-spec i { color: var(--green); font-size: 10px; }
.car-actions { display: flex; gap: 8px; }
.btn-car-book {
  flex: 1; padding: 11px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); border: none; border-radius: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  cursor: pointer; transition: var(--transition); text-align: center;
  text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.btn-car-book:hover { box-shadow: 0 6px 20px var(--green-glow); }
.btn-car-call {
  padding: 11px 16px;
  background: var(--coral-light);
  border: 1.5px solid var(--coral);
  color: var(--coral); border-radius: 8px;
  font-size: 14px; cursor: pointer; transition: var(--transition);
  text-decoration: none; display: flex; align-items: center;
}
.btn-car-call:hover { background: var(--coral); color: var(--white); }

/* ===================== ABOUT SECTION ===================== */
#about {
  background: var(--light);
  position: relative; overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: 20px;
  object-fit: cover; height: 500px;
}
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border-radius: 16px; object-fit: cover;
  border: 4px solid var(--dark);
}
.about-line {
  width: 60px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--coral));
  margin-bottom: 24px;
}
.about-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.about-title span { color: var(--green); }
.about-desc { font-size: 15px; color: var(--dark-3); line-height: 1.9; margin-bottom: 30px; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 500;
}
.about-list li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(30,203,21,0.12);
  border: 1.5px solid var(--green);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2#78bb26' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.btn-about {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
  transition: var(--transition); text-decoration: none;
}
.btn-about:hover {
  background: var(--green); color: var(--dark);
  box-shadow: 0 8px 24px var(--green-glow);
}
/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: var(--white);
  position: relative; overflow: hidden;
}
.testimonials-slider-wrap { position: relative; }
.testimonials-slider {
  overflow: hidden;
  width: 100%;
}
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  /* JS sets width — this is the fallback */
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 30px;
  position: relative;
  box-sizing: border-box;
}
.testimonial-card:hover {
  border-color: rgba(30,203,21,0.2);
}
.tc-quote {
  font-size: 36px; color: var(--green);
  opacity: 0.4; line-height: 1; margin-bottom: 16px;
  font-family: serif;
}
.tc-text {
  font-size: 14px; color: var(--white-80);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.tc-footer { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.tc-avatar-placeholder {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 18px; font-weight: 800;
  border: 2px solid rgba(30,203,21,0.3);
  flex-shrink: 0;
}
.tc-info strong { font-size: 14px; font-weight: 800; display: block; color: #fff;}
.tc-info .tc-role { font-size: 11px; color: var(--white-80); }
.tc-stars { display: flex; gap: 2px; margin-top: 4px; }
.tc-stars i { color: #ffc107; font-size: 11px; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-3); border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--green); border-color: var(--green); color: var(--dark);
}
.slider-dots { display: flex; gap: 6px; align-items: center; }
.dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.2);
  transition: var(--transition); cursor: pointer;
}
.dot.active { background: var(--green); width: 20px; }

/* ===================== FAQ ===================== */
#faq {
  background: var(--light);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
  transition: var(--transition);
  margin-bottom: 10px;
}
.faq-item:hover { border-color: rgba(30,203,21,0.2); }
.faq-question {
  width: 100%; padding: 20px 24px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  color: var(--white); text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question.open { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white-20); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--green); color: var(--dark); transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px; color: var(--white-80); line-height: 1.8;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===================== FLOATING BUTTONS ===================== */
.floating-btns {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 500; display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: none; text-decoration: none;
}
.float-wa { background: #25d366; color: var(--white); }
.float-call { background: var(--coral); color: var(--white); }
.float-btn:hover { transform: scale(1.12); }
.float-btn .tooltip-f {
  position: absolute; right: 62px;
  background: var(--dark-2); color: var(--white);
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: var(--transition);
  pointer-events: none;
}
.float-btn:hover .tooltip-f { opacity: 1; }

/* ===================== QUICK QUERY POPUP ===================== */
#quick-query-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
#quick-query-overlay.open { opacity: 1; visibility: visible; }

.quick-query-modal {
  background: var(--dark-2);
  border: 1px solid rgba(30,203,21,0.2);
  border-radius: 24px; width: 100%; max-width: 520px;
  overflow: hidden; position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(30,203,21,0.1);
}
#quick-query-overlay.open .quick-query-modal {
  transform: scale(1) translateY(0);
}
.qqm-header {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  padding: 28px 30px; position: relative;
  border-bottom: 1px solid rgba(30,203,21,0.1);
}
.qqm-header::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--coral));
}
.qqm-title { font-size: 22px; font-weight: 900; color: #fff; }
.qqm-title span { color: var(--green); }
.qqm-subtitle { font-size: 13px; color: var(--white-80); margin-top: 4px; }
.qqm-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white-20); border: none;
  color: var(--white); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qqm-close:hover { background: var(--coral); transform: rotate(90deg); }

.qqm-body { padding: 28px 30px; }
.qqm-body .form-group { margin-bottom: 14px; }
.qqm-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.btn-qqm-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); border: none; border-radius: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-qqm-submit:hover { box-shadow: 0 8px 24px var(--green-glow); }
.qqm-or {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--white-80); text-transform: uppercase;
  letter-spacing: 1px;
}
.qqm-or::before, .qqm-or::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.1);
}
.btn-qqm-wa {
  width: 100%; padding: 13px;
  background: rgba(37,211,102,0.1);
  border: 1.5px solid #25d366; color: #25d366;
  border-radius: 10px; font-family: var(--font);
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); text-decoration: none;
}
.btn-qqm-wa:hover { background: #25d366; color: var(--white); }

/* Quick Query trigger btn */
.float-query {
  position: fixed; left: 24px; bottom: 24px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); border: none; border-radius: 50px;
  padding: 14px 22px; font-family: var(--font);
  font-size: 13px; font-weight: 800; cursor: pointer;
  box-shadow: 0 8px 28px var(--green-glow);
  transition: var(--transition);
}
.float-query:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30,203,21,0.4); }

/* ===================== FOOTER ===================== */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 70px;
}
.footer-top {
  max-width: 1400px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-brand .fb-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-brand .fb-logo span { font-size: 17px; font-weight: 800; color: #fff;}
.footer-brand p {
  font-size: 13px; color: var(--white-80);
  line-height: 1.8; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white-20);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-80); font-size: 14px;
  transition: var(--transition); cursor: pointer;
}
.social-btn:hover {
  background: var(--green); color: var(--dark); border-color: var(--green);
}

.footer-col .fc-title {
  font-size: 14px; font-weight: 800;
  margin-bottom: 18px; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.footer-col .fc-title::before {
  content: ''; width: 16px; height: 3px;
  background: var(--green); border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px; color: var(--white-80);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--green); opacity: 0;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--green); padding-left: 8px;
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.fci-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(30,203,21,0.1);
  border: 1px solid rgba(30,203,21,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 13px; flex-shrink: 0;
}
.fci-text { font-size: 13px; color: var(--white-80); line-height: 1.6; }
.fci-text a { color: var(--white-80); transition: var(--transition); }
.fci-text a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 30px; max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--white-80); margin-bottom: 0;}
.footer-bottom a { color: var(--green); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--white-80); transition: var(--transition); }
.footer-legal a:hover { color: var(--green); }

/* ===================== SECTION: CONTENT INFO ===================== */
#content-info {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.content-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.ci-title { font-size: 26px; font-weight: 900; margin-bottom: 20px; color: #fff; }
.ci-title span { color: var(--green); }
.ci-text { color: var(--white-80); font-size: 14px; line-height: 1.9; margin-bottom: 20px; }
.ci-steps { counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.ci-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 12px;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.05);
  counter-increment: step;
  transition: var(--transition);
}
.ci-step:hover { border-color: rgba(30,203,21,0.2); }
.ci-step-num {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark); font-weight: 900; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.ci-step-text { font-size: 13px; color: var(--white-80); line-height: 1.7; }
.ci-step-text strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 3px; }

/* ===================== SUCCESS TOAST ===================== */
#toast-msg {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px);
  z-index: 5000;
  background: var(--dark-2); border: 1.5px solid var(--green);
  border-radius: 12px; padding: 14px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  opacity: 0; transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
#toast-msg.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
#toast-msg i { color: var(--green); font-size: 18px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-image-wrap img, .about-img-main { height: 320px; }
  .about-img-accent { display: none; }
}
@media (max-width: 900px) {
  .desktop-nav, .btn-call { display: none; }
  .hamburger { display: flex; }
  .booking-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .content-info-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}


@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .hero-stats { gap: 20px; }
  .float-query { bottom: 80px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ============================================================
   BOOK NOW PAGE — booking-page section CSS
   White background | #78bb26 green | #ed6663 coral
   Font: Montserrat Alternates
============================================================ */

/* ── Section wrapper ─────────────────────────────────────── */
.booking-page {
  background: #fff;
  min-height: calc(100vh - 78px);
  padding: 60px 0 !important;
  font-family: 'Montserrat Alternates', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background decorative grid */
.booking-page::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30,203,21,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,203,21,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Green glow blob top-right */
.booking-page::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,203,21,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section title ───────────────────────────────────────── */
.booking-page .section-title { margin-bottom: 28px; }
.booking-page .section-title .title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
  line-height: 1.15;
}
.booking-page .section-title .title span { color: #78bb26; }

/* ── Form card ───────────────────────────────────────────── */
.booking-page form {
  background: #fff;
  border: 1.5px solid #e5ede5;
  border-radius: 22px;
  padding: 38px 36px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
}

/* top gradient bar */
.booking-page form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #78bb26, #ed6663);
}

/* ── Inputs & select & textarea ──────────────────────────── */
.booking-page .form-control {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  background: #f7faf7;
  border: 1.5px solid #ddeadd;
  border-radius: 10px;
  padding: 12px 16px;
  height: auto;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
  box-shadow: none;
}
.booking-page .form-control::placeholder { color: #a8b8a8; }
.booking-page .form-control:focus {
  border-color: #78bb26;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,203,21,0.12);
}

/* select arrow */
.booking-page select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2#78bb26' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.booking-page select.form-control option { background: #fff; color: #111; }

/* textarea */
.booking-page textarea.form-control { resize: vertical; min-height: 100px; }

/* date field fix */
.booking-page input[type="date"].form-control,
.booking-page input[type="text"].form-control { }

/* ── Submit button ───────────────────────────────────────── */
.booking-page .btn[type="submit"] {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, #78bb26, #558d10);
  border: none;
  border-radius: 10px;
  padding: 13px 36px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(30,203,21,0.3);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
}
.booking-page .btn[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,203,21,0.4);
}

/* shine sweep on hover */
.booking-page .btn[type="submit"]::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.4,0,0.2,1);
}
.booking-page .btn[type="submit"]:hover::after { left: 140%; }

/* ── Video column ────────────────────────────────────────── */
.booking-page video {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  border: 1.5px solid #e5ede5;
  position: relative; z-index: 2;
}

/* green accent ring around video */
.booking-page .col-lg-6:last-child {
  position: relative;
}
.booking-page .col-lg-6:last-child::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 26px;
  border: 2px dashed rgba(30,203,21,0.2);
  pointer-events: none;
  animation: bk-ring-spin 18s linear infinite;
}
@keyframes bk-ring-spin { to { transform: rotate(360deg); } }

/* ── Coral glow blob bottom-left ─────────────────────────── */
.booking-page .col-lg-6:last-child::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,102,99,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .booking-page form { padding: 28px 22px !important; }
  .booking-page video { margin-top: 10px; }
  .booking-page .col-lg-6:last-child::before { display: none; }
}
@media (max-width: 576px) {
  .booking-page { padding: 36px 0 !important; }
  .booking-page form { border-radius: 16px; padding: 22px 16px !important; }
  .booking-page .section-title .title { font-size: 26px; }
}
/* ============================================================
   PAGE HEADING BANNER — global .page-heading
   Used on Contact, About, Gallery, Car pages etc.
   White text | #78bb26 green | #ed6663 coral accents
   Font: Montserrat Alternates
============================================================ */

.page-heading {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 90px 0 70px;
  margin-top: 78px; /* matches fixed header height */
  overflow: hidden;
  font-family: 'Montserrat Alternates', sans-serif;
}

/* Dark overlay */
.page-heading::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 5, 0.82) 0%,
    rgba(10, 28, 10, 0.72) 50%,
    rgba(5, 10, 5, 0.78) 100%
  );
  z-index: 1;
}

/* Green bottom border line */
.page-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #78bb26, #ed6663, transparent);
  z-index: 2;
}

/* Grid pattern overlay */
.page-heading .container,
.page-heading .row,
.page-heading .col-xs-12 {
  position: relative; z-index: 3;
}

/* Decorative glow blobs */
.page-heading .container::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,203,21,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.page-heading .container::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,102,99,0.09) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── Page Title ─────────────────────────────────────────── */
.page-title {
  text-align: center;
  position: relative; z-index: 1;
}

/* eyebrow line above h2 */
.page-title::before {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
  border-radius: 2px;
  margin: 0 auto 14px;
}

.page-title h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Green highlight on last word via a utility —
   wrap any word in <span> inside h2 to color it:
   e.g. Contact <span>Us</span>             */
.page-title h2 span { color: #78bb26; }

/* Breadcrumb (optional — add .page-breadcrumb div below .page-title) */
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.page-breadcrumb a {
  color: #78bb26;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-breadcrumb a:hover { opacity: 0.8; }
.page-breadcrumb .sep { opacity: 0.35; font-size: 14px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-heading { padding: 70px 0 54px; margin-top: 68px; }
  .page-title h2 { font-size: 30px; letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .page-heading { padding: 56px 0 44px; }
  .page-title h2 { font-size: 26px; }
}

/* ============================================================
   CAR DETAIL PAGE — section CSS
   White background | #78bb26 green | #ed6663 coral
   Font: Montserrat Alternates
============================================================ */

/* ── Tour Image ─────────────────────────────────────────── */
.tour-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1.5px solid #e5ede5;
  position: relative;
}
.tour-img::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
  z-index: 1;
}
.tour-img img {
  width: 100%;
  display: block;
  border-radius: 0;
  border: none;
  transition: transform 0.5s ease;
}
.tour-img:hover img { transform: scale(1.02); }

/* ── Description Section ────────────────────────────────── */
.description-section {
  background: #fff;
  border: 1.5px solid #e5ede5;
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.description-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
}

/* Car name heading */
.forum-details h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #e5ede5;
  position: relative;
}
.forum-details h3::after {
  content: '';
  position: absolute; bottom: -1.5px; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
  border-radius: 2px;
}

/* Paragraphs */
.forum-details p {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}
.forum-details p:last-child { margin-bottom: 0; }
.forum-details p strong { color: #111; font-weight: 700; }

/* ── Sidebar Widgets ────────────────────────────────────── */
.service-sidebar.sidebar-widget {
  background: #fff;
  border: 1.5px solid #e5ede5;
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.service-sidebar.sidebar-widget::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
}

/* Sidebar section title */
.service-sidebar .section-title { margin-bottom: 18px; }
.service-sidebar .section-title .title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.3px;
}
.service-sidebar .section-title .title span { color: #78bb26; }

/* Sidebar links list */
.service-sidebar ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.service-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

/* Arrow icon */
.service-sidebar ul li a::before {
  content: '\f105';
  font-family: FontAwesome;
  font-size: 12px;
  color: #78bb26;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.service-sidebar ul li a:hover {
  background: rgba(30,203,21,0.06);
  border-color: rgba(30,203,21,0.25);
  color: #78bb26;
  padding-left: 18px;
}
.service-sidebar ul li a:hover::before { transform: translateX(3px); }

/* Active / current page link */
.service-sidebar ul li.active a,
.service-sidebar ul li a.active {
  background: linear-gradient(135deg, #78bb26, #558d10);
  color: #111;
  border-color: transparent;
  font-weight: 800;
}
.service-sidebar ul li.active a::before,
.service-sidebar ul li a.active::before { color: #111; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .service-sidebar.sidebar-widget { margin-top: 0; }
  .description-section { padding: 24px 20px; }
}
@media (max-width: 576px) {
  .description-section { padding: 20px 16px; }
  .service-sidebar.sidebar-widget { padding: 20px 16px; }
  .forum-details h3 { font-size: 20px; }
}

/* ============================================================
   GALLERY PAGE — section CSS
   White background | #78bb26 green | #ed6663 coral
   Font: Montserrat Alternates
============================================================ */

/* ── Section wrapper ────────────────────────────────────── */
.ratio3_2 {
  font-family: 'Montserrat Alternates', sans-serif;
}

/* ── Gallery Title ──────────────────────────────────────── */
.title-1 {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}
.title-1 .h1 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #111;
  letter-spacing: -1.5px;
  line-height: 1.1;
  display: inline-block;
  position: relative;
}

/* Green underline accent */
.title-1 .h1::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Grid spacing ───────────────────────────────────────── */
.mar-b-30 { margin-bottom: 24px; }

/* ── Gallery Image Card ─────────────────────────────────── */
.gallery_img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #e5ede5;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  background: #f7faf7;
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s,
              transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.gallery_img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
  border-color: rgba(30,203,21,0.4);
}

/* Top gradient bar on hover */
.gallery_img::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #78bb26, #ed6663);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.gallery_img:hover::before { transform: scaleX(1); }

/* Overlay on hover */
.gallery_img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,203,21,0.15) 0%,
    rgba(0,0,0,0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.gallery_img:hover::after { opacity: 1; }

/* Zoom icon on hover */
.gallery_img a::after {
  content: '\f00e';
  font-family: FontAwesome;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #fff;
  font-size: 28px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery_img:hover a::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Anchor fills the card */
.gallery_img a {
  display: block;
  width: 100%; height: 100%;
  position: relative;
}

/* Image fills card */
.gallery_img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0;
}
.gallery_img:hover img { transform: scale(1.07); }

#hero {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 78px;
    border-radius: 25px;
    max-width: 96%;
    margin-inline: auto;
}



/* ── Slide backgrounds ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1),
              transform 6s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
  display: none;
}
 
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
 
/* Dark overlay on images */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,12,3,0.82) 0%,
    rgba(8,20,6,0.70) 45%,
    rgba(5,10,3,0.30) 100%
  );
}
 
/* Individual slides */
.hero-slide:nth-child(1) { background-image: url('assets/images/slider/slider-01.jpg'); }
.hero-slide:nth-child(2) { background-image: url('assets/images/slider/slider-02.jpg'); }
.hero-slide:nth-child(3) { background-image: url('assets/images/slider/slider-03.jpg'); }
.hero-slide:nth-child(4) { background-image: url('assets/images/slider/slider-04.jpg'); }
.hero-slide:nth-child(5) { background-image: url('assets/images/slider/slider-05.jpg'); }
 
/* Green grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(30,203,21,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,203,21,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  display: none;
}
 
/* Glow blobs */
.hero-glow-1 {
  position: absolute;
  z-index: 1;
  top: -80px; left: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,203,21,0.10) 0%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  z-index: 1;
  bottom: -60px; left: 30%;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,102,99,0.07) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite reverse;
  pointer-events: none;
}
 
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
 

 
/* ── Hero Content (slides with background) ── */
.hero-content-wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
 
/* Owl overrides for hero */
.hero-owl { width: 100%; }
.hero-owl .owl-stage-outer { overflow: hidden; }

/* Hide owl default nav/dots — we use our own */
.hero-owl .owl-nav,
.hero-owl .owl-dots { display: none !important; }
/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(255 255 255 / 12%);
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
 
/* Title */
.hero-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
}
.hero-title .accent-green { color: var(--green); }
.hero-title .accent-coral { color: var(--coral); }
.hero-title span { display: block; }
 .hero-title span.accent-coral{
  display: inline-block;
 }
/* Description */
.hero-desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--white-80);
    max-width: 520px;
    line-height: 1.2;
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
 
/* Trust chips */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white-80);
}
.trust-chip i {
  color: var(--green);
  font-size: 14px;
}
 
/* Action buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 25px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--green-glow);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(30,203,21,0.45);
}
.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-call-hero:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-light);
}
.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
    padding: 11px 25px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border: 1.5px solid #25d366;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-wa-hero:hover {
  background: #25d366;
  color: var(--white);
}
 
/* ── Slide indicators / arrows ── */
.hero-controls {
    position: absolute;
    bottom: 2%;
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}
 
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--green);
  width: 28px;
}
 
.hero-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--dark);
}
 
/* Slide counter */
.hero-counter {
  position: absolute;
  top: 7px;
  right: 30px;
  z-index: 10;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}
.hero-counter strong { color: var(--green); font-size: 22px; font-weight: 900; }
 
/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--coral));
  z-index: 10;
  transition: none;
}
.hero-progress-bar.animating {
  transition: width 5s linear;
}
 
/* ── Booking Form (FIXED – does not slide) ── */
.hero-booking-col {
  position: relative;
  z-index: 5;
}
 @media (min-width:768px) {
  .hero-booking-col{
        position: absolute;
        z-index: 5;
        right: 4%;
        top: 50%;
        max-width: 400px;
        transform: translateY(-50%);
  }
 }
.booking-card {
  background: var(--dark-2);
  border: 1px solid rgba(30,203,21,0.15);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
  line-height: 1;
}
 
/* Top accent bar */
.booking-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--coral));
}
 
/* Limited badge */
.booking-limited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(237,102,99,0.1);
  border-bottom: 1px solid rgba(237,102,99,0.15);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
  display: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.booking-limited .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: blink 1.2s ease-in-out infinite;
}
 
/* Form header */
.booking-header {
  padding: 12px 15px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.booking-header h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 5px;
}
.booking-header h3 span { color: var(--green); }
.booking-header p {
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(255,255,255,1);
  font-weight: 500;
}
 
/* Form body */
.booking-form-body {
    padding: 16px 18px 15px;
}
 
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group label span { color: var(--coral); }
 
.form-ctrl {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgb(255 255 255 / 32%);
  border-radius: 9px;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: var(--green);
  background: rgba(30,203,21,0.04);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-ctrl::placeholder { color: rgba(255, 255, 255, 0.692); }
select.form-ctrl {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2#78bb26' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
select.form-ctrl option { background: var(--dark-3); }
 
.btn-booking-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 22px var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
}
.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,203,21,0.45);
}
 
/* Quick contact row */
.booking-quick-contact {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.bqc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.bqc-call {
  background: rgba(237,102,99,0.1);
  border: 1.5px solid var(--coral);
  color: var(--coral);
}
.bqc-call:hover { background: var(--coral); color: var(--white); }
.bqc-wa {
  background: rgba(37,211,102,0.1);
  border: 1.5px solid #25d366;
  color: #25d366;
}
.bqc-wa:hover { background: #25d366; color: var(--white); }
 
/* Safety note */
.booking-safety {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  font-weight: 500;
}
.booking-safety i { color: var(--green); margin-right: 4px; }
 
/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .hero-counter { display: none; }
}
 
@media (max-width: 640px) {
  .hero-title { font-size: 30px; letter-spacing: -1px; }
  .hero-desc { font-size: 13px; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .btn-primary-hero, .btn-call-hero, .btn-wa-hero {
    padding: 12px 18px;
    font-size: 13px;
  }
  .form-row-2 { grid-template-columns: 1fr; }
  .booking-form-body { padding: 16px 18px 20px; }
  .booking-header { padding: 18px 18px 14px; }
}
 
/* Demo note styling */
.demo-note {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,203,21,0.15);
  border: 1px solid rgba(30,203,21,0.3);
  color: #78bb26;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 9999;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .title-1 { margin-bottom: 30px; }
  .mar-b-30 { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .gallery_img { border-radius: 10px; }
}
@media (max-width: 768px){
.btn-book-header{
	white-space: nowrap;
}
#site-header{
	padding-inline: 15px;
}
.logo-text small{
	display: none;
}
.logo-text {
    min-width: 82px;
}	
.section-wrap{
	padding-inline: 15px;
}
.booking-grid{
	display: flex;
	flex-direction: column-reverse;
}
.booking-form-card{
	padding: 16px;
	width: 100%;
	line-height: 1;
}
.booking-form-title{
	font-size: 22px;
}
.form-row{
	gap: 0;
}
section{
	padding: 30px 0;
}
.float-query{
	
        bottom: 17px;
        left: 17px;
        padding: 13px 16px;
        line-height: 1;
}
.floating-btns{
	
    right: 12px;
    bottom: 12px;
}
.float-btn{
	
    width: 40px;
    height: 40px;
}
#footer{
	padding-top: 30px;
}
.footer-top{
	padding-inline: 15px;
}
.faq-question{
	
    padding: 11px 11px;
    line-height: 1.3;
}
.qqm-body{
	
    line-height: 1;
}
.qqm-header{
    padding: 13px 18px;
    line-height: 1.3;
}
.qqm-body{
	padding: 16px;
}
}

#hero-content-slides .owl-stage-outer {
  overflow: hidden;
}

#hero-content-slides .owl-stage {
  display: flex;
}

#hero-content-slides .owl-item {
  flex-shrink: 0;
}
.hero-content-slide{
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-position: center;
}
.hero-content-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.inner__content{
  padding-block: 50px;
}
@media(max-width:768px){
  .hero-badge{
    display: none;
  }
  .hero-content-wrap{
    
    border-radius: 25px;
    margin-bottom: 12px;
  }
  .hero-trust{
    display: none;
  }
  .hero-title{
    font-size: 24px;
  }
  .site-logo{
    gap: 4px;
  }
  .btn-call{
        display: inline-block;
        padding: 8px;
        font-size: 10px;
        white-space: nowrap;
  }
  .btn-book-header{
    display: none;
  }
  .logo-text strong{
    font-size: 14px;
  }
  .inner__content{
    padding-block: 50px 80px;
  }
}