/* ============================================================
   ROOT94 TOURS & TRAVELS — MAIN STYLESHEET
   Theme: Blue / White / Orange | Glassmorphism | Premium UI
   ============================================================ */

/* ---------- 1. ROOT VARIABLES ---------- */
:root {
  /* Brand Colors */
  --primary-blue: #0a3d62;
  --primary-blue-light: #1565c0;
  --primary-blue-dark: #06283d;
  --accent-orange: #ff7b00;
  --accent-orange-light: #ff9a3d;
  --accent-orange-dark: #d96400;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #e9eef3;
  --text-dark: #1c2b36;
  --text-muted: #5c6f7c;
  --success-green: #1eb980;
  --danger-red: #e63946;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-dark: rgba(10, 61, 98, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px rgba(10, 61, 98, 0.15);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0a3d62 0%, #1565c0 100%);
  --gradient-orange: linear-gradient(135deg, #ff7b00 0%, #ff9a3d 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 61, 98, 0.92) 0%, rgba(21, 101, 192, 0.85) 60%, rgba(255, 123, 0, 0.25) 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 61, 98, 0.12);
  --shadow-lg: 0 16px 40px rgba(10, 61, 98, 0.18);
  --shadow-orange: 0 8px 24px rgba(255, 123, 0, 0.3);
}

/* ---------- 2. DARK MODE VARIABLES ---------- */
[data-theme="dark"] {
  --white: #0f1b24;
  --off-white: #142531;
  --light-gray: #1b2e3c;
  --text-dark: #eef3f8;
  --text-muted: #a8bac6;
  --glass-bg: rgba(15, 27, 36, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] body {
  background-color: var(--white);
  color: var(--text-dark);
}

[data-theme="dark"] .navbar {
  background: rgba(10, 20, 28, 0.85) !important;
}

[data-theme="dark"] .card,
[data-theme="dark"] .glass-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

[data-theme="dark"] .section-light {
  background-color: var(--off-white) !important;
}

/* ---------- 3. RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.25;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--white);
}

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

img {
  max-width: 100%;
  display: block;
}

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

.section-padding-sm {
  padding: 60px 0;
}

.bg-off-white {
  background-color: var(--off-white);
}

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

.text-blue {
  color: var(--primary-blue) !important;
}

/* ---------- 4. LOADING SCREEN ---------- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: pulseLogo 1.4s ease-in-out infinite;
}

.loader-logo span {
  color: var(--accent-orange);
}

.loader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--accent-orange);
  border-radius: var(--radius-full);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

/* ---------- 5. NAVBAR ---------- */
.navbar {
  padding: 14px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.navbar-brand i {
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.navbar .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  margin: 0 10px;
  position: relative;
  padding: 6px 2px !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-orange);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

.btn-nav-book {
  background: var(--gradient-orange);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 26px !important;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  margin-left: 10px;
}

.btn-nav-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 123, 0, 0.4);
  color: var(--white) !important;
}

.dark-toggle-btn {
  background: var(--light-gray);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  color: var(--primary-blue);
  transition: var(--transition);
  cursor: pointer;
}

.dark-toggle-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: rotate(20deg);
}

/* ---------- 6. BUTTONS ---------- */
.btn-root94-primary {
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-root94-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 123, 0, 0.45);
  color: var(--white);
}

.btn-root94-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 13px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-root94-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.btn-root94-blue {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-root94-blue:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* ---------- 7. GLASSMORPHISM CARDS ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

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

.glass-dark {
  background: var(--glass-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ---------- 8. HERO SECTION ---------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--white);
}

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

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-content h1 span {
  color: var(--accent-orange);
}

.hero-content p.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent-orange);
  width: 30px;
  border-radius: var(--radius-full);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 15;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.85;
}

.hero-scroll-indicator i {
  animation: bounceDown 1.6s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Quick Search / Booking Strip on Hero */
.quick-booking-strip {
  position: relative;
  z-index: 20;
  margin-top: -70px;
}

.quick-booking-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

[data-theme="dark"] .quick-booking-card {
  background: rgba(20, 37, 49, 0.85);
}

.quick-booking-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

[data-theme="dark"] .quick-booking-card .form-label {
  color: var(--white);
}

.quick-booking-card .form-control,
.quick-booking-card .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-gray);
  padding: 12px 14px;
  font-size: 0.92rem;
}

.quick-booking-card .form-control:focus,
.quick-booking-card .form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.15);
}

/* ---------- 9. SECTION TITLES ---------- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 123, 0, 0.1);
  color: var(--accent-orange-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.section-title-wrap h2 span {
  color: var(--accent-orange);
}

.section-title-wrap p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- 10. ABOUT / FEATURE STRIP ---------- */
.feature-strip {
  background: var(--gradient-primary);
  padding: 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.feature-item i {
  font-size: 2.2rem;
  color: var(--accent-orange);
}

.feature-item h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-exp-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gradient-orange);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-orange);
  border: 4px solid var(--white);
}

.about-exp-badge h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0;
}

.about-exp-badge span {
  font-size: 0.78rem;
  font-weight: 600;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-checklist li i {
  color: var(--success-green);
  background: rgba(30, 185, 128, 0.12);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- 11. SERVICE CARDS ---------- */
.service-card {
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card .service-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}

.service-card .service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card:hover .service-icon {
  background: var(--gradient-orange);
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.service-card .service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-orange);
}

.service-card .service-link i {
  margin-left: 4px;
  transition: var(--transition);
}

.service-card:hover .service-link i {
  margin-left: 10px;
}

.service-card-number {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(10, 61, 98, 0.06);
  font-family: var(--font-heading);
}

/* ---------- 12. PACKAGE / TOUR CARDS ---------- */
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.package-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.12);
}

.package-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-orange);
}

