@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap");

/* ===== RESET & VARIABLES ===== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f4b400;
  --primary-dark: #d49e00;
  --primary-light: #ffd54f;
  --secondary: #111111;
  --accent: #ffffff;
  --text-dark: #222222;
  --text-light: #777777;
  --bg-light: #f9f9f9;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--accent);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
  font-family: 'Outfit', 'Inter', sans-serif;
}


/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  transition: var(--transition);
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.top-bar.hidden {
  transform: translateY(-100%);
  margin-bottom: -36px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-item:hover {
  color: var(--primary);
}

.top-bar-item i {
  color: var(--primary);
  font-size: 0.8rem;
}

.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar-social:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}


/* ===== MAIN HEADER ===== */
.main-header {
  background: var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}


/* ===== LOGO ===== */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.main-header.scrolled .header-logo img {
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--secondary);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--primary-dark);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ===== DESKTOP NAVIGATION ===== */
.header-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.header-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
}

.header-link i {
  font-size: 0.78rem;
  color: var(--text-light);
  transition: var(--transition);
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-link:hover,
.header-link.active {
  background: rgba(244, 180, 0, 0.08);
  color: var(--secondary);
}

.header-link:hover i,
.header-link.active i {
  color: var(--primary);
}

.header-link:hover::after,
.header-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-link.active {
  font-weight: 600;
}


/* ===== CTA BUTTONS ===== */
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-header:hover::before {
  left: 100%;
}

.btn-header-call {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-header-call:hover {
  background: var(--secondary);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.25);
}

.btn-header-book {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
}

.btn-header-book:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(244, 180, 0, 0.35);
}


/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  z-index: 10;
  width: 44px;
  height: 44px;
}

.hamburger:hover {
  background: rgba(244, 180, 0, 0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
  background: var(--primary);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
  background: var(--primary);
}


/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo-area img {
  height: 40px;
  width: auto;
}

.mobile-logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 16px 24px;
  flex: 1;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
}

.mobile-menu-items a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-items a i {
  width: 20px;
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
}

.mobile-menu-items a:hover {
  background: rgba(244, 180, 0, 0.08);
  color: var(--primary-dark);
  padding-left: 20px;
}

.mobile-menu-items li:last-child a {
  border-bottom: none;
}

.mobile-menu-contact {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 2px solid var(--border-color);
}

.mobile-menu-contact .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-menu-contact .contact-info i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.12);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mobile-menu-contact .contact-info a {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.mobile-menu-contact .contact-info a:hover {
  color: var(--primary-dark);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
}

.mobile-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.35);
  color: var(--secondary);
}

.mobile-social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.mobile-social-row a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.mobile-social-row a:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
}

.mobile-menu-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.mobile-copyright {
  color: var(--text-light);
  font-size: 0.78rem;
  line-height: 1.5;
}


/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1199px) {
  .header-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .btn-header {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .header-link i {
    display: none;
  }
}

@media (max-width: 991px) {

  .header-menu,
  .header-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .header-nav {
    padding: 8px 0;
  }

  .header-logo img {
    height: 44px;
  }

  .logo-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu-content {
    max-width: 100vw;
  }

  .header-logo img {
    height: 38px;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .mobile-menu-items a {
    font-size: 0.95rem;
    padding: 14px 10px;
  }
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9998;
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.7rem 1.4rem 0.7rem 1.1rem;
  border-radius: 2rem 0.8rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.22);
  transition: var(--transition);
  text-decoration: none;
  gap: 0.6rem;
}

.whatsapp-float i {
  font-size: 1.4rem;
}

.whatsapp-float span {
  margin-left: 0.1rem;
  font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.32);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  .whatsapp-float {
    right: 14px;
    bottom: 18px;
    font-size: 0.95rem;
    padding: 0.55rem 1rem 0.55rem 0.85rem;
  }

  .whatsapp-float i {
    font-size: 1.2rem;
  }
}


/* ===== SMOOTH SCROLL & GLOBAL ===== */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary);
  color: var(--secondary);
}


/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Override Bootstrap nav-link styles */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
  font-weight: 600;
  background-color: rgba(244, 180, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: color 0.2s;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
}


/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* ===== UTILITY ===== */
.text-golden { color: var(--primary) !important; }
.min-vh-80 { min-height: 80vh; }

