/* d:\sjstravels\assets\css\style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #051024;
  --secondary-color: #0A192F;
  --accent-color: #D4AF37;
  --bg-color: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(5, 16, 36, 0.15);
  --shadow-premium: 0 30px 60px rgba(5, 16, 36, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Styles & Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.subtitle-top {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/* Premium Utilities */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

.text-accent-custom {
  color: var(--accent-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary-color) !important;
}

.bg-accent-custom {
  background-color: var(--accent-color) !important;
}

.btn-custom {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  padding: 14px 32px;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-custom:hover {
  background-color: #08285c;
  border-color: #08285c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-radius: 4px;
  padding: 14px 32px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-accent:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 4px;
  padding: 14px 32px;
  font-weight: 500;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 4px;
  padding: 14px 32px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-glass:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR — CLEAN CLASS-BASED STYLES
   ============================================= */

/* Logo Icon Only */
.navbar-icon {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin: auto 0;
  display: block;
  flex-shrink: 0;
}

/* Brand block */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none !important;
  flex-shrink: 0;
  padding: 0 !important;
  margin: 0 !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Times New Roman', serif;
  /* Premium serif for luxury feel */
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand-accent {
  color: var(--primary-color);
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Mobile actions wrapper (call btn + hamburger) — only visible on mobile */
.navbar-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Desktop right-side actions (S-Bend background) */
.navbar-desktop-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 4% 0 80px;
  z-index: 10;
}

/* Perfect Sweeping S-Curve using SVG Mask */
.navbar-desktop-actions::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  /* M starts at x=15%, swoops to x=0% at bottom using bezier control points */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 15 0 C 10 0, 5 100, 0 100 L 100 100 L 100 0 Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 15 0 C 10 0, 5 100, 0 100 L 100 100 L 100 0 Z"/></svg>');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.desktop-phone {
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.desktop-phone i {
  color: var(--accent-color);
  margin-right: 8px;
}

.desktop-phone:hover {
  color: var(--accent-color) !important;
}

.desktop-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-size: 1.4rem;
  transition: all 0.3s;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.desktop-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.navbar-desktop-actions .btn-custom {
  background: var(--accent-color) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 800;
  padding: 10px 24px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  z-index: 10;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.navbar-desktop-actions .btn-custom:hover {
  background: #C5A059 !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Prevent menu links from overlapping the absolute right-side S-bend container */
@media (min-width: 992px) {
  .navbar-collapse {
    margin-right: 350px !important; 
  }
}

/* Nav links */
.navbar-nav .nav-link {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding: 10px 14px !important;
  color: var(--text-light) !important;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Sticky state */
.navbar.sticky .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.navbar.sticky .nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar.sticky .brand-name {
  color: #fff !important;
}

.navbar.sticky .brand-accent {
  color: var(--accent-color) !important;
}

.navbar.sticky .desktop-phone {
  color: #fff !important;
}

.navbar.sticky .navbar-toggler i {
  color: #fff !important;
}

/* Toggler icon */
.navbar-toggler i {
  font-size: 1.5rem;
  color: var(--primary-color);
}



/* Section Padding */
.section-padding {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Header & Top Bar */
.top-bar {
  display: none !important;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.social-links a:hover {
  background: var(--accent-color);
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.navbar {
  background-color: var(--secondary-color);
  padding: 10px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative; 
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--secondary-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  animation: slideDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar .nav-link,
.navbar a[href^="tel:"] {
  color: #fff !important;
}

.navbar .nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar .navbar-brand .brand-text span:first-child {
  color: #fff !important;
}

.navbar .navbar-brand .brand-text span span {
  color: var(--accent-color) !important;
}

.navbar.sticky .fa-phone {
  color: var(--accent-color) !important;
}

.navbar.sticky .fa-bars-staggered {
  color: #fff !important;
}

.navbar.sticky .navbar-toggler-icon {
  filter: invert(1);
}

@keyframes slideDown {
  from {
    top: -100px;
  }

  to {
    top: 0;
  }
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark) !important;
  letter-spacing: -1px;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 700;
  color: #fff !important;
  font-size: 0.90rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 10px !important;
  margin: 0 4px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* =============================================
   PREMIUM DROPDOWN MENU UI
   ============================================= */
.navbar-nav .dropdown-menu {
  background-color: var(--secondary-color);
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Gold Border */
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  margin-top: 15px; 
  min-width: 240px;
}

/* Small triangle pointer at the top of the dropdown */
.navbar-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  transform: rotate(45deg);
}

.navbar-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 25px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: transparent !important;
  position: relative;
  letter-spacing: 0.5px;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  color: var(--accent-color) !important;
  background-color: rgba(212, 175, 55, 0.05) !important;
  padding-left: 35px; /* Elegant slide to the right */
}

/* Gold line indicator on hover */
.navbar-nav .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease;
}

.navbar-nav .dropdown-item:hover::before {
  height: 60%;
}

/* =============================================
   HERO V2 – PREMIUM CINEMATIC CAROUSEL
   ============================================= */
.hero-v2 {
  position: relative;
  height: calc(100vh - 145px);
  min-height: 650px;
  overflow: hidden;
  background: #04101f;
}

.hero-v2 .heroSwiper {
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.hero-v2-slide {
  position: relative;
  width: 100%;
  height: calc(100vh - 145px);
  min-height: 650px;
  overflow: hidden;
}

/* Background Image with Ken Burns */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
  will-change: transform;
}

.swiper-slide-active .hero-v2-bg {
  transform: scale(1.12);
}

/* Cinematic Overlay per Slide */
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 16, 31, 0.92) 0%, rgba(13, 71, 161, 0.55) 50%, rgba(4, 16, 31, 0.40) 100%);
  z-index: 1;
}

/* Content Layer */
.hero-v2-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 0;
  margin-top: -80px;
}

.hero-v2-text-col {
  padding-right: 40px;
}

/* Animated Label */
.hero-v2-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}

.swiper-slide-active .hero-v2-label {
  opacity: 1;
  transform: translateY(0);
}

/* Heading */
.hero-v2-heading {
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.35s, transform 0.7s 0.35s;
}

.swiper-slide-active .hero-v2-heading {
  opacity: 1;
  transform: translateY(0);
}

.hero-v2-gradient-text {
  background: linear-gradient(90deg, var(--accent-color), #ff9800, #ffca28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hero-v2-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 540px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}

.swiper-slide-active .hero-v2-desc {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Buttons */
.hero-v2-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s 0.65s, transform 0.7s 0.65s;
}

.swiper-slide-active .hero-v2-cta-row {
  opacity: 1;
  transform: translateY(0);
}

.hero-v2-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #ff9800);
  color: var(--text-dark) !important;
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  text-decoration: none;
}

.hero-v2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 193, 7, 0.45);
  color: var(--text-dark) !important;
}

