/* Base and Layout Stylesheet - India Jogi Tours Redesign */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* Global Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header span {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Floating contact widgets */
.floating-action {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: var(--primary-color);
}

/* HEADER & NAVIGATION (Redesigned) */
.top-bar {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--glass-border-dark);
  position: relative;
  z-index: 950;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info, .top-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info a:hover {
  color: var(--accent-color);
}

.top-social a:hover {
  color: var(--accent-color);
}

.main-header {
  position: relative;
  width: 100%;
  z-index: 900;
  background-color: var(--white);
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10, 77, 67, 0.08);
}

/* Sticky styles applied on scroll (Redesigned Frosted Look) */
.main-header.sticky {
  position: fixed;
  top: 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(10, 77, 67, 0.1);
}

.main-header.sticky .logo img {
  filter: drop-shadow(0 2px 4px rgba(10, 77, 67, 0.05));
}

.main-header.sticky .nav-links > li > a {
  color: var(--primary-dark);
}

.main-header.sticky .nav-links > li > a::after {
  background-color: var(--primary-color);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 3.5rem; /* Logo dimensions */
  width: auto;
  transition: var(--transition-smooth);
}

.main-header.sticky .logo img {
  max-height: 2.8rem; /* Scale down slightly on scroll */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: block;
  transition: var(--transition-smooth);
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-links > li:hover > a {
  color: var(--accent-color);
}

.nav-links > li:hover > a::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 1rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 100;
  border: 1px solid rgba(10, 77, 67, 0.05);
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.dropdown a:hover {
  background-color: var(--primary-tint);
  color: var(--primary-color);
}

/* Travel Services Dropdown Multi-Column Layout (Desktop & Tablet) */
@media (min-width: 769px) {
  .nav-links a[href="tour-guides.html"] + .dropdown {
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 0.5rem;
    padding: 1.25rem;
    left: auto;
    right: -180px;
    transform: translateY(15px);
  }
  
  .nav-links > li:hover > a[href="tour-guides.html"] + .dropdown {
    transform: translateY(0);
  }
  
  .nav-links a[href="tour-guides.html"] + .dropdown a {
    text-align: left;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
  }
}


.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.main-header.sticky .hamburger span {
  background-color: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO SLIDER SECTION */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  transform: scale(1.08);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9, 23, 21, 0.85) 35%, rgba(9, 23, 21, 0.4) 100%);
  z-index: 2;
}

.hero-slide .container {
  position: relative;
  z-index: 10;
}

.hero-slide-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-subtitle {
  font-family: var(--font-body);
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
  display: inline-block;
  background-color: rgba(255, 159, 28, 0.12);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
}

.hero-slide h2 {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-slide h2 span {
  color: var(--accent-color);
  font-family: var(--font-title);
  font-style: italic;
}

.hero-slide-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

/* Slider indicators (dots) */
.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--accent-color);
  width: 2rem;
}

/* KEY BADGES SECTION */
.badges-section {
  padding: 0;
  transform: translateY(-50%);
  margin-bottom: -2rem;
  position: relative;
  z-index: 20;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.badge-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-bottom: 3px solid transparent;
  transition: var(--transition-smooth);
}

.badge-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge-info h4 {
  
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.badge-info p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

/* WELCOME & ABOUT SECTION */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-media {
  position: relative;
}

.welcome-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--accent-color);
  border-radius: var(--radius-lg);
  margin: 1rem;
  pointer-events: none;
  z-index: 2;
}

.welcome-experience {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 5;
  border: 1px solid var(--glass-border-dark);
}

.exp-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}