.package-duration-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
}

.package-body {
  padding: 24px;
}

.package-body h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.package-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.package-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-meta span i {
  color: var(--accent-orange);
}


/* ---------- 14. WHY CHOOSE US ---------- */
.why-choose-card {
  padding: 32px 26px;
  text-align: center;
  height: 100%;
}

.why-choose-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 123, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-choose-card .icon-circle i {
  font-size: 1.8rem;
  color: var(--accent-orange);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-choose-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- 15. STATS COUNTER ---------- */
.stats-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 123, 0, 0.15), transparent 60%);
}

.stat-box {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.stat-box i {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 14px;
}

.stat-box h3 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 800;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------- 16. TESTIMONIALS ---------- */
.testimonial-card {
  padding: 32px;
  position: relative;
  height: 100%;
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: rgba(255, 123, 0, 0.25);
  margin-bottom: 14px;
}

.testimonial-card p.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--off-white);
}

.testimonial-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: var(--accent-orange);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* ---------- 17. GALLERY ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 61, 98, 0) 40%, rgba(10, 61, 98, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h5 {
  color: var(--white);
  margin-bottom: 0;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 123, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-filter-btns {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-filter-btns button {
  background: transparent;
  border: 2px solid var(--light-gray);
  color: var(--text-dark);
  font-weight: 600;
  padding: 9px 24px;
  border-radius: var(--radius-full);
  margin: 0 6px 10px;
  transition: var(--transition);
}

.gallery-filter-btns button.active,
.gallery-filter-btns button:hover {
  background: var(--gradient-orange);
  color: var(--white);
  border-color: transparent;
}

/* ---------- 18. FAQ ACCORDION ---------- */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 20px 26px;
  background: var(--white);
  color: var(--primary-blue);
}

[data-theme="dark"] .faq-accordion .accordion-button {
  background: var(--off-white);
  color: var(--white);
}

[data-theme="dark"] .faq-accordion .accordion-body {
  background: var(--off-white);
  color: var(--text-muted);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
  background-size: 1.1rem;
}

.faq-accordion .accordion-body {
  padding: 22px 26px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- 19. CTA SECTION ---------- */
.cta-section {
  background: var(--gradient-orange);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '\f5b0';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.1);
  right: -20px;
  bottom: -50px;
  transform: rotate(-15deg);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ---------- 20. FOOTER ---------- */
.site-footer {
  background: var(--primary-blue-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
  position: relative;
}

.footer-widget h5 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand span {
  color: var(--accent-orange);
}

.footer-widget p {
  font-size: 0.92rem;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--accent-orange);
  font-size: 0.7rem;
}

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

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

.footer-contact-item i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-orange);
  transform: translateY(-4px);
}

.footer-newsletter input {
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.9rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent-orange);
}

/* ---------- 21. FLOATING BUTTONS ---------- */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

.float-whatsapp {
  background: #25d366;
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulseRing 2s infinite;
  z-index: -1;
}

.float-call {
  background: var(--gradient-orange);
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* ---------- 22. PAGE HEADER (Inner Pages) ---------- */
.page-header {
  position: relative;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.page-header-content {
  position: relative;
  z-index: 5;
  color: var(--white);
}

.page-header-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a:hover {
  color: var(--accent-orange);
}

.breadcrumb-custom .separator {
  color: var(--accent-orange);
}

.breadcrumb-custom .current {
  color: var(--accent-orange);
}

/* ---------- 23. FORMS (Contact / Booking) ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}

.form-card .form-label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

[data-theme="dark"] .form-card .form-label {
  color: var(--white);
}

.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  background: var(--off-white);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.12);
  background: var(--white);
}

.form-card textarea.form-control {
  resize: none;
}

.input-icon-group {
  position: relative;
}

.input-icon-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-orange);
  z-index: 5;
}

.input-icon-group .form-control,
.input-icon-group .form-select {
  padding-left: 42px;
}

.vehicle-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vehicle-option {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.vehicle-option input {
  display: none;
}

.vehicle-option i {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  display: block;
}

.vehicle-option span {
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
}

.vehicle-option:hover {
  border-color: var(--accent-orange-light);
}

.vehicle-option.selected {
  border-color: var(--accent-orange);
  background: rgba(255, 123, 0, 0.08);
}

.vehicle-option.selected i {
  color: var(--accent-orange);
}

/* Success Modal */
.success-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(30, 185, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-circle i {
  font-size: 2.8rem;
  color: var(--success-green);
}

/* ---------- 24. CONTACT INFO CARDS ---------- */
.contact-info-card {
  padding: 30px;
  text-align: center;
  height: 100%;
}

.contact-info-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-info-card .icon-circle i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info-card h5 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- 25. TIMELINE (About Page) ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid var(--light-gray);
}

.timeline-item {
  position: relative;
  margin-bottom: 34px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent-orange);
}

.timeline-item h5 {
  margin-bottom: 6px;
}

.timeline-item span.year-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- 26. TEAM / VALUES ---------- */
.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(10, 61, 98, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transform: rotate(10deg);
}

.value-card .icon-circle i {
  font-size: 1.7rem;
  color: var(--primary-blue);
  transform: rotate(-10deg);
}

/* ---------- 27. PRICING / PACKAGE DETAIL LIST ---------- */
.included-list, .excluded-list {
  list-style: none;
  padding: 0;
}

.included-list li, .excluded-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.included-list li i {
  color: var(--success-green);
}

.excluded-list li i {
  color: var(--danger-red);
}

/* ---------- 28. UTILITIES ---------- */
.overlay-dark {
  position: relative;
}

.divider-orange {
  width: 60px;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.badge-soft {
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary-blue-light);
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
}

::selection {
  background: var(--accent-orange);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
}
