/*
Theme Name: Trekhillnepal
Theme URI: https://avizbots.com/
Author: Avizbots
Author URI: https://avizbots.com/
Description: Trekhillnepal
Requires at least: 5.9
Tested up to: 6.2
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trekhillnepal
/*--------------------------------------------------------------
# Variables & Base Styles
--------------------------------------------------------------*/
:root {
  /* Brand Colors */
  --primary: #1468B0;
  --primary-dark: #0f4978;
  --primary-light: #4d8ac3;
  --secondary: #F3971D;
  --secondary-light: #ffb95f;
  --accent: #37B679;
  
  /* Neutrals */
  --dark: #202b36;
  --gray-dark: #4a5568;
  --gray: #7e8c99;
  --gray-light: #cbd5e0;
  --light: #f5f8fa;
  --white: #ffffff;
  
  /* Utility */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  
  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Reset & Globals
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-dark);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

a:hover, a:focus {
  color: var(--secondary);
}

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

button {
  cursor: pointer;
  font-family: var(--font-secondary);
}

ul, ol {
  list-style-position: inside;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.site-header {
  position: relative;
  z-index: 100;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  padding: 0.5rem 0;
  color: var(--white);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
}

.contact-info a {
  color: var(--white);
  margin-left: 1.5rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
}

.contact-info a:hover {
  color: var(--secondary-light);
}

.contact-info i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Main Navigation */
.main-nav {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
}

.logo img {
  height: 60px;
  width: auto;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

#menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  color: var(--dark);
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 50%;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 10;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--dark);
  transition: var(--transition);
}

.dropdown a:hover {
  background: rgba(20, 104, 176, 0.05);
  color: var(--primary);
  padding-left: 1.5rem;
}

@media (max-width: 992px) {
  #menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu > li {
    width: 100%;
  }
  
  .nav-menu > li > a {
    padding: 0.75rem 1.5rem;
  }
  
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    height: 0;
    overflow: hidden;
    padding: 0;
  }
  
  .has-dropdown:hover .dropdown {
    height: auto;
    padding: 0.5rem 0;
  }
  
  .dropdown a {
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Hero Slider with Zoom Effect
--------------------------------------------------------------*/
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slides-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  transform: scale(1);
}