.hero-v2-btn-outline {
  background: transparent;
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s;
  text-decoration: none;
}

.hero-v2-btn-outline:hover {
  background: #fff;
  color: var(--primary-color) !important;
  border-color: #fff;
  transform: translateY(-3px);
}

/* ---- Vehicle Card on Right ---- */
.hero-v2-vehicle-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 30px 30px 25px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  max-width: 380px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
}

.swiper-slide-active .hero-v2-vehicle-card {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-v2-vehicle-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 35px 75px rgba(13, 71, 161, 0.35);
}

.hero-v2-vcard-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-v2-vcard-name {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-v2-vcard-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  margin: 8px 0 18px;
}

.hero-v2-vcard-glow {
  position: absolute;
  bottom: 8%;
  width: 70%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(13, 71, 161, 0.55) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 1;
}

.hero-v2-vcard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-v2-vehicle-card:hover .hero-v2-vcard-img {
  transform: scale(1.05) translateY(-6px);
}

.hero-v2-vcard-specs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-v2-vcard-specs span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-v2-vcard-specs i {
  color: var(--accent-color);
  font-size: 0.85rem;
}

.hero-v2-vcard-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 11px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.35s;
  text-decoration: none;
}

.hero-v2-vcard-book:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.28);
  transform: translateY(-2px);
}