/* ===== SECTION COMMON ===== */
.section-header {
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 14px !important;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.section-desc strong {
  color: var(--text-dark);
}


/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  background: url('../banner/hero-varanasi.png') center center / cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 80%, rgba(244,180,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244,180,0,0.06) 0%, transparent 50%);
}

.hero-content {
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 180, 0, 0.15);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(244, 180, 0, 0.25);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge i {
  color: var(--primary);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px !important;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-subtitle strong {
  color: rgba(255,255,255,0.9);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

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

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244, 180, 0, 0.35);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.15);
}

.btn-hero-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

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

.btn-hero-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-hero-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.hero-trust {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  animation: fadeInDown 0.8s ease 0.5s both;
}

.hero-trust i {
  color: var(--primary);
  margin-right: 4px;
}


/* ===== HERO BOOKING CARD ===== */
.hero-booking-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: fadeInDown 0.8s ease 0.3s both;
  border: 1px solid rgba(244,180,0,0.15);
}

.booking-card-header {
  background: var(--secondary);
  padding: 24px 28px;
  text-align: center;
}

.booking-card-header i {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}

.booking-card-header h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 4px !important;
}

.booking-card-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin: 0;
}

.booking-form {
  padding: 24px 28px 28px;
}

.form-floating-group {
  margin-bottom: 14px;
}

.form-floating-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-floating-group label i {
  color: var(--primary);
  margin-right: 4px;
}

.form-floating-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.form-floating-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
  background: #fff;
}

.form-floating-group input::placeholder {
  color: #bbb;
}

.btn-booking-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.btn-booking-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.3);
}


/* ===== SERVICES SECTION ===== */
.section-services {
  padding: 80px 0;
  background: var(--bg-light);
}

.service-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.service-card:hover {
  color: var(--text-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 180, 0, 0.2);
}

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 12px !important;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card p strong {
  color: var(--text-dark);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.service-card:hover .service-link {
  gap: 10px;
  color: var(--primary);
}


/* ===== ROUTES SECTION ===== */
.section-routes {
  padding: 80px 0;
  background: #fff;
}

.route-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.route-card:hover {
  color: var(--text-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 180, 0, 0.3);
}

.route-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: var(--transition);
}

.route-card:hover .route-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}

.route-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 8px !important;
}

.route-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.route-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.route-meta span i {
  color: var(--primary);
  font-size: 0.7rem;
}

.route-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.route-info p strong {
  color: var(--text-dark);
}

.route-price {
  margin-bottom: 16px;
}

.price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.route-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  margin-top: auto;
}

.route-card:hover .route-book-btn {
  background: var(--primary);
  color: var(--secondary);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-view-all:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}


/* ===== FLEET SECTION ===== */
.section-fleet {
  padding: 80px 0;
  background: var(--bg-light);
}

.fleet-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.fleet-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(244, 180, 0, 0.15);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fleet-badge {
  position: absolute;
  top: 16px; right: -28px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fleet-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.08);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 1.6rem;
  transition: var(--transition);
}

.fleet-card:hover .fleet-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.08);
}

.fleet-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 6px !important;
}

.fleet-type {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 18px;
  font-weight: 500;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.fleet-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}

.fleet-features li:last-child {
  border-bottom: none;
}

.fleet-features li i {
  color: #4caf50;
  font-size: 0.7rem;
}

.fleet-pricing {
  margin-bottom: 18px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
}

.fleet-price {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
}

.fleet-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.fleet-min {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

.btn-fleet-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-fleet-book:hover {
  background: var(--primary-dark);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
}


/* ===== TOURS SECTION ===== */
.section-tours {
  padding: 80px 0;
  background: #fff;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.tour-card:hover {
  color: var(--text-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 180, 0, 0.3);
}

.tour-card-top {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-duration {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 500;
}

.tour-duration i {
  color: var(--primary);
  margin-right: 4px;
}

.tour-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.15);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.1rem;
}

.tour-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  padding: 20px 24px 0;
  margin-bottom: 10px !important;
}

.tour-card > p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 0 24px;
  margin-bottom: 14px;
  flex: 1;
}

.tour-card > p strong {
  color: var(--text-dark);
}