.welcome-content span {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.welcome-content span::after {
  content: '';
  display: inline-block;
  width: 45px;
  height: 1.5px;
  background-color: var(--accent-color);
}

.welcome-content h2 {
  
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.welcome-content h2 span {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.welcome-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(10, 77, 67, 0.1);
  padding-top: 2rem;
}

.stat-item h3 {
  
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* DESTINATION CATEGORIES GRID */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dest-card:hover .dest-img {
  transform: scale(1.1);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(9, 23, 21, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  transition: var(--transition-smooth);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(transparent 30%, rgba(9, 23, 21, 0.9) 100%);
}

.dest-card h3 {
  color: var(--white);
  
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.dest-count {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-btn {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.dest-card:hover .dest-btn {
  opacity: 1;
  transform: translateY(0);
}

.dest-btn i {
  color: var(--accent-color);
  transition: var(--transition-fast);
}

.dest-btn:hover i {
  transform: translateX(5px);
}

/* FEATURED TOURS CAROUSEL */
.slider-outer-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.slider-inner-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.tour-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(10, 77, 67, 0.05);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - (1.75rem * 2)) / 3);
  transition: var(--transition-smooth);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.tour-price-tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
  border: 1px solid var(--glass-border-dark);
}

.tour-price-tag span {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.tour-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tour-meta i {
  color: var(--accent-color);
}

.tour-body h3 {
  
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.tour-body h3:hover {
  color: var(--primary-color);
}

.tour-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(10, 77, 67, 0.08);
  padding-top: 1.25rem;
  margin-top: auto;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.tour-rating i {
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  margin-top: -1px;
}

.tour-rating span {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.8rem;
}

.tour-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tour-link:hover {
  color: var(--accent-color);
}

.tour-link:hover i {
  transform: translateX(4px);
}

/* Slider Navigation Buttons */
.slider-nav-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slide-btn {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slide-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* TRAVEL SERVICES SECTION */
.services-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.services-inner-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.service-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 77, 67, 0.05);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-tint);
}

.service-icon-box {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-color: var(--primary-tint);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem auto;
  font-size: 1.85rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-radius: 50%;
}

.service-card h3 {
  
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-content {
  background-color: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border-dark);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-title);
  font-size: 8rem;
  color: rgba(255, 159, 28, 0.1);
  line-height: 1;
}

.review-stars {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.reviewer-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--accent-color);
  background-color: var(--primary-dark);
  color: var(--accent-color);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.reviewer-info {
  text-align: left;
}

.reviewer-info h4 {
  
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.reviewer-info p {
  font-size: 0.8rem;
  color: var(--accent-color);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER SECTION */
.main-footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  border-top: 1px solid var(--glass-border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-border-dark);
}

.footer-col h4 {
  
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-about .logo {
  margin-bottom: 1.5rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-dark-card);
  border: 1px solid var(--glass-border-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links-list a::before {
  content: '→';
  color: var(--accent-color);
  font-weight: 700;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 0.35rem;
}

.footer-links-list a:hover::before {
  transform: translateX(2px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-color);
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Animations Trigger Classes (Scroll reveal) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* INNER PAGES (About Us, etc.) */
.inner-hero {
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(9, 23, 21, 0.75), rgba(9, 23, 21, 0.9)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 8rem 0 5rem 0;
  text-align: center;
}

.inner-hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.inner-hero-breadcrumbs {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.inner-hero-breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.inner-hero-breadcrumbs a:hover {
  color: var(--white);
}

/* Blockquotes */
.founder-blockquote {
  position: relative;
  background-color: var(--bg-alt);
  border-left: 4px solid var(--accent-color);
  padding: 2rem 2.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.founder-blockquote p {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.founder-blockquote cite {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  display: block;
}

/* Core Values Card Grid */
.values-section {
  background-color: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 77, 67, 0.04);
  transition: var(--transition-smooth);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-tint);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--primary-dark);
}

.value-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Fleet Display styling */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.fleet-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 77, 67, 0.05);
  border: 1px solid rgba(10, 77, 67, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 77, 67, 0.12);
  border-color: rgba(255, 159, 28, 0.3);
}

.fleet-image-container {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: #f7f9f8;
}

.fleet-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-image-container img {
  transform: scale(1.06);
}

.fleet-image-overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to bottom, rgba(9, 23, 21, 0.4) 0%, transparent 40%, rgba(9, 23, 21, 0.1) 100%);
  pointer-events: none;
}

.fleet-badge {
  background: rgba(10, 77, 67, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 30px;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fleet-badge i {
  color: var(--accent-color);
}

.fleet-price-tag {
  background: rgba(255, 159, 28, 0.95);
  color: var(--primary-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  font-size: 0.725rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 159, 28, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fleet-price-tag strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.fleet-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-meta-tag {
  color: var(--accent-color);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.fleet-content h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.fleet-content p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.fleet-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.spec-pill {
  background: #f4f7f6;
  color: var(--primary-color);
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(10, 77, 67, 0.05);
  transition: all 0.3s ease;
}

.fleet-card:hover .spec-pill {
  background: var(--primary-tint);
  border-color: rgba(10, 77, 67, 0.08);
}

.fleet-content .book-fleet-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.fleet-content .book-fleet-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.fleet-content .book-fleet-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CONTACT US PAGE STYLING
   ========================================================================== */

/* Inquiry grid layout (Two-column layout) */
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column: Inquiry details */
.inquiry-info span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.inquiry-info h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.inquiry-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.inquiry-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

/* Quick Contact Details List */
.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-quick-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-tint);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-quick-item:hover .contact-quick-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-quick-details h4 {
  
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-quick-details p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-quick-details a {
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-quick-details a:hover {
  color: var(--accent-color) !important;
}

/* Right Column: Inquiry Form Wrapper */
.inquiry-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 77, 67, 0.05);
}

.inquiry-form-wrapper .form-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.inquiry-form-wrapper .form-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
  border-radius: var(--radius-full);
}

/* Form Styles */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(10, 77, 67, 0.15);
  border-radius: var(--radius-sm);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 77, 67, 0.1);
  background-color: var(--white);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A4D43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Date input styling helper */
input[type="date"].form-control {
  cursor: pointer;
}

/* Client Side Form Validation States */
.form-group.invalid .form-control,
.form-group.has-error .form-control {
  border-color: var(--danger);
  background-color: rgba(231, 29, 54, 0.02);
}

.form-group.invalid .form-control:focus,
.form-group.has-error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(231, 29, 54, 0.1);
}

.form-validation-message {
  font-size: 0.75rem;
  color: var(--danger);
  font-weight: 500;
  display: none;
  margin-top: 0.25rem;
}

.form-group.invalid .form-validation-message,
.form-group.has-error .form-validation-message {
  display: block;
}

/* ==========================================================================
   TOUR PACKAGES LISTING PAGE (packages.html)
   ========================================================================== */

.packages-container {
  padding: 5rem 0;
}

.filter-buttons-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid rgba(10, 77, 67, 0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  transition: opacity 0.3s ease;
}

.packages-grid.fade-out {
  opacity: 0;
}

.no-tours-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(10, 77, 67, 0.2);
}

.no-tours-found i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.no-tours-found h3 {
  font-family: var(--font-title);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.no-tours-found p {
  color: var(--text-light);
}

/* ==========================================================================
   DYNAMIC TOUR DETAIL PAGE (tour-detail.html)
   ========================================================================== */

.tour-detail-container {
  padding: 5rem 0;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.tour-detail-main {
  min-width: 0;
}

/* Tour Gallery / Banner inside detail */
.detail-hero-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 77, 67, 0.08);
}

.detail-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.detail-info-item i {
  color: var(--accent-color);
}

/* Summary Box */
.tour-detail-summary {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 3rem;
}

/* Quick Specs Cards Grid */
.specs-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.spec-card {
  background-color: var(--bg-alt);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(10, 77, 67, 0.05);
  transition: var(--transition-fast);
}

.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 67, 0.15);
}

.spec-card-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.spec-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.spec-card p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

/* Tabs System */
.detail-tabs-nav {
  display: flex;
  border-bottom: 2px solid rgba(10, 77, 67, 0.08);
  margin-bottom: 2.5rem;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.detail-tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-nav-btn {
  background: none;
  border: none;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  flex: 0 0 auto;
}

.tab-nav-btn:hover,
.tab-nav-btn.active {
  color: var(--primary-color);
}

.tab-nav-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.tab-nav-btn.active::after {
  transform: scaleX(1);
}

.detail-tab-pane {
  display: none;
}

.detail-tab-pane.active {
  display: block;
  animation: fadeIn-detail 0.4s ease-out;
}

@keyframes fadeIn-detail {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accordion Timeline Itinerary */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-day-card {
  border: 1px solid rgba(10, 77, 67, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.timeline-day-header {
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-alt);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.timeline-day-header:hover {
  background-color: var(--primary-tint);
}

.day-header-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}

.day-badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.day-title-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.timeline-day-icon {
  font-size: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.timeline-day-card.active .timeline-day-icon {
  transform: rotate(180deg);
}

.timeline-day-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--white);
}

.timeline-day-card.active .timeline-day-body {
  max-height: 500px;
}

.timeline-day-content {
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  border-top: 1px solid rgba(10, 77, 67, 0.05);
}

/* Inclusions/Exclusions Lists in details */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.inc-column h3,
.exc-column h3 {
  font-family: var(--font-title);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.inc-list,
.exc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inc-list li,
.exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

.inc-list li i {
  color: var(--success);
  margin-top: 0.2rem;
}

.exc-list li i {
  color: var(--danger);
  margin-top: 0.2rem;
}

/* Sidebar Sticky booking card */
.tour-detail-sidebar {
  align-self: stretch;
}

.booking-sticky-sidebar {
  position: sticky;
  top: 120px;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 77, 67, 0.05);
}

.sidebar-price-info {
  margin-bottom: 1.5rem;
}

.sidebar-price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.sidebar-price-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-body);
}

.sidebar-price-value span {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.sidebar-meta-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 77, 67, 0.08);
}

