/*
Theme Name: Desert Tours
Theme URI: 
Author: Your Name
Author URI: 
Description: Tour listing website theme
Version: 2.0
License: GPL v2 or later
Text Domain: desert-tours
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
/* ============================================
   GLOBAL STYLES & CSS VARIABLES
   ============================================ */

:root {
  --primary: #f4a261;
  --primary-dark: #e76f51;
  --secondary: #1a2f3a;
  --secondary-dark: #0f1f27;
  --text-dark: #1a2f3a;
  --text-light: #666;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 20px;
  --border-radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}
/* Headings - Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 56px;
  font-weight: 800;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

/* Navigation & Buttons - Montserrat Semi-bold */
.nav-menu a,
.btn,
button,
.filter-btn,
.view-all-btn,
.submit-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hero Title Special */
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Section Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.section-title span {
  font-family: 'Playfair Display', serif;
  color: #f4a261;
}

/* Card Titles */
.tour-title,
.blog-preview-title,
.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Body Text */
p,
li,
.description,
.excerpt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* Small Text */
.meta-text,
.date,
.category,
.small {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Quote / Testimonial Text */
.testimonial-text,
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

/* Footer */
.site-footer {
  font-family: 'Montserrat', sans-serif;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
/*last*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY & SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-tag .tag-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-tag .tag-text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   HEADER - FIXED ON SCROLL
   ============================================ */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}

/* Fixed header when scrolled */
.main-header.scrolled {
  position: fixed;
  background: #f4a261;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.main-header.scrolled .logo-img {
  height: 50px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  padding: 8px 0;
  white-space: nowrap;
}

.header-nav ul li a:hover {
  color: var(--primary, #f4a261);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Mobile Navigation Close Button */
.mobile-nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* Hamburger Menu Icon */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Pyramid Lines Button */
.pyramid-lines-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

.pyramid-lines-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pyramid-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.line {
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.line-1 {
  width: 28px;
}
.line-2 {
  width: 22px;
}
.line-3 {
  width: 16px;
}
.line-4 {
  width: 10px;
}
.line-5 {
  width: 4px;
}

.pyramid-lines-btn:hover .line {
  background: #f4a261;
}

.pyramid-lines-btn:hover .line-1 {
  width: 32px;
}
.pyramid-lines-btn:hover .line-2 {
  width: 26px;
}
.pyramid-lines-btn:hover .line-3 {
  width: 20px;
}
.pyramid-lines-btn:hover .line-4 {
  width: 14px;
}
.pyramid-lines-btn:hover .line-5 {
  width: 8px;
}

.pyramid-lines-btn:hover {
  transform: translateY(-2px);
}

/* ============================================
   MOBILE NAVIGATION - UPDATED
   ============================================ */

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-nav ul {
    gap: 18px;
  }
  .header-nav ul li a {
    font-size: 11px;
  }
  .header-container {
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }

  .mobile-nav-close {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 10000;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .header-nav.active {
    right: 0;
    background: #f4a261;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  .header-nav ul li {
    width: 100%;
    text-align: center;
  }

  .header-nav ul li a {
    font-size: 20px;
    font-weight: 600;
    white-space: normal;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    letter-spacing: 1px;
  }

  .header-nav ul li:last-child a {
    border-bottom: none;
  }

  .header-nav ul li a:hover {
    color: #fff;
    transform: translateX(5px);
  }

  .header-right {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .header-container {
    padding: 0 15px;
  }

  .pyramid-lines-btn {
    padding: 5px 10px;
  }

  .line-1 {
    width: 24px;
  }
  .line-2 {
    width: 18px;
  }
  .line-3 {
    width: 12px;
  }
  .line-4 {
    width: 8px;
  }
  .line-5 {
    width: 4px;
  }

  .header-nav ul li a {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }

  .header-nav ul li a {
    font-size: 16px;
    padding: 10px 0;
  }

  .pyramid-lines-btn {
    padding: 5px 8px;
  }

  .line-1 {
    width: 20px;
  }
  .line-2 {
    width: 16px;
  }
  .line-3 {
    width: 12px;
  }
  .line-4 {
    width: 8px;
  }
  .line-5 {
    width: 4px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 60px 60px;
}

.hero-text {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text h1 {
  color: white;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  margin: 0 auto 10px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

.scroll-text {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ============================================
   FIXED WHATSAPP BUTTON
   ============================================ */

.fixed-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  text-align: center;
  cursor: pointer;
  animation: slideInRight 0.5s ease;
}

.fixed-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.fixed-whatsapp a:hover {
  transform: scale(1.08);
  background: #128c7e;
}

.fixed-whatsapp span {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  margin-top: 8px;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-us {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-image {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.grid-image:hover {
  transform: translateY(-5px);
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-image:hover img {
  transform: scale(1.05);
}

.grid-image-1,
.grid-image-2 {
  height: 260px;
}
.grid-image-3,
.grid-image-4 {
  height: 200px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 162, 97, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.grid-image:hover .image-overlay {
  opacity: 1;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-tag .tag-line {
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.about-title span {
  color: var(--primary);
}

.about-paragraph {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.about-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateX(5px);
}

/* ============================================
   FEATURED TOURS SECTION
   ============================================ */

.featured-tours {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.tour-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.tour-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  opacity: 1;
  visibility: visible;
  display: block;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.tour-card[style*='display: none'] {
  display: none !important;
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: var(--transition);
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.tour-info {
  padding: 20px;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tour-duration-text {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tour-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 13px;
  margin-bottom: 15px;
}

.tour-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.tour-btn:hover {
  color: var(--primary-dark);
  gap: 12px;
}

.view-all-wrapper {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: var(--transition);
}

.view-all-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
  padding: 100px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(231, 111, 81, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: scale(1.1) rotate(360deg);
}

.feature-icon .icon {
  font-size: 40px;
}

.feature-number {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 15px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-badge {
  display: inline-block;
  background: rgba(244, 162, 97, 0.15);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-section h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-section h2 span {
  color: var(--primary);
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 33px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(244, 162, 97, 0.1);
  transform: translateY(-3px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.cta-feature span:first-child {
  color: var(--primary);
  font-weight: bold;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(135deg, #0f1f27, #0a1518);
  color: white;
  padding: 70px 0 20px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-logo h3 span {
  color: var(--primary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
  text-decoration: none;
}

.footer-social .social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-links li a:hover {
  color: var(--primary);
  transform: translateX(5px);
  display: inline-block;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-icon {
  font-size: 18px;
  min-width: 25px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact li a:hover {
  color: var(--primary);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

.form-group input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.form-group button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-payment {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ============================================
   SIDEBAR PANEL
   ============================================ */

.sidebar-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-panel.active {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-panel.active .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

.sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(135deg, var(#f4a261), var(--secondary-dark));
  padding: 40px 25px;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-panel.active .sidebar-content {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sidebar-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-logo-wrapper {
  text-align: center;
}

.sidebar-logo-img {
  height: 50px;
  width: auto;
}

.sidebar-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.sidebar-contact-icon {
  font-size: 18px;
  min-width: 30px;
}

.sidebar-contact-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-contact-text a:hover {
  color: var(--primary);
}

.sidebar-social-section {
  margin: 20px 0;
}

.social-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.title-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.social-title h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 2px;
}

.creative-social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.creative-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creative-social-link:hover {
  transform: translateX(5px);
}

.creative-social-link.facebook:hover {
  background: #1877f2;
}
.creative-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}
.creative-social-link.twitter:hover {
  background: #1da1f2;
}
.creative-social-link.whatsapp:hover {
  background: #25d366;
}

.social-icon-bg {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.creative-social-link:hover .social-icon-bg {
  background: white;
  transform: rotate(360deg);
}

.social-svg {
  width: 18px;
  height: 18px;
  color: white;
}

.social-name {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.sidebar-footer {
  text-align: center;
  padding-top: 20px;
}

.sidebar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.divider-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.sidebar-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

body.sidebar-open {
  overflow: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .header-nav ul {
    gap: 18px;
  }
  .header-nav ul li a {
    font-size: 11px;
  }
  .header-container {
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    justify-content: flex-start;
  }

  .header-nav.active {
    right: 0;
  }
  .header-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .header-nav ul li a {
    font-size: 16px;
    white-space: normal;
  }

  .header-right {
    gap: 10px;
  }
  .info-text {
    display: none;
  }
  .info-btn {
    padding: 8px 12px;
  }
  .hero-content {
    padding: 80px 20px 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
  .logo-img {
    height: 40px;
  }
  .header-container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 28px;
  }
  .about-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 32px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .form-group {
    flex-direction: column;
  }

  .grid-image-1,
  .grid-image-2 {
    height: 180px;
  }
  .grid-image-3,
  .grid-image-4 {
    height: 140px;
  }

  .tag-line {
    width: 30px;
  }
  .tag-text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }
  .filter-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
  .fixed-whatsapp a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .sidebar-content {
    padding: 40px 20px;
  }
}
/* ============================================
   SINGLE TOUR PAGE
   ============================================ */

.single-tour-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.single-tour-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-tour-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.single-tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 20px 80px;
}

.tour-breadcrumb {
  margin-bottom: 20px;
}

.tour-breadcrumb a,
.tour-breadcrumb .separator,
.tour-breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
}

.tour-breadcrumb a:hover {
  color: var(--primary);
}

.tour-breadcrumb .separator {
  margin: 0 10px;
}

.tour-breadcrumb .current {
  color: var(--primary);
}

.tour-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
}

.hero-meta-item.price {
  background: var(--primary);
}

/* Single Tour Content */
.single-tour-content {
  padding: 80px 0;
  background: var(--bg-light);
}

.tour-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.tour-description {
  background: white;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.tour-description h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.tour-description-text {
  color: var(--text-light);
  line-height: 1.8;
}

.tour-includes {
  background: white;
  padding: 30px;
  border-radius: 20px;
}

.tour-includes h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.tour-includes ul {
  list-style: none;
  padding: 0;
}

.tour-includes li {
  padding: 8px 0;
  color: var(--text-light);
}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card,
.highlights-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.booking-card h3,
.highlights-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.booking-price {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(231, 111, 81, 0.1));
  border-radius: 15px;
  margin-bottom: 20px;
}

.price-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  font-size: 12px;
  color: var(--text-light);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.info-label {
  font-weight: 600;
}

.info-value {
  color: var(--text-light);
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.btn-book-whatsapp {
  background: #25d366;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-book-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-inquiry {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-inquiry:hover {
  background: var(--primary);
  color: white;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 992px) {
  .tour-content-wrapper {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    position: static;
  }

  .tour-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .tour-hero-title {
    font-size: 28px;
  }

  .hero-meta-item {
    font-size: 11px;
    padding: 4px 12px;
  }

  .tour-description {
    padding: 20px;
  }
}

/* ============================================
   PYRAMID LINES BUTTON
   ============================================ */

.pyramid-lines-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.pyramid-lines-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Pyramid Lines Stack */
.pyramid-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.line {
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.line-1 {
  width: 28px;
}

.line-2 {
  width: 22px;
}

.line-3 {
  width: 16px;
}

.line-4 {
  width: 10px;
}

.line-5 {
  width: 4px;
}

/* Text */
.pyramid-lines-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Hover Effects */
.pyramid-lines-btn:hover .line {
  background: #f4a261;
}

.pyramid-lines-btn:hover .line-1 {
  width: 32px;
}

.pyramid-lines-btn:hover .line-2 {
  width: 26px;
}

.pyramid-lines-btn:hover .line-3 {
  width: 20px;
}

.pyramid-lines-btn:hover .line-4 {
  width: 14px;
}

.pyramid-lines-btn:hover .line-5 {
  width: 8px;
}

.pyramid-lines-btn:hover .pyramid-lines-text {
  color: #f4a261;
  letter-spacing: 3px;
}

.pyramid-lines-btn:hover {
  transform: translateY(-2px);
}

/* Click Animation */
.pyramid-lines-btn:active {
  transform: scale(0.95);
}

.pyramid-lines-btn:active .line {
  background: #e76f51;
}

/* ============================================
   LATEST BLOG SECTION
   ============================================ */

.latest-blog {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-preview-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-preview-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.05);
}

.blog-preview-image.placeholder {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.blog-preview-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.blog-preview-content {
  padding: 20px;
}

.blog-preview-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-light);
}

.blog-preview-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-preview-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-preview-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.blog-preview-link:hover {
  gap: 12px;
}

.view-all-blog {
  text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar svg {
  color: var(--primary);
  opacity: 0.7;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: var(--text-light);
}

.rating {
  display: flex;
  gap: 3px;
  margin-top: 5px;
  color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .blog-preview-image {
    height: 200px;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* About Section */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), transparent);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-role {
  display: block;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Home Gallery */
.home-gallery {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delays */
.animate-up:nth-child(1) {
  transition-delay: 0.05s;
}
.animate-up:nth-child(2) {
  transition-delay: 0.1s;
}
.animate-up:nth-child(3) {
  transition-delay: 0.15s;
}
.animate-up:nth-child(4) {
  transition-delay: 0.2s;
}
.animate-up:nth-child(5) {
  transition-delay: 0.25s;
}
.animate-up:nth-child(6) {
  transition-delay: 0.3s;
}

/* Card hover animations */
.feature-card,
.blog-preview-card,
.team-card,
.gallery-item,
.tour-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.blog-preview-card:hover,
.team-card:hover,
.gallery-item:hover,
.tour-card:hover {
  transform: translateY(-10px);
}

/* Stats counter styling */
.stat-number {
  transition: all 0.3s ease;
}

/* CTA section animation */
.cta-section .cta-content {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.cta-section.animate-on-scroll.animated .cta-content {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   IMPROVED COMMENTS SECTION STYLES
   ============================================ */

.comments-section {
  padding: 40px;
  background: var(--bg-light);
  border-top: 1px solid #eee;
}

.comment-respond {
  margin-bottom: 50px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.comment-reply-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reply-title-icon {
  font-size: 24px;
}

.comment-notes {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.required {
  color: #dc3545;
}

.logged-in-as {
  background: #e8f4fd;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.logged-in-as a {
  color: var(--primary);
  text-decoration: none;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.comment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.comment-form-field {
  margin-bottom: 5px;
}

.comment-form-field.full-width {
  grid-column: span 2;
}

.comment-form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.comment-form-field input,
.comment-form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.comment-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-comment {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  width: auto;
  grid-column: span 2;
}

.submit-comment:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.cancel-reply {
  display: inline-block;
  margin-left: 15px;
  font-size: 14px;
  color: #dc3545;
  text-decoration: none;
}

.cancel-reply:hover {
  text-decoration: underline;
}

.comments-list {
  margin-top: 40px;
}

.comments-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list .comment {
  margin-bottom: 25px;
}

.comment-body {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.comment-body:hover {
  box-shadow: var(--shadow-md);
}

.comment-author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content-wrapper {
  flex: 1;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

.comment-date {
  font-size: 12px;
  color: var(--text-light);
}

.comment-moderation {
  font-size: 12px;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.comment-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.comment-text p {
  margin-bottom: 10px;
}

.comment-reply {
  margin-top: 10px;
}

.comment-reply a {
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.comment-reply a:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
  display: inline-block;
}

.children {
  list-style: none;
  padding-left: 80px;
  margin-top: 20px;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.comment-navigation a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.comment-navigation a:hover {
  text-decoration: underline;
}

.must-log-in {
  background: #fff3cd;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #856404;
}

.must-log-in a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .comments-section {
    padding: 25px;
  }

  .comment-respond {
    padding: 20px;
  }

  .comment-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .comment-form-field.full-width {
    grid-column: span 1;
  }

  .submit-comment {
    grid-column: span 1;
    width: 100%;
  }

  .comment-body {
    flex-direction: column;
    text-align: center;
  }

  .children {
    padding-left: 20px;
  }
}
/* Disabled button state */
.submit-comment:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

.submit-comment:disabled:hover {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* Hide login requirement messages */
.must-log-in,
.logged-in-as {
  display: none !important;
}

/* Ensure comment form is always visible */
.comment-respond {
  display: block !important;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* ============================================
   SIDEBAR MAP STYLES
   ============================================ */

.sidebar-map-section {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-map-container {
  margin-top: 15px;
}

.sidebar-map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sidebar-map-container iframe:hover {
  transform: scale(1.02);
}

.map-view-link {
  text-align: center;
  margin-top: 12px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #f4a261;
  transform: translateY(-2px);
}

.map-link span {
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sidebar-map-container iframe {
    height: 180px;
  }

  .map-link {
    padding: 6px 14px;
    font-size: 11px;
  }
}

/* ============================================
   LANGUAGE SWITCHER STYLES
   ============================================ */

.language-switcher {
  position: relative;
  margin-right: 10px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  color: white;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #f4a261;
  border-color: #f4a261;
  transform: translateY(-2px);
}

.current-lang {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-switcher:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1001;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.lang-dropdown a:hover {
  background: rgba(244, 162, 97, 0.2);
  color: #f4a261;
  padding-left: 20px;
}

.lang-dropdown a.active {
  color: #f4a261;
  background: rgba(244, 162, 97, 0.1);
}

/* Mobile responsive */
@media (max-width: 992px) {
  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .lang-dropdown {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .language-switcher {
    margin-right: 5px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .lang-option {
    font-size: 12px;
  }
}