.tour-highlights {
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tour-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.tour-highlights span i {
  color: #4caf50;
  font-size: 0.6rem;
}

.tour-bottom {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-price-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-price-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.tour-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
}

.tour-card:hover .tour-book-btn {
  gap: 10px;
  color: var(--primary);
}


/* ===== WHY CHOOSE US ===== */
.section-why {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-content {
  padding-right: 40px;
}

.why-content .section-desc {
  margin: 0;
  margin-bottom: 28px;
}

.why-cta {
  margin-top: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 180, 0, 0.2);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--secondary);
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 8px !important;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}

.why-card p strong {
  color: var(--text-dark);
}


/* ===== REVIEWS SECTION ===== */
.section-reviews {
  padding: 80px 0;
  background: #fff;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 180, 0, 0.2);
}

.review-stars {
  margin-bottom: 16px;
}

.review-stars i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-right: 2px;
}

.review-text {
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}

.review-trip {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}


/* ===== FAQ SECTION ===== */
.section-faq {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-intro {
  padding-right: 40px;
}

.faq-intro .section-desc {
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(244, 180, 0, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-question i {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}


/* ===== FINAL CTA SECTION ===== */
.section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
}

.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(244,180,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 14px !important;
}

.cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-subtext {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

.cta-subtext i {
  color: var(--primary);
  margin-right: 4px;
}


/* ===== HOMEPAGE RESPONSIVE ===== */

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

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

  .hero-booking-card {
    margin-top: 40px;
  }

  .why-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-intro {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .why-content .section-title,
  .why-content .section-desc,
  .faq-intro .section-title,
  .faq-intro .section-desc {
    text-align: center !important;
  }

  .why-cta {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .section-services,
  .section-routes,
  .section-fleet,
  .section-tours,
  .section-why,
  .section-reviews,
  .section-faq,
  .section-cta {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-hero {
    justify-content: center;
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    padding: 40px 0;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat {
    width: calc(50% - 8px);
  }

  .section-title {
    font-size: 1.45rem;
  }

  .fleet-card {
    padding: 24px 20px;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 16px 20px;
  }
}


/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: url('../banner/hero-varanasi.png') center center / cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.car-rental-hero {
  min-height: 65vh;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 0 40px;
}

/* Breadcrumb */
.breadcrumb-custom {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.breadcrumb-custom li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-custom li a:hover {
  color: var(--primary);
}

.breadcrumb-custom li a i {
  margin-right: 4px;
}

.breadcrumb-custom li.active {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  margin-right: 8px;
  color: rgba(255,255,255,0.4);
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px !important;
}

.page-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}

.page-hero-desc strong {
  color: rgba(255,255,255,0.9);
}

.page-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.page-hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.page-hero-features span i {
  color: #4caf50;
  font-size: 0.75rem;
}

.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ===== PRICING SECTION ===== */
.section-pricing {
  padding: 80px 0;
  background: #fff;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border-color);
  background: #fff;
  color: var(--text-dark);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.pricing-tab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.pricing-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeInDown 0.4s ease;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.pricing-table thead th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 18px;
  text-align: left;
  white-space: nowrap;
}

.pricing-table tbody td {
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(244, 180, 0, 0.04);
}

.pricing-table .highlight-row {
  background: rgba(244, 180, 0, 0.06);
}

.pricing-table .highlight-row:hover {
  background: rgba(244, 180, 0, 0.1);
}

.price-cell {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.feature-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 2px;
}

.btn-table-book {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-table-book:hover {
  background: var(--primary-dark);
  color: var(--secondary);
  transform: scale(1.05);
}

.pricing-note {
  color: var(--text-light);
  font-size: 0.82rem;
}

.pricing-note i {
  color: var(--primary);
  margin-right: 4px;
}


/* ===== HOW IT WORKS / STEP CARDS ===== */
.section-how-it-works {
  padding: 80px 0;
  background: #fff;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 180, 0, 0.3);
}

.step-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(244, 180, 0, 0.1);
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.1);
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 10px !important;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.step-card p strong {
  color: var(--text-dark);
}


/* ===== SEO CONTENT BLOCK ===== */
.section-seo-content {
  padding: 60px 0;
  background: var(--bg-light);
}

.seo-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content-wrapper h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 18px !important;
}

.seo-content-wrapper h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-top: 28px;
  margin-bottom: 12px !important;
}

.seo-content-wrapper p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.seo-content-wrapper p strong {
  color: var(--text-dark);
}


/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 991px) {
  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero {
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 1.8rem;
  }

  .page-hero-features {
    gap: 10px;
  }

  .page-hero-cta {
    flex-direction: column;
  }

  .page-hero-cta .btn-hero {
    justify-content: center;
    width: 100%;
  }

  .pricing-tabs {
    gap: 6px;
  }

  .pricing-tab {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  .section-pricing,
  .section-how-it-works,
  .section-seo-content {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.5rem;
  }

  .page-hero {
    min-height: auto;
    padding: 20px 0;
  }

  .page-hero-content {
    padding: 40px 0 30px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .seo-content-wrapper h2 {
    font-size: 1.4rem;
  }
}


/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* ===== Booking Hero ===== */
.booking-hero {
  min-height: 45vh;
}

.booking-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.booking-badge i {
  color: var(--primary);
  font-size: 0.75rem;
}


/* ===== Main Booking Card ===== */
.section-booking-form {
  padding: 60px 0 80px;
  background: var(--bg-light);
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.booking-main-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
}


/* ===== Progress Bar ===== */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 20px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 80px;
}

.progress-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-light);
  color: var(--text-light);
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.progress-step.active .progress-circle {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
}

.progress-step.completed .progress-circle {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}

.progress-step span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step.active span {
  color: var(--primary-dark);
}

.progress-line {
  flex: 1;
  height: 3px;
  background: var(--border-color);
  margin: 0 8px;
  margin-bottom: 24px;
  border-radius: 3px;
  transition: var(--transition);
  max-width: 80px;
}

.progress-line.active {
  background: var(--primary);
}


/* ===== Booking Steps ===== */
.booking-step {
  display: none;
  animation: fadeInDown 0.4s ease;
}

.booking-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.step-header .step-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 14px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  margin: 0 !important;
}

.step-header p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 4px 0 0;
}


/* ===== Booking Fields ===== */
.booking-field {
  margin-bottom: 4px;
}

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

.booking-field label i {
  color: var(--primary);
  margin-right: 4px;
}

.booking-field input,
.booking-field textarea,
.booking-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
  background: #fff;
}