.sidebar-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.sidebar-meta-item span:first-child {
  color: var(--text-light);
}

.sidebar-meta-item span:last-child {
  font-weight: 700;
  color: var(--primary-color);
}

.sidebar-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   POPUP MODAL & PHONE INPUT STYLES
   ========================================================================== */
.inquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 23, 21, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.inquiry-modal.active {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal-content {
  background-color: var(--white);
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 77, 67, 0.08);
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
  
  /* Stylish Scrollbar Properties (Firefox) */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--primary-tint);
}

/* Stylish Scrollbar Properties (WebKit - Chrome/Safari/Edge) */
.inquiry-modal-content::-webkit-scrollbar {
  width: 6px;
}

.inquiry-modal-content::-webkit-scrollbar-track {
  background: var(--primary-tint);
  border-radius: var(--radius-full);
}

.inquiry-modal-content::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-tint);
}

.inquiry-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-light);
}

.inquiry-modal.active .inquiry-modal-content {
  transform: scale(1);
}

.inquiry-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.inquiry-modal-close:hover {
  background-color: var(--bg-alt);
  color: var(--primary-color);
}

.inquiry-modal-header {
  margin-bottom: 2rem;
}

.inquiry-modal-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.inquiry-modal-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.inquiry-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start; /* Ensure proper left-alignment */
}