/* ---- Navigation Arrows ---- */
.hero-v2-nav-prev,
.hero-v2-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}

.hero-v2-nav-prev {
  left: 28px;
}

.hero-v2-nav-next {
  right: 28px;
}

.hero-v2-nav-prev:hover,
.hero-v2-nav-next:hover {
  background: var(--accent-color);
  color: var(--text-dark);
  border-color: var(--accent-color);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.35);
  transform: translateY(-50%) scale(1.1);
}

/* ---- Pagination Dots ---- */
.hero-v2-pagination {
  position: absolute !important;
  bottom: 105px !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  z-index: 10 !important;
}

.hero-v2-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: all 0.4s;
}

.hero-v2-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}

/* ---- Bottom Stats Bar ---- */
.hero-v2-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(4, 16, 31, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.hero-v2-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-v2-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
}

.hero-v2-stat>i {
  font-size: 1.3rem;
  color: var(--accent-color);
  opacity: 0.85;
}

.hero-v2-stat-info {
  display: flex;
  flex-direction: column;
}

.hero-v2-stat-info strong {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-v2-stat-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-v2-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Floating Booking Widget ---- */
.hero-v2-booking-widget {
  position: absolute;
  bottom: 85px;
  right: 35px;
  width: 280px;
  z-index: 15;
  background: rgba(13, 71, 161, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-v2-booking-widget.collapsed .hero-v2-bw-form {
  max-height: 0;
  padding: 0 16px;
  opacity: 0;
}

.hero-v2-booking-widget.collapsed .hero-v2-bw-toggle {
  transform: rotate(180deg);
}

.hero-v2-bw-header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.hero-v2-bw-header span {
  flex: 1;
}

.hero-v2-bw-toggle {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.3s;
}

.hero-v2-bw-form {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  opacity: 1;
  transition: max-height 0.4s, opacity 0.3s, padding 0.4s;
  overflow: hidden;
}

.hero-v2-bw-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.3s;
}

.hero-v2-bw-field:focus-within {
  border-color: var(--accent-color);
}

.hero-v2-bw-field i {
  color: var(--accent-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-v2-bw-field input,
.hero-v2-bw-field select {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.82rem;
  width: 100%;
  font-family: inherit;
}

.hero-v2-bw-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-v2-bw-field select option {
  color: #333;
  background: #fff;
}

.hero-v2-bw-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-color), #ff9800);
  border: none;
  border-radius: 10px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.35s;
  margin-top: 2px;
}

.hero-v2-bw-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 193, 7, 0.35);
}