.slide.active .slide-image img {
  transform: scale(1.1); /* Zoom effect for active slide */
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Slider Navigation Controls - moved to corners */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn:hover {
  background: rgba(243, 151, 29, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-light {
  background-color: var(--white);
  color: var(--primary);
}

.btn-light:hover, .btn-light:focus {
  background-color: var(--light);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-text {
  background: none;
  color: var(--primary);
  padding: 0;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-text i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.btn-text:hover, .btn-text:focus {
  color: var(--secondary);
}

.btn-text:hover i, .btn-text:focus i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 2.25rem;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.125rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/*--------------------------------------------------------------
# Featured Treks
--------------------------------------------------------------*/
.trek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.trek-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.trek-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.trek-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.trek-card:hover .trek-image img {
  transform: scale(1.05);
}

.trek-difficulty {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.trek-content {
  padding: 1.5rem;
}

.trek-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.trek-content h3 a {
  color: var(--dark);
}

.trek-content h3 a:hover, .trek-content h3 a:focus {
  color: var(--primary);
}

.trek-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.trek-meta span {
  display: flex;
  align-items: center;
}

.trek-meta i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.trek-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Featured Highlight
--------------------------------------------------------------*/
.featured-highlight {
  padding: 4rem 0;
  background: var(--light);
}

.highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.highlight-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.highlight-content:hover .highlight-image img {
  transform: scale(1.05);
}

.highlight-details h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.highlight-details p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}

.highlight-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.highlight-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: var(--gray-dark);
}

.highlight-features i {
  color: var(--primary);
  margin-right: 0.75rem;
}

@media (max-width: 992px) {
  .highlight-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-image {
    grid-row: 1;
  }
  
  .highlight-details {
    grid-row: 2;
  }
}

/*--------------------------------------------------------------
# Experiences
--------------------------------------------------------------*/
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.experience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.experience-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: var(--secondary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.experience-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.experience-card:hover .experience-icon {
  background: var(--secondary);
  transform: rotateY(180deg);
}

.experience-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.experience-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1 1 300px;
  max-width: 600px;
}

.about-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 480px;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(20,104,176,0.08);
  display: block;
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: var(--primary, #1468B0);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Desktop layout: side by side */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }
  .about-text, .about-image {
    max-width: 50%;
  }
  .about-image {
    justify-content: flex-end;
  }
}


@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: 1;
  }
  
  .about-text {
    order: 2;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

blockquote p {
  font-size: 1.125rem;
  color: var(--gray-dark);
}

blockquote p::before,
blockquote p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 0;
}

cite {
  font-style: normal;
  font-weight: 600;
  display: block;
  color: var(--primary);
  font-size: 1.125rem;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 2;
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .testimonial-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .testimonial-content {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-section {
  background-color: var(--light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-content h3 a {
  color: var(--dark);
}

.blog-content h3 a:hover {
  color: var(--primary);
}

.blog-content p {
  color: var(--gray);
  margin-bottom: 1.25rem;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: linear-gradient(rgba(20, 104, 176, 0.85), rgba(20, 104, 176, 0.85)), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 5rem 0;
  position: relative;
  text-align: center;
  color: var(--white);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  margin-top: auto;
  color: var(--dark);
}

.footer-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.footer-mountains svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.footer-content {
  padding-top: 5rem;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-company {
  color: var(--dark);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--dark) !important;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-style: normal;
  font-size: 0.9rem;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--secondary);
}

.footer-contact a {
  color: var(--dark);
}

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

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav h3 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a i {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.fa-tripadvisor {
  font-size: 1.1rem !important;
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.copyright p {
  color: var(--light);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-nav-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding-top: 8rem;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 1.5rem;
    text-align: center;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .footer-nav-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    padding-top: 6rem;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover, .back-to-top:focus {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background: linear-gradient(rgba(20, 104, 176, 0.8), rgba(20, 104, 176, 0.8)), url('https://images.unsplash.com/photo-1542332213-9b5a5a3fad35?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 3rem 0;
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: inline-flex;
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Section Spacing Utility
--------------------------------------------------------------*/
.section-sm {
  padding: 3rem 0;
}

.section-title-small {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title-small::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.values-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

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

.values-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.team-info span {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.certification-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.certification-item img {
  height: 80px;
  width: auto;
  margin: 0 auto 1rem;
}

.certification-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.certification-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Destinations Page Styles
--------------------------------------------------------------*/
.destinations-map {
  position: relative;
  margin: 2rem 0 4rem;
}

.destinations-map img {
    width: 100%;
    border-radius: var(--radius);
    height: 360px;
    object-fit: cover;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.point-marker {
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px rgba(243, 151, 29, 0.3);
  position: relative;
  z-index: 2;
}

.point-info {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 3;
}

.point-info:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: var(--white) transparent transparent transparent;
}

.map-point:hover .point-marker {
  background: var(--primary);
  transform: scale(1.2);
}

.map-point:hover .point-info {
  opacity: 1;
  visibility: visible;
}

.destination-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.destination-feature.reverse {
  direction: rtl;
}

.destination-feature.reverse > * {
  direction: ltr;
}

.destination-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.destination-image img {
  width: 100%;
  transition: transform 0.8s ease;
}

.destination-feature:hover .destination-image img {
  transform: scale(1.05);
}

.destination-content h2 {
  margin-bottom: 0.5rem;
}

.destination-content .lead {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.destination-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.seasons-table-responsive {
  overflow-x: auto;
}

.seasons-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.seasons-table th,
.seasons-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.seasons-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.seasons-table tbody tr:hover {
  background: rgba(20, 104, 176, 0.05);
}

@media (max-width: 992px) {
  .destination-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .destination-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Experiences Page Styles
--------------------------------------------------------------*/
.experience-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.experience-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  color: var(--gray-dark);
}

.experience-nav-item i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.experience-nav-item:hover,
.experience-nav-item.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.experience-nav-item:hover i,
.experience-nav-item.active i {
  color: var(--white);
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
}

.feature i {
  margin-right: 0.75rem;
  color: var(--primary);
}

.trek-option-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.trek-option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trek-option-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 20px;
}

.trek-option-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.trek-difficulty-meter {
  margin: 1rem 0;
}

.difficulty {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.difficulty.easy {
  color: var(--accent);
}

.difficulty.moderate {
  color: var(--secondary);
}

.difficulty.challenging {
  color: #ff9800;
}

.difficulty.hard {
  color: #f44336;
}

.difficulty-bar {
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
}

.difficulty-bar .fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.trek-option-details {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.trek-option-details li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.trek-option-details li i {
  margin-right: 0.75rem;
  color: var(--primary);
}

.custom-trip-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: var(--gray-light);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.commitment-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.commitment-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.commitment-card h3 {
  margin-bottom: 1rem;
}

.commitment-card ul {
  padding-left: 1.25rem;
}

.commitment-card li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .experience-features {
    grid-template-columns: 1fr;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Trip Ideas Page Styles
--------------------------------------------------------------*/
.trip-filter {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

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

.trip-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.trip-card:hover .trip-image img {
  transform: scale(1.05);
}

.trip-difficulty {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.trip-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trip-badges .badge {
  background: var(--secondary);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 20px;
}

.trip-content {
  padding: 1.5rem;
}

.trip-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.trip-content h3 a {
  color: var(--dark);
}

.trip-content h3 a:hover {
  color: var(--primary);
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.trip-meta span {
  display: flex;
  align-items: center;
}

.trip-meta i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.trip-highlights {
  margin-bottom: 1.5rem;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-light);
  padding-top: 1rem;
}

.trip-price {
  display: flex;
  flex-direction: column;
}

.trip-price span {
  font-size: 0.8rem;
  color: var(--gray);
}

.trip-price strong {
  font-size: 1.25rem;
  color: var(--primary);
}

.custom-trip-cta {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.custom-trip-features {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.custom-trip-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.custom-trip-features li i {
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Blog Page Styles
--------------------------------------------------------------*/
.blog-search .input-group {
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.category-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  background: var(--white);
  color: var(--gray-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-category:hover, 
.blog-category.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.featured-article {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.featured-article-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-article:hover .featured-article-image img {
  transform: scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.featured-article-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-meta {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
}

.article-date {
  color: var(--gray);
  font-size: 0.9rem;
}

.blog-post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-post-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-size: 0.8rem;
}

.blog-category {
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-content h3 a {
  color: var(--dark);
}

.blog-content h3 a:hover {
  color: var(--primary);
}

.blog-content p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.blog-pagination {
  margin-top: 2.5rem;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 50%;
  margin: 0 0.25rem;
}

.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}

.blog-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.author-widget {
  text-align: center;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-designation {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.popular-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-post {
  display: flex;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-light);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-right: 1rem;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-info h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.post-info h4 a {
  color: var(--dark);
}

.post-info h4 a:hover {
  color: var(--primary);
}

.post-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.newsletter-widget .widget-title {
  color: var(--white);
}

.newsletter-widget .widget-title::after {
  background: var(--white);
}

.newsletter-form .form-control {
  margin-bottom: 1rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--light);
  color: var(--gray-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .blog-sidebar {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Reviews Page Styles
--------------------------------------------------------------*/
.reviews-summary {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.rating-stars {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.rating-details {
  padding: 0 1rem;
}

.rating-criteria {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.criteria-label {
  width: 150px;
  font-size: 0.9rem;
}

.criteria-value {
  width: 30px;
  text-align: right;
  font-weight: 600;
  margin-left: 1rem;
}

.progress {
  flex: 1;
  height: 8px;
  background-color: var(--gray-light);
  border-radius: 4px;
}

.progress-bar {
  background-color: var(--primary);
  border-radius: 4px;
}

.review-platforms {
  text-align: center;
  margin-top: 2rem;
}

.platform-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.platform-logo img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.platform-logo:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

.reviews-filter {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.filter-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: var(--light);
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.featured-review {
  border-top: 4px solid var(--secondary);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.reviewer-name {
  font-size: 1.1rem;
  margin: 0;
}

.reviewer-location {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.review-trip {
  margin-bottom: 1rem;
}

.trip-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.trip-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.review-content p {
  margin-bottom: 1rem;
}

.review-photos {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.review-photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.review-photo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.leave-review {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-platforms-large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
}

.review-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray-dark);
  transition: var(--transition);
}

.review-platform img {
  margin-bottom: 1rem;
}

.review-platform:hover {
  transform: translateY(-5px);
  color: var(--primary);
}

.divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
  overflow: hidden;
}

.divider::before, 
.divider::after {
  content: "";
  display: inline-block;
  width: 40%;
  height: 1px;
  background: var(--gray-light);
  vertical-align: middle;
}

.divider span {
  display: inline-block;
  padding: 0 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.rating-select {
  font-size: 2rem;
  color: var(--gray-light);
  cursor: pointer;
}

.rating-select i {
  margin-right: 0.25rem;
}

.rating-select i.fas {
  color: var(--secondary);
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-info-card h3 {
  margin-bottom: 1rem;
}

.office-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.office-hours li:last-child {
  border-bottom: none;
}

.day, .note {
  font-weight: 600;
}

.social-icons-large {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon-large {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icon-large:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

.map-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-directions {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-directions h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.form-message {
  margin-top: 1rem;
}

.chat-platforms {
  margin-top: 2rem;
}

.chat-platform {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  color: var(--dark);
  transition: var(--transition);
}

.chat-platform:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--dark);
}

.platform-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  margin-right: 1.5rem;
}

.whatsapp {
  background: #25D366;
}

.messenger {
  background: #0084FF;
}

.skype {
  background: #00AFF0;
}

.platform-details {
  flex: 1;
}

.platform-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.platform-details p {
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.platform-link {
  font-weight: 600;
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(20, 104, 176, 0.05);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-light);
}
/*--------------------------------------------------------------
# Trip Detail Page Styles
--------------------------------------------------------------*/
.trip-hero {
  position: relative;
  height: 70vh;
  color: var(--white);
}

.trip-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.trip-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.trip-hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.trip-categories {
  margin-bottom: 1rem;
}

.trip-category {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 30px;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.trip-hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.meta-item i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.trip-price-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.price-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.trip-price {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.price-per {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Trip Overview Content Styles */
.trip-overview {
  max-width: 1000px;
}

.trip-overview .lead {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.trip-highlights-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.trip-highlights-box h3 {
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.trip-highlights-box ul {
  column-count: 2;
  column-gap: 2rem;
  padding-left: 1.5rem;
}

.trip-highlights-box li {
  margin-bottom: 0.5rem;
}

/* Itinerary Section */
.trip-itinerary {
  margin: 3rem 0;
}

.itinerary-day {
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.day-header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
  position: relative;
  background: var(--white);
  transition: var(--transition);
}

.day-header:hover {
  background: var(--light);
}

.day-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.day-header h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.day-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.day-header[aria-expanded="true"] .day-toggle i {
  transform: rotate(180deg);
}

.day-content {
  padding: 0 1.25rem 1.25rem 4.5rem;
  border-top: 1px solid var(--gray-light);
}

.day-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.day-details li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.day-details strong {
  margin-right: 0.25rem;
}

.view-more-itinerary {
  text-align: center;
  margin-top: 2rem;
}

/* Trip Map */
.trip-map {
  margin: 3rem 0;
}

.map-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container img {
  display: block;
  width: 100%;
}

.map-enlarge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(4px);
  font-size: 0.9rem;
}

/* Includes & Excludes Section */
.trip-includes-excludes {
  margin: 3rem 0;
}

.includes-box,
.excludes-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.includes-box h3,
.excludes-box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.includes-box h3 i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.excludes-box h3 i {
  color: #dc3545;
  margin-right: 0.5rem;
}

.includes-box ul,
.excludes-box ul {
  padding-left: 1.5rem;
}

.includes-box li,
.excludes-box li {
  margin-bottom: 0.5rem;
}

/* Trip Reviews Section */
.trip-reviews {
  margin: 3rem 0;
}

.reviews-summary-small {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.overall-rating-small {
  text-align: center;
}

.review-card-small {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.review-card-small .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-card-small .reviewer-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.review-card-small .reviewer-name {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

/* Trip Sidebar */
.trip-sidebar {
  position: sticky;
  top: 2rem;
}

.booking-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}

.booking-form .form-group {
  margin-bottom: 1.25rem;
}

.booking-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.booking-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
}

.trip-facts-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.trip-facts-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}

.trip-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-facts li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.trip-facts li:last-child {
  border-bottom: none;
}

.trip-facts i {
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.trip-facts li div {
  flex: 1;
}

.fact-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.fact-value {
  font-weight: 500;
}

.need-help-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.need-help-widget h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.need-help-widget p {
  margin-bottom: 1.5rem;
}

.help-contact {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.help-contact i {
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.help-contact div {
  text-align: left;
  flex: 1;
}

.help-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
}

.help-value {
  font-weight: 600;
  color: var(--primary);
}

.weather-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.weather-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}

.weather-seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.weather-season {
  background: var(--light);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.weather-season h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.weather-season p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.temp-range {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* Essential Gear Section */
.gear-categories {
  margin: 2rem 0;
}

.gear-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow);
}

.gear-category h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.gear-category h3 i {
  margin-right: 0.75rem;
}

.gear-list {
  padding-left: 1.5rem;
}

.gear-list li {
  margin-bottom: 0.5rem;
}

.gear-notes {
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .trip-hero h1 {
    font-size: 2.5rem;
  }
  
  .trip-highlights-box ul {
    column-count: 1;
  }
  
  .trip-price-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .weather-seasons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .trip-hero {
    height: auto;
    min-height: 60vh;
  }
  
  .trip-hero-content {
    padding: 6rem 0 3rem;
  }
  
  .meta-item {
    font-size: 1rem;
  }
  
  .gear-category {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Booking Form Page Styles
--------------------------------------------------------------*/
.booking-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h2 {
  margin-bottom: 1rem;
}

/* Progress Steps */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.progress-step.active .step-number {
  background: var(--primary);
  color: var(--white);
}

.step-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}

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

.progress-connector {
  flex: 1;
  height: 3px;
  background: var(--gray-light);
  position: relative;
  z-index: 1;
  margin: 0 0.5rem;
  max-width: 100px;
}

/* Form Steps */
.form-step {
  display: none;
}

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

.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}

.form-step h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

/* Additional Travelers */
.additional-traveler {
  margin-top: 1.5rem;
}

.additional-traveler h5 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Review Step */
.booking-review {
  margin-bottom: 2rem;
}

.review-section {
  margin-bottom: 1.5rem;
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.review-section h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.review-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.review-item {
  margin-bottom: 0.5rem;
}

.item-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.terms-and-conditions {
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.terms-and-conditions .form-check {
  margin-bottom: 1rem;
}

/* Success Message */
.booking-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.booking-success h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.next-steps {
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  text-align: left;
}

.next-steps h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.next-steps ol {
  padding-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
}

/* Sidebar */
.booking-sidebar {
  position: sticky;
  top: 2rem;
}

.trip-summary-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.trip-summary-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}

.trip-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}

.trip-image img {
  width: 100%;
  height: auto;
}

.trip-summary-widget h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.summary-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.summary-details li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-details li i {
  width: 24px;
  color: var(--primary);
  margin-right: 0.5rem;
}

.price-summary {
  background: var(--light);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.price-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--gray-light);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.75rem;
}

.booking-includes-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-includes-widget h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.includes-list li i {
  color: var(--accent);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .booking-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .booking-progress {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .progress-connector {
    display: none;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-navigation button {
    width: 100%;
  }
}



.contact-success {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
}

.contact-success .success-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.contact-success h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

#testimonial {
	position:relative;
}