.modal-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 77, 67, 0.15);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-color);
  transition: var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 77, 67, 0.08);
}

/* Specific Phone Input Styles to match intl-tel-input */
.iti {
  width: 100%;
}

/* Error validation styling */
.phone-error-msg {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.modal-form-group.has-error input,
.modal-form-group.has-error select {
  border-color: var(--danger) !important;
}

.modal-form-group.has-error input:focus,
.modal-form-group.has-error select:focus {
  box-shadow: 0 0 0 3px rgba(231, 29, 54, 0.08) !important;
}

.modal-form-group.has-error .phone-error-msg {
  display: block;
}

.modal-submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
}

.modal-submit-btn:hover {
  background-color: var(--primary-light);
}

/* Fleet Header Layout Styles */
.fleet-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.fleet-header-left {
  position: sticky;
  top: 100px;
}

.fleet-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.fleet-header-left h2 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.luxury-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.luxury-divider .gold-line {
  display: inline-block;
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, var(--accent-color), transparent);
}

.luxury-divider .gold-line:first-child {
  background: linear-gradient(to left, var(--accent-color), transparent);
}

.fleet-feature-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.fleet-feature-tags span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.fleet-feature-tags i {
  color: var(--accent-color);
  font-size: 1rem;
}

.fleet-header-right {
  border-left: 3px solid var(--accent-color);
  padding-left: 2.5rem;
}

