* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e40af;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --dark-color: #1f2937;
  --light-color: #f3f4f6;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-2: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-3: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

body {
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(30, 64, 175, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
}

.logo i {
  font-size: 32px;
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.3)), url('image/excl.jpg');
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 60px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 36px;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Categories Section */
.categories {
  background: var(--light-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.category-icon i {
  font-size: 36px;
  color: var(--white);
}

.category-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.category-card > p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.8;
}

.category-features {
  list-style: none;
  margin-bottom: 25px;
}

.category-features li {
  padding: 8px 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-features i {
  color: var(--accent-color);
}

.category-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.category-link:hover {
  gap: 15px;
}

/* Featured Tours Section */
.featured-tours {
  background: var(--white);
}

.tours-slider {
  position: relative;
  overflow: hidden;
}

.tour-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tour-slide.active {
  display: grid;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tour-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tour-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition);
}

.tour-slide:hover .tour-image img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.tour-content {
  padding: 20px;
}

.tour-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.tour-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.tour-content > p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.8;
}

.tour-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
}

.detail-item i {
  color: var(--primary-color);
}

.tour-highlights h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.tour-highlights ul {
  list-style: none;
  margin-bottom: 30px;
}

.tour-highlights li {
  padding: 8px 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-highlights i {
  color: var(--accent-color);
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 2px solid var(--light-color);
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-label {
  font-size: 14px;
  color: #6b7280;
}

.price-value {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary-color);
}

.price-period {
  font-size: 16px;
  color: #6b7280;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Unique Experiences Section */
.unique-experiences {
  background: var(--light-color);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.experience-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.experience-number {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 72px;
  font-weight: bold;
  color: var(--light-color);
  z-index: 0;
}

.experience-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.experience-icon i {
  font-size: 32px;
  color: var(--white);
}

.experience-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.experience-card p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.experience-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--light-color);
}

.experience-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.experience-meta i {
  color: var(--primary-color);
}

/* Adventure Map Section */
.adventure-map {
  background: var(--white);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.map-marker {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}

.marker-pin {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.marker-pin i {
  font-size: 24px;
  color: var(--white);
}

.marker-tooltip {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.marker-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
}

.map-marker:hover .marker-tooltip {
  opacity: 1;
}

.map-marker:hover .marker-pin {
  transform: scale(1.2);
}

.marker-tooltip h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.marker-tooltip p {
  font-size: 14px;
  color: #6b7280;
}

/* Safety Section */
.safety-section {
  background: var(--light-color);
}

.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.safety-text p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.safety-feature {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 28px;
  color: var(--white);
}

.feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.safety-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.safety-image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.safety-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.safety-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  height: 520px !important;
}

.safety-img-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  background: var(--light-color);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: var(--secondary-color);
  font-size: 20px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.author-info p {
  color: #6b7280;
  font-size: 14px;
}

.testimonial-tour {
  display: inline-block;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-color);
  color: var(--white);
}

.testimonials-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Pricing Section */
.pricing-section {
  background: var(--light-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.pricing-header p {
  color: #6b7280;
}

.pricing-price {
  text-align: center;
  margin-bottom: 30px;
}

.currency {
  font-size: 24px;
  color: var(--primary-color);
  vertical-align: top;
}

.amount {
  font-size: 56px;
  font-weight: bold;
  color: var(--primary-color);
}

.period {
  font-size: 16px;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features i.fa-check {
  color: var(--accent-color);
}

.pricing-features i.fa-times {
  color: #d1d5db;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 64, 175, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay i {
  font-size: 48px;
  color: var(--white);
}

.gallery-overlay p {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: var(--light-color);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-color);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--dark-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: #6b7280;
  line-height: 1.8;
}

/* Booking Section */
.booking-section {
  background: var(--white);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-color);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.booking-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 18px;
  width: 25px;
}

.booking-form {
  background: var(--light-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
  color: var(--secondary-color);
}

.footer-description {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-links i {
  font-size: 12px;
}

.footer-contacts {
  list-style: none;
}

.footer-contacts li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #9ca3af;
}

.footer-contacts i {
  color: var(--secondary-color);
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}

.footer-subscribe {
  display: flex;
  margin-bottom: 30px;
}

.footer-subscribe input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
}

.footer-subscribe button {
  padding: 12px 20px;
  background: var(--gradient-2);
  border: none;
  border-radius: 0 10px 10px 0;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.footer-subscribe button:hover {
  opacity: 0.9;
}

.footer-certificates h5 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #9ca3af;
}

.certificates {
  display: flex;
  gap: 10px;
}

.certificates img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
}

.certificates img:hover {
  opacity: 1;
}

.footer-middle {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners h4 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  color: #9ca3af;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 40px;
  object-fit: contain;
  opacity: 0.5;
  transition: var(--transition);
}

.partners-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .tour-slide {
    grid-template-columns: 1fr;
  }

  .safety-content {
    grid-template-columns: 1fr;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-color);
    flex-direction: column;
    padding: 80px 30px;
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .categories-grid,
  .experiences-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .tour-badge {
    position: absolute;
    top: 20px;
    right: 74px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}
.tour-footer {
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.safety-image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.pricing-section {
  padding-top: 250px;
  padding-bottom: 50px;
}
}

/* AOS Animation Styles */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}