.booking-field textarea {
  resize: vertical;
  min-height: 80px;
}


/* ===== Service Type Selector ===== */
.service-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-option {
  cursor: pointer;
}

.service-option input {
  display: none;
}

.service-option .option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: var(--bg-light);
  transition: var(--transition);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

.service-option .option-content i {
  font-size: 1.1rem;
  color: var(--text-light);
  transition: var(--transition);
}

.service-option.active .option-content,
.service-option:hover .option-content {
  border-color: var(--primary);
  background: rgba(244, 180, 0, 0.06);
  color: var(--primary-dark);
}

.service-option.active .option-content i,
.service-option:hover .option-content i {
  color: var(--primary);
}

.service-option.active .option-content {
  box-shadow: 0 2px 12px rgba(244, 180, 0, 0.15);
}


/* ===== Vehicle Grid ===== */
.vehicle-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vehicle-option {
  cursor: pointer;
  display: block;
}

.vehicle-option input {
  display: none;
}

.vehicle-card-select {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  background: var(--bg-light);
  transition: var(--transition);
  position: relative;
}

.vehicle-card-select:hover {
  border-color: rgba(244, 180, 0, 0.4);
  background: rgba(244, 180, 0, 0.03);
}

.vehicle-card-select.selected {
  border-color: var(--primary);
  background: rgba(244, 180, 0, 0.06);
  box-shadow: 0 2px 16px rgba(244, 180, 0, 0.12);
}

.vehicle-select-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.vehicle-card-select.selected .vehicle-select-icon {
  background: var(--primary);
  color: var(--secondary);
}

.premium-icon {
  background: rgba(244, 180, 0, 0.15) !important;
}

.vehicle-select-info {
  flex: 1;
}

.vehicle-select-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin: 0 0 2px;
}

.vehicle-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.vehicle-select-price {
  text-align: right;
  flex-shrink: 0;
}

.vsp-rate {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.vsp-rate small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.vsp-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
}

.vehicle-selected-mark {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.vehicle-card-select.selected .vehicle-selected-mark {
  opacity: 1;
}


/* ===== Step Actions ===== */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.btn-step-next,
.btn-step-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-step-next:hover,
.btn-step-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.3);
}