.fleet-header-right .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fleet-header-right .body-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.fleet-header-right .body-text:last-child {
  margin-bottom: 0;
}

/* Hotel Intro Page Styles */
.hotel-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.hotel-header-left {
  position: sticky;
  top: 100px;
}

.hotel-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.hotel-header-left h2 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hotel-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hotel-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.hotel-feature-item:hover {
  transform: translateX(5px);
}

.hotel-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 77, 67, 0.05);
  border: 1px solid rgba(10, 77, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hotel-feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(10, 77, 67, 0.2);
}

.hotel-feature-item .feature-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.hotel-feature-item .feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.hotel-header-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hotel-narrative-box {
  border-left: 3px solid var(--accent-color);
  padding-left: 2.5rem;
}

.hotel-narrative-box .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hotel-narrative-box .body-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 0;
}

.hotel-image-showcase .image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background-color: var(--bg-alt);
}

.hotel-image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-image-showcase .image-wrapper:hover img {
  transform: scale(1.05);
}

.hotel-image-showcase .image-accent-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-md) - 5px);
  pointer-events: none;
  z-index: 2;
}

.hotel-image-showcase .image-caption-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(9, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hotel-image-showcase .image-caption-badge i {
  color: var(--accent-color);
}

/* Rail Booking Intro Page Styles */
.rail-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.rail-header-left {
  position: sticky;
  top: 100px;
}

.rail-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.rail-header-left h2 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.rail-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.rail-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.rail-feature-item:hover {
  transform: translateX(5px);
}

.rail-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 77, 67, 0.05);
  border: 1px solid rgba(10, 77, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rail-feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(10, 77, 67, 0.2);
}

.rail-feature-item .feature-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.rail-feature-item .feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.rail-header-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.rail-narrative-box {
  border-left: 3px solid var(--accent-color);
  padding-left: 2.5rem;
}

.rail-narrative-box .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.rail-narrative-box .body-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 0;
}

.rail-image-showcase .image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background-color: var(--bg-alt);
}

.rail-image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rail-image-showcase .image-wrapper:hover img {
  transform: scale(1.05);
}

.rail-image-showcase .image-accent-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-md) - 5px);
  pointer-events: none;
  z-index: 2;
}

.rail-image-showcase .image-caption-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(9, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rail-image-showcase .image-caption-badge i {
  color: var(--accent-color);
}

/* Airline Booking Intro Page Styles */
.airline-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.airline-header-left {
  position: sticky;
  top: 100px;
}

.airline-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.airline-header-left h2 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.airline-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.airline-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.airline-feature-item:hover {
  transform: translateX(5px);
}

.airline-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 77, 67, 0.05);
  border: 1px solid rgba(10, 77, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.airline-feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(10, 77, 67, 0.2);
}

.airline-feature-item .feature-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.airline-feature-item .feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.airline-header-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.airline-narrative-box {
  border-left: 3px solid var(--accent-color);
  padding-left: 2.5rem;
}

.airline-narrative-box .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.airline-narrative-box .body-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 0;
}

.airline-image-showcase .image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background-color: var(--bg-alt);
}

.airline-image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.airline-image-showcase .image-wrapper:hover img {
  transform: scale(1.05);
}

.airline-image-showcase .image-accent-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-md) - 5px);
  pointer-events: none;
  z-index: 2;
}