/* ---- Scroll Indicator ---- */
.hero-v2-scroll {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-v2-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  border-radius: 1px;
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {

  0%,
  100% {
    opacity: 0.3;
    height: 30px;
  }

  50% {
    opacity: 1;
    height: 40px;
  }
}

.hero-v2-scroll span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---- Hero V2 Responsive ---- */
@media (max-width: 991px) {
  .hero-v2-heading {
    font-size: 3rem;
  }

  .hero-v2-nav-prev,
  .hero-v2-nav-next {
    display: none;
  }

  .hero-v2-scroll {
    bottom: 75px;
  }

  .hero-v2-pagination {
    bottom: 85px !important;
  }

  .hero-v2-text-col {
    padding-right: 0;
  }

  /* Show vehicle card centered on tablet/mobile */
  .hero-v2-vehicle-card {
    margin: 0 auto;
    transform: translateY(40px) scale(0.95);
  }

  .swiper-slide-active .hero-v2-vehicle-card {
    transform: translateY(0) scale(1);
  }

  /* Show booking widget stacked below hero slides */
  .hero-v2-booking-widget {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -40px auto 40px;
    width: 92%;
    max-width: 500px;
    z-index: 20;
  }
}

@media (max-width: 768px) {

  /* Hero container — let it grow with content */
  .hero-v2 {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .hero-v2 .heroSwiper {
    height: auto !important;
    overflow: visible !important;
  }

  /* Each slide: position relative so bg-image can be absolute,
     and the slide height comes from the content inside */
  .hero-v2-slide {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    overflow: hidden;
  }

  /* Bg image stays absolute — fills the parent slide */
  .hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-v2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  /* Content flows normally — removed negative margin that clipped it */
  .hero-v2-content {
    position: relative !important;
    z-index: 2;
    padding: 90px 0 20px !important;
    /* top clears navbar */
    margin-top: 0 !important;
    display: block !important;
    align-items: unset !important;
  }

  /* Stats bar now flows below content */
  .hero-v2-stats-bar {
    position: relative !important;
    bottom: auto !important;
    padding: 14px 0;
    margin-top: 0;
  }

  .hero-v2-stat {
    padding: 0 12px;
  }

  .hero-v2-stat>i {
    font-size: 1rem;
  }

  .hero-v2-stat-info strong {
    font-size: 0.9rem;
  }

  .hero-v2-stat-info span {
    font-size: 0.6rem;
  }

  .hero-v2-stat-divider {
    height: 28px;
  }

  /* Typography */
  .hero-v2-heading {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
  }

  .hero-v2-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 100%;
    margin-top: 14px;
  }

  /* Hide extras */
  .hero-v2-scroll {
    display: none !important;
  }

  /* Pagination — flows below content */
  .hero-v2-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: flex !important;
    justify-content: center !important;
    padding: 16px 0 8px !important;
    margin: 0 !important;
  }

  /* Buttons */
  .hero-v2-btn-primary,
  .hero-v2-btn-outline {
    padding: 12px 22px;
    font-size: 0.82rem;
  }

  .hero-v2-cta-row {
    margin-top: 24px;
  }

  .hero-v2-booking-widget {
    margin-top: -20px;
  }
}

@media (max-width: 576px) {
  .hero-v2-content {
    padding: 80px 0 16px !important;
  }

  .hero-v2-heading {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }

  .hero-v2-label {
    font-size: 0.68rem;
    padding: 6px 12px;
  }

  .hero-v2-desc {
    font-size: 0.85rem;
  }

  .hero-v2-cta-row {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-v2-btn-primary,
  .hero-v2-btn-outline {
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  .hero-v2-stats-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 8px;
  }

  .hero-v2-stat {
    padding: 0 10px;
    flex-shrink: 0;
  }

  .hero-v2-stat-info strong {
    font-size: 0.85rem;
  }
}

/* Advanced Hero Section */
.hero-premium {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background: #05132b;
}

/* BG Carousel */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  animation: heroSlideZoom 8s ease-in-out infinite alternate;
}

@keyframes heroSlideZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* Cinematic Overlay */
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(5, 19, 43, 0.92) 0%,
      rgba(13, 71, 161, 0.7) 45%,
      rgba(5, 19, 43, 0.30) 100%);
  z-index: 2;
}

/* Hero Inner Layout */
.hero-inner {
  position: relative;
  z-index: 3;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
}

/* LEFT Panel */
.hero-left {
  padding: 80px 60px 80px 80px;
}

@media (min-width: 992px) {
  .hero-left {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-mega-title {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--accent-color), #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-left-content {
  width: 100%;
  max-width: 580px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 100%;
}

/* Stats Chips */
.hero-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Buttons */
.btn-hero-cta {
  padding: 16px 32px !important;
  font-size: 1rem !important;
  border-radius: 6px !important;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
  transform: translateY(-2px);
}

/* RIGHT: Vehicle Showcase */
.hero-right {
  padding: 40px;
  position: relative;
}

@media (min-width: 992px) {
  .hero-right {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }
}

.vehicle-showcase {
  width: 100%;
  max-width: 580px;
  flex: 1;
  transform: none;
}

.vehicle-slide-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 35px 35px 30px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vehicle-slide-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 40px 80px rgba(13, 71, 161, 0.35);
  transform: translateY(-5px);
}