.btn-step-submit {
  background: #4caf50;
  color: #fff;
}

.btn-step-submit:hover {
  background: #388e3c;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-step-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-step-back:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}


/* ===== Review Section ===== */
.booking-review {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-section {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border-color);
}

.review-section h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-section h4 i {
  color: var(--primary);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.booking-confirm-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(244, 180, 0, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(244, 180, 0, 0.15);
}

.booking-confirm-note i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-confirm-note p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}


/* ===== Success State ===== */
.booking-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeInDown 0.6s ease;
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border-radius: 50%;
  font-size: 2.5rem;
  animation: successPulse 1.5s ease infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(76, 175, 80, 0); }
}

.booking-success h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 12px !important;
}

.booking-success > p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 450px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.success-details {
  margin-bottom: 28px;
}

.success-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.success-details span i {
  color: #4caf50;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.back-home-link:hover {
  color: var(--primary-dark);
}


/* ===== Trust Strip ===== */
.section-trust-strip {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 1.1rem;
}

.trust-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.trust-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}


/* ===== Booking Page Responsive ===== */
@media (max-width: 991px) {
  .booking-main-card {
    padding: 28px;
  }

  .service-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-hero {
    min-height: 35vh;
  }

  .booking-main-card {
    padding: 20px;
    border-radius: 18px;
  }

  .booking-progress {
    gap: 0;
    padding: 0 8px;
    margin-bottom: 28px;
  }

  .progress-step {
    min-width: 60px;
  }

  .progress-step span {
    font-size: 0.62rem;
  }

  .progress-circle {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .trust-strip-inner {
    gap: 20px;
  }

  .trust-item {
    width: calc(50% - 10px);
  }

  .vehicle-card-select {
    flex-wrap: wrap;
    gap: 10px;
  }

  .vehicle-select-price {
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .step-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-step-back,
  .btn-step-next,
  .btn-step-submit {
    width: 100%;
    justify-content: center;
  }

  .btn-step-back {
    order: 2;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-hero-badges {
    justify-content: center;
  }

  .section-booking-form {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .booking-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .trust-item {
    width: 100%;
  }

  .step-header .step-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .step-header h3 {
    font-size: 1.1rem;
  }
}


/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
  position: relative;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  overflow: hidden;
}

/* Subtle background pattern */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 30%, rgba(244, 180, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(244, 180, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Yellow accent line at top */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  position: relative;
}

.footer-accent-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}


/* ===== Footer Main ===== */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
}


/* ===== Footer Logo / Brand ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.footer-logo-tagline {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.3);
}

.footer-social-icon.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}


/* ===== Footer Headings ===== */
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px !important;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}


/* ===== Footer Links ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  transition: var(--transition);
  border-radius: 6px;
}

.footer-links a i {
  font-size: 0.55rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition);
}

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

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}


/* ===== Footer Contact List ===== */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 180, 0, 0.1);
  border: 1px solid rgba(244, 180, 0, 0.15);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-contact-list li:hover .footer-contact-icon {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.05);
}

.footer-contact-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  display: block;
}

.footer-contact-value.highlight {
  color: #4caf50;
  font-weight: 600;
}


/* ===== Footer CTA Buttons ===== */
.footer-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.footer-cta-btn.call {
  background: var(--primary);
  color: var(--secondary);
}

.footer-cta-btn.call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.35);
  color: var(--secondary);
}

.footer-cta-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.footer-cta-btn.whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  color: #fff;
}


/* ===== Footer Bottom Bar ===== */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin: 0;
}

.footer-copyright strong {
  color: var(--primary);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

.footer-credit i {
  color: #e74c3c;
  font-size: 0.7rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--primary-light);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}


/* ===== FOOTER RESPONSIVE ===== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-main {
    padding: 48px 0 36px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-desc {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-links a i {
    display: none;
  }

  .footer-contact-list li {
    justify-content: center;
    text-align: left;
  }

  .footer-cta-row {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-main {
    padding: 40px 0 28px;
  }
}

@media (max-width: 480px) {
  .footer-cta-row {
    flex-direction: column;
  }

  .footer-cta-btn {
    justify-content: center;
    width: 100%;
  }

  .footer-heading {
    font-size: 1rem;
  }
}