.airline-image-showcase .image-caption-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(9, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.airline-image-showcase .image-caption-badge i {
  color: var(--accent-color);
}

/* Visa Booking Intro Page Styles */
.visa-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.visa-header-left {
  position: sticky;
  top: 100px;
}

.visa-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.visa-header-left h2 {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.visa-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.visa-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.visa-feature-item:hover {
  transform: translateX(5px);
}

.visa-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 77, 67, 0.05);
  border: 1px solid rgba(10, 77, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.visa-feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(10, 77, 67, 0.2);
}

.visa-feature-item .feature-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.visa-feature-item .feature-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

.visa-header-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.visa-narrative-box {
  border-left: 3px solid var(--accent-color);
  padding-left: 2.5rem;
}

.visa-narrative-box .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.visa-narrative-box .body-text {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 0;
}

.visa-image-showcase .image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background-color: var(--bg-alt);
}

.visa-image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visa-image-showcase .image-wrapper:hover img {
  transform: scale(1.05);
}

.visa-image-showcase .image-accent-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--radius-md) - 5px);
  pointer-events: none;
  z-index: 2;
}

.visa-image-showcase .image-caption-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(9, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.visa-image-showcase .image-caption-badge i {
  color: var(--accent-color);
}

/* Theme Slider Carousel Styles */
.theme-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.theme-inner-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.theme-card {
  width: 280px;
  flex: 0 0 280px;
  max-width: none;
}

/* ==========================================================================
   BLOG PAGE STYLING
   ========================================================================== */

/* Filter Bar */
.blog-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  margin-top: -1rem;
}

.blog-filter-btn {
  background-color: var(--white);
  border: 1px solid rgba(10, 77, 67, 0.12);
  color: var(--text-color);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.blog-filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.blog-filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 77, 67, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 159, 28, 0.25);
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(10, 77, 67, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-meta i {
  color: var(--accent-color);
}

.blog-card-title {
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--primary-light);
}

.blog-card-excerpt {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  border-top: 1px solid rgba(10, 77, 67, 0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.blog-card-btn {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition-fast);
}

.blog-card-btn i {
  transition: transform 0.2s ease;
}

.blog-card-btn:hover {
  color: var(--accent-color);
}

.blog-card-btn:hover i {
  transform: translateX(4px);
}

/* Blog Article Modal (Popup Reader) */
.blog-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 23, 21, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.blog-modal.active {
  opacity: 1;
  visibility: visible;
}

.blog-modal-content {
  background-color: var(--white);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal.active .blog-modal-content {
  transform: translateY(0);
}

.blog-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background-color: rgba(9, 23, 21, 0.65);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.blog-modal-close:hover {
  background-color: var(--accent-color);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.blog-modal-header-img {
  width: 100%;
  height: 320px;
  position: relative;
  background-color: var(--bg-alt);
}

.blog-modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 23, 21, 0.8) 0%, rgba(9, 23, 21, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.blog-modal-header-overlay .blog-card-tag {
  position: static;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.blog-modal-header-overlay h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-modal-body {
  padding: 2.5rem;
}

.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(10, 77, 67, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}

.blog-modal-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-modal-meta i {
  color: var(--accent-color);
}

.blog-modal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-modal-text p {
  margin-bottom: 1.5rem;
}

.blog-modal-text h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

.blog-modal-text blockquote {
  position: relative;
  background-color: var(--bg-alt);
  border-left: 4px solid var(--accent-color);
  padding: 1.25rem 1.75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.75rem 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--primary-dark);
}

.blog-modal-cta {
  margin-top: 3rem;
  background-color: var(--primary-tint);
  border: 1px dashed var(--primary-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.blog-modal-cta h4 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.blog-modal-cta p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.blog-modal-cta .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-modal-header-img {
    height: 240px;
  }
  .blog-modal-header-overlay {
    padding: 1.5rem;
  }
  .blog-modal-header-overlay h2 {
    font-size: 1.5rem;
  }
  .blog-modal-body {
    padding: 1.5rem;
  }
}

/* Detail Page Badges Grid */
.detail-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Detail Page Badge Card overrides */
.detail-badge-card {
  align-items: flex-start !important;
  padding: 1.75rem !important;
}

/* Fix for intl-tel-input dropdown visibility inside modals */
.iti--container,
.iti-container,
.iti__dropdown,
.iti__country-list {
  z-index: 100000000 !important;
}