.v-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.v-badge {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.v-price {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.v-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.v-img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin: 10px 0 25px;
}

.v-glow-effect {
  position: absolute;
  bottom: 10%;
  width: 75%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(13, 71, 161, 0.6) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 1;
}

.vehicle-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vehicle-slide-card:hover .vehicle-showcase-img {
  transform: scale(1.06) translateY(-8px);
}

.v-specs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.v-specs span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.v-specs i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.vehicle-slide-card:hover .v-specs span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-v-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 12px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}

.btn-v-book:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
  transform: translateY(-2px);
}

/* Vehicle Carousel Dots */
.vehicle-indicators {
  position: static !important;
  margin-top: 18px !important;
  gap: 6px;
}

.vehicle-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  transition: var(--transition) !important;
}

.vehicle-indicators button.active {
  background: var(--accent-color) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Compact Booking Widget */
.hero-enquiry-widget {
  position: absolute;
  top: 15px;
  right: 40px;
  width: 270px;
  background: rgba(13, 71, 161, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.widget-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.widget-form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
}

.widget-field i {
  color: var(--accent-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.widget-field input,
.widget-field select {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  width: 100%;
  font-family: inherit;
}

.widget-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.widget-field select option {
  color: #333;
  background: #fff;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}



.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

/* Glassmorphism Quick Booking Widget */
.glass-widget {
  background: rgba(13, 71, 161, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .hero-premium>.container>.row>div:nth-child(2) {
    position: absolute;
    top: 50px;
    right: 15px;
    max-width: 450px;
    z-index: 10;
  }
}

.glass-widget .form-control,
.glass-widget .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px;
  border-radius: 4px;
}

.glass-widget .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.glass-widget .form-control:focus,
.glass-widget .form-select:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
  box-shadow: none;
}

.glass-widget .form-select option {
  color: #333;
}

.glass-widget label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Premium Services Cards */
.service-premium-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.service-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-premium-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-premium);
}

.service-premium-card:hover::before {
  transform: scaleX(1);
}

.service-premium-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  display: inline-block;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 50%;
  transition: var(--transition);
}

.service-premium-card:hover .service-premium-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotateY(180deg);
}

.service-premium-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Asymmetric Why Choose Us Section */
.editorial-layout {
  position: relative;
}

.editorial-img-main {
  width: 90%;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
}

.editorial-img-sub {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 60%;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 10px solid #fff;
  z-index: 3;
}

.editorial-content {
  padding-left: 60px;
}

.feature-list-premium {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.feature-list-premium li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.feature-list-premium li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.feature-list-premium h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-list-premium p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Premium Fleet Cards */
.fleet-ultra-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  group: hover;
}

.fleet-ultra-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-10px);
}

.fleet-ultra-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.fleet-ultra-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-ultra-card:hover .fleet-ultra-img {
  transform: scale(1.1);
}

.fleet-ultra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-ultra-card:hover .fleet-ultra-overlay {
  transform: translateY(0);
}

.fleet-ultra-body {
  padding: 30px;
}

.fleet-ultra-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fleet-ultra-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  margin-top: 20px;
}

.fleet-ultra-specs span {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.fleet-ultra-specs i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Elegant Pricing / Tariff */
.tariff-elegant-card {
  background: #fff;
  border-radius: 8px;
  padding: 50px 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tariff-elegant-card:hover {
  box-shadow: var(--shadow-premium);
  border-color: transparent;
  transform: translateY(-10px);
}

.tariff-elegant-card.popular {
  background: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 2;
}

.tariff-elegant-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-premium);
}

.tariff-elegant-card.popular h3,
.tariff-elegant-card.popular p,
.tariff-elegant-card.popular li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.tariff-elegant-card.popular i {
  color: var(--accent-color) !important;
}

.tariff-elegant-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.tariff-elegant-features {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.tariff-elegant-features li {
  margin-bottom: 18px;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.tariff-elegant-features i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Call to Action Section */
.cta-premium {
  background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop') center/cover fixed;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

/* Footer */
.footer {
  background-color: #0A192F;
  color: #fff;
  padding: 100px 0 20px;
}

.footer-widget h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Booking Button */
.btn-whatsapp {
  background-color: #25d366 !important;
  color: #FFF !important;
  border-color: #25d366 !important;
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
  color: #FFF !important;
  border-color: #128C7E !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Premium About Us - Parallax Hero */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
  z-index: 1;
}

/* About Us - Overlapping Philosophy */
.philosophy-glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 3;
  margin-left: -100px;
  margin-top: 50px;
}

.philosophy-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Us - Parallax Stats */
.stats-parallax {
  background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
  position: relative;
  color: #fff;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.9);
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* About Us - Core Values */
.value-pillar-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-pillar-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.08);
}

.value-pillar-icon {
  width: 80px;
  height: 80px;
  background: rgba(13, 71, 161, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 30px;
  transition: var(--transition);
}

.value-pillar-card:hover .value-pillar-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .editorial-img-sub {
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 20px;
    border-width: 5px;
  }

  .editorial-content {
    padding-left: 15px;
    margin-top: 50px;
  }

  .tariff-elegant-card.popular {
    transform: none;
  }

  .tariff-elegant-card.popular:hover {
    transform: translateY(-10px);
  }

  .philosophy-glass-card {
    margin-left: 0;
    margin-top: -50px;
    padding: 30px;
  }

  /* Navbar Mobile Overrides */
  .navbar-brand img {
    height: 60px !important;
    width: auto !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: contain !important;
  }

  .navbar-brand .brand-text span.fs-3 {
    font-size: 1.4rem !important;
  }

  .navbar-brand .brand-text span.fw-bold {
    font-size: 0.6rem !important;
    letter-spacing: 1px !important;
  }

  .navbar-brand {
    gap: 8px !important;
  }

  .navbar-nav .nav-link.active::after {
    left: 15px;
    transform: none;
  }

  .mobile-call-btn {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-premium {
    min-height: 600px;
    height: auto;
    padding: 100px 0 60px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .glass-widget {
    margin-top: 40px;
    padding: 20px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 15px;
    font-size: 30px;
    z-index: 99999 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  }

  .editorial-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .service-premium-card,
  .tariff-elegant-card {
    padding: 30px 20px;
  }

  .footer {
    padding: 60px 0 20px;
  }

  .navbar-brand img {
    height: 60px !important;
    margin: 0 !important;
    transform: scale(1) !important;
  }

  .navbar-brand {
    gap: 8px !important;
  }

  .navbar-brand .fs-3 {
    font-size: 1.3rem !important;
  }

  .navbar-brand .brand-text span:last-child {
    font-size: 0.6rem !important;
    letter-spacing: 1px !important;
  }

  .mobile-call-btn {
    display: flex !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 50px !important;
    margin: 0 !important;
  }

  .navbar-brand .fs-3 {
    font-size: 1.15rem !important;
  }

  .navbar-brand .brand-text span:last-child {
    font-size: 0.55rem !important;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .mobile-call-btn .mobile-number {
    display: inline !important;
    font-size: 0.78rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 12px;
    font-size: 28px;
    z-index: 99999 !important;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-card-premium {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  height: 100%;
}

.contact-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 71, 161, 0.12);
}

.contact-card-premium.featured {
  background: var(--primary-color);
}

.contact-card-premium.featured h5,
.contact-card-premium.featured p,
.contact-card-premium.featured .contact-card-link {
  color: #fff !important;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-card-premium.featured .contact-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-color);
}

.contact-card-premium:hover .contact-card-icon {
  background: var(--primary-color);
  color: #fff;
}

.contact-card-premium h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-card-premium p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.contact-card-link:hover {
  letter-spacing: 1px;
}

/* Contact Info Panel */
.contact-info-panel {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cip-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cip-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.cip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 71, 161, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.cip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.cip-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

/* Floating Label Inputs */
.floating-label-group {
  position: relative;
}

.floating-input {
  width: 100%;
  padding: 22px 16px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafafa;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
}

.floating-input:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.07);
}

.floating-label-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #999;
  pointer-events: none;
  transition: all 0.25s ease;
}

.floating-label-group textarea~label {
  top: 22px;
  transform: none;
}

.floating-input:focus~label,
.floating-input:not(:placeholder-shown)~label {
  top: 10px;
  transform: none;
  font-size: 0.72rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =============================================
   GALLERY PAGE STYLES
   ============================================= */
.gallery-filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(13, 71, 161, 0.15);
  color: var(--text-dark);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.gallery-card-premium {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  height: 320px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-premium:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.gallery-card-premium:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
}

.gallery-card-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
}

.gallery-card-zoom {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-premium:hover .gallery-card-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-card-premium:hover .gallery-card-category,
.gallery-card-premium:hover .gallery-card-title {
  transform: translateY(0);
}

/* Custom Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.98);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  user-select: none;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-caption-container {
  margin-top: 15px;
  color: #fff;
}

.lightbox-caption-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.lightbox-caption-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 20px;
    z-index: 10001;
  }
}

/* =============================================
   TESTIMONIALS PAGE STYLES
   ============================================= */
.testimonial-header-section {
  padding-bottom: 30px;
}

.testimonial-slider-container {
  background: #0A192F;
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  margin-bottom: 80px;
}

.testimonial-slider-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-premium-slide {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonial-slide-stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.testimonial-slide-quote {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 35px;
  position: relative;
}

.testimonial-slide-quote::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
}

.testimonial-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 15px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.testimonial-author-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-author-title {
  color: var(--accent-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Testimonial Grid Cards */
.testimonial-grid-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.tgc-top {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.tgc-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.5rem;
  color: rgba(13, 71, 161, 0.05);
  z-index: -1;
}

.tgc-stars {
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.tgc-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.tgc-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.tgc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.tgc-info h6 {
  margin: 0 0 2px 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.tgc-info span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.tgc-verified {
  margin-left: auto;
  color: #25d366;
  font-size: 1.1rem;
}

/* =============================================
   CUSTOM FANCY SCROLLBAR
   ============================================= */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f8f9fa;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-left: 1px solid #e9ecef;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
  border: 3px solid #f8f9fa;
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}
/* --- SERVICE PAGES REVAMP --- */
.service-revamp-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    margin-bottom: 30px;
}
.service-revamp-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-revamp-img-wrapper:hover .service-revamp-img-main {
    transform: scale(1.02);
}
.service-revamp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-color);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}
.service-revamp-badge i {
    font-size: 2.5rem;
    color: var(--accent-color);
}
.service-revamp-badge h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}
.service-revamp-badge p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.service-revamp-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.service-revamp-checklist .chk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}
.service-revamp-checklist .chk-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}
.service-revamp-checklist .chk-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}
.service-revamp-checklist .chk-item span {
    font-weight: 600;
    color: #222;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .service-revamp-badge {
        right: 10px;
        bottom: -30px;
        left: 10px;
        padding: 15px 20px;
    }
}

.service-feature-chip {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--primary-color, #0D47A1);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-color);
}
.service-feature-chip:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.service-feature-chip i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* --- GOOGLE MAPS AUTOCOMPLETE FIXES --- */
.pac-target-input {
    background-image: none !important;
}
.pac-container {
    z-index: 10000 !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border: none !important;
    font-family: inherit !important;
}
.pac-item {
    padding: 10px 15px !important;
    cursor: pointer;
    font-size: 0.95rem;
}
.pac-item:hover {
    background-color: #f0f4f8 !important;
}
