:root {
  --primary-color: #5a9a3c;
  --secondary-color: #2d5a1e;
  --accent-color: #e89a3c;
  --dark-color: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --yellow-accent: #f4b942;

  --primary-dark: #2d5a1e;
  --primary-green: #446b36;
  --accent-teal: #2d5a1e;

  --primary-teal: #2c5a1e;
  --dark-teal: #083838;
  --text-gray: #666;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: var(--bs-accordion-btn-icon-transform);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

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

section {
  position: relative;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 168, 204, 0.4);
}

/* ==================== Hero Section ==================== */
.hero-section {
  position: relative;
  height: 700px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?w=1600")
      center/cover;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  max-width: 700px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 62px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
  background: var(--primary-color);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(90, 154, 60, 0.4);
  color: white;
}

/* ==================== Features Section ==================== */
.features-section {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle-tag {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.section-description {
  color: var(--text-light);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-bg);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.4s;
  height: 100%;
}

.feature-card:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ==================== About Section ==================== */
.about-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.about-content h2 {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.experience-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 30px 40px;
  border-radius: 10px;
  margin-top: 20px;
}

.experience-badge h3 {
  font-size: 48px;
  margin-bottom: 5px;
}

.experience-badge p {
  margin: 0;
  color: white;
  font-size: 16px;
}

/* ==================== Tours Section ==================== */
.tours-section {
  padding: 80px 0;
  background: white;
}

.tour-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-image img {
  transform: scale(1.15);
}

.tour-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tour-price .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.tour-price .per {
  font-size: 13px;
  color: var(--text-light);
}

.tour-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.tour-meta span i {
  color: var(--primary-color);
  margin-right: 6px;
}

.tour-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.tour-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.tour-title a:hover {
  color: var(--primary-color);
}

.tour-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

.rating-text {
  color: var(--text-light);
  font-size: 13px;
}

.btn-book-tour {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-top: auto;
  width: max-content;
}

.btn-book-tour:hover {
  background: var(--accent-color);
  transform: translateX(5px);
  color: white;
}

/* ==================== CTA Section ==================== */
.cta-section {
  padding: 120px 0;
  background:
    linear-gradient(rgba(45, 64, 89, 0.95), rgba(45, 64, 89, 0.95)),
    url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1600")
      center/cover fixed;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 25px;
  color: white;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: var(--primary-color);
  color: white;
  padding: 18px 45px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: transparent;
  border-color: white;
  color: white;
}

/* ==================== Testimonials Section ==================== */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.quote-icon {
  font-size: 48px;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 25px;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-info h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}

.author-info p {
  font-size: 13px;
  color: #fff;
  margin: 0;
}

/* ==================== Blog Section ==================== */
.blog-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.4s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-meta span i {
  margin-right: 6px;
  color: var(--primary-color);
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

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

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-read-more {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.btn-read-more:hover {
  gap: 12px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* About Us Section */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-badge i {
  font-size: 18px;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
}

.subtitle {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Testimonial Card */
.testimonial-card {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-green) 100%
  );
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='rgba(255,255,255,0.15)' viewBox='0 0 16 16'%3E%3Cpath d='M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z'/%3E%3C/svg%3E");
  position: absolute;
  right: 30px;
  bottom: 30px;
  opacity: 0.3;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.author-role {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Vision/Mission Cards */
.vision-mission-container {
  margin-bottom: 40px;
}

.vm-card {
  background: white;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.vm-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.vm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.vm-text {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Stats */
.stats-container {
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* More About Us Button */
.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(13, 61, 61, 0.3);
}

.more-btn:hover {
  background: var(--accent-teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 61, 61, 0.4);
}

.more-btn .arrow-circle {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

/* Decorative Elements */
.decorative-plane {
  position: absolute;
  bottom: 20px;
  right: 150px;
  width: 80px;
  height: auto;
  opacity: 0.8;
}

.decorative-path {
  position: absolute;
  bottom: 30px;
  right: 50px;
  width: 100px;
  height: auto;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .image-grid,
  .vision-mission-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .decorative-plane,
  .decorative-path {
    display: none;
  }
}

/* Team Section */
.team-section {
  position: relative;
}

.team-background {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      #335d2363 100%
    ),
    url(https://images.unsplash.com/photo-1478131143081-80f7f84ca84d?w=1600)
      no-repeat center top;
  background-size: cover;
  padding: 80px 0;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 5px;
}

.team-badge i {
  font-size: 16px;
}

.team-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.team-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.see-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 61, 61, 0.3);
}

.see-team-btn:hover {
  background: var(--accent-teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 61, 61, 0.4);
}

.arrow-circle-team {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 14px;
}

/* Guide Cards */
.guide-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.guide-image {
  position: relative;
  overflow: hidden;
  height: auto;
}

.guide-image img {
  width: 100%;
  padding: 1rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-image img {
  transform: scale(1.1);
}

.social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(13, 61, 61, 0.95) 0%,
    transparent 100%
  );
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.guide-card:hover .social-overlay {
  transform: translateY(0);
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

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

.guide-info {
  padding: 25px 20px;
  text-align: center;
}

.guide-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.guide-role {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  background: #f8f9fa;
  padding: 0;
}

.newsletter-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsletter-content {
  background: linear-gradient(135deg, #2d5a1e 0%, #446b36 100%);
  color: white;
  padding: 80px 60px;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.newsletter-inner {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
}

.newsletter-form {
  margin-bottom: 50px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 25px;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
}

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

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  box-shadow: none;
}

.subscribe-btn {
  background: white;
  color: var(--primary-dark);
  padding: 18px 35px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #f0f0f0;
  color: var(--primary-dark);
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
}

.contact-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}
.contact-text a {
  color: rgb(255 255 255);
  text-decoration: none;
}
.traveler-image {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 280px;
  z-index: 1;
}

.traveler-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .newsletter-content {
    padding: 60px 40px;
  }

  .traveler-image {
    display: none;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .team-title {
    font-size: 2.2rem;
  }

  .team-description {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .team-background {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .newsletter-content {
    padding: 40px 25px;
  }

  .newsletter-title {
    font-size: 1.75rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 25px;
  }

  .input-group {
    flex-direction: column;
  }

  .newsletter-input,
  .subscribe-btn {
    border-radius: 8px;
    width: 100%;
  }

  .subscribe-btn {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Packages
--------------------------------------------------------------*/
/* Page Header Section */
.page-header {
  position: relative;
  height: 400px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=600&fit=crop")
      center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-white);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .breadcrumb {
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    height: 250px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
    gap: 8px;
  }
}

/* Demo Content Section */
.demo-content {
  padding: 80px 0;
  background: #f8f9fa;
}

.demo-content h2 {
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.demo-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Tour Detail Section */
.tour-detail-section {
  padding: 80px 0;
  background: var(--white);
}

/* Main Image */
.tour-main-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.tour-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tour Title */
.tour-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Tour Description */
.tour-description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Section Heading */
.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  margin-top: 50px;
}

/* Photo Gallery */
.photo-gallery {
  margin-bottom: 40px;
}

/* Swiper Slider */
.gallery-swiper {
  margin-bottom: 40px;
  padding: 0 50px;
  position: relative;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
}

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

/* Swiper Navigation */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--primary-teal);
  transform: scale(1.1);
}

.gallery-swiper .swiper-button-next {
  right: 0;
}

.gallery-swiper .swiper-button-prev {
  left: 0;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination {
  bottom: -10px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--primary-dark);
  width: 30px;
  border-radius: 6px;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 8px;
}

.feature-checkbox {
  width: 20px;
  height: 20px;
  background: var(--primary-dark);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-checkbox i {
  color: white;
  font-size: 0.8rem;
}

.feature-item span {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
}

/* Included Card */
.included-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
}

.included-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.included-subtitle {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Info Item */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.1rem;
  color: var(--white);
}

.info-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

/* Book Button */
.book-tour-btn {
  width: 100%;
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 61, 61, 0.3);
  cursor: pointer;
}

.book-tour-btn:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 61, 61, 0.4);
}

.btn-arrow {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

/* Questions Card */
.questions-card {
  background:
    linear-gradient(
      135deg,
      rgba(30, 58, 58, 0.95) 0%,
      rgba(13, 61, 61, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop")
      center/cover;
  border-radius: 15px;
  padding: 35px;
  color: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.questions-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(44 90 30) 0%, rgb(68 107 54) 100%);
  z-index: 1;
}
.contact-info1 {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.questions-content {
  position: relative;
  z-index: 2;
}

.questions-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.questions-text {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.95;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-info a:hover {
  opacity: 0.8;
}

/* Story Card */
.story-card {
  background: var(--dark-bg);
  border-radius: 15px;
  padding: 35px;
  color: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.story-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.story-text {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 25px;
  line-height: 1.6;
}

.download-btn {
  width: 100%;
  background: var(--white);
  color: var(--primary-dark);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.download-arrow {
  width: 26px;
  height: 26px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* Follow Us Card */
.follow-card {
  background: var(--dark-bg);
  border-radius: 15px;
  padding: 35px;
  color: var(--white);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.follow-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 90%;
  width: 1200px;
}

.lightbox-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-counter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .tour-sidebar {
    position: static;
    margin-top: 50px;
  }

  .tour-main-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .gallery-swiper {
    padding: 0 40px;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .gallery-swiper .swiper-button-next:after,
  .gallery-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tour-detail-section {
    padding: 50px 0;
  }

  .tour-main-image {
    height: 350px;
  }

  .tour-main-title {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .gallery-swiper {
    padding: 0 20px;
  }

  .gallery-item {
    height: 250px;
  }

  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .gallery-swiper .swiper-button-next:after,
  .gallery-swiper .swiper-button-prev:after {
    font-size: 0.9rem;
  }

  .gallery-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}
/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

/* Decorative Elements */
.contact-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23f0f0f0" d="M40,100 Q60,80 80,100 T120,100 Q140,120 160,100"/></svg>')
    no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.contact-section::after {
  content: "🌴";
  position: absolute;
  bottom: 50px;
  right: 100px;
  font-size: 4rem;
  opacity: 0.15;
  transform: rotate(-15deg);
}

/* Information Box */
.info-box {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.info-description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 2px;
  border-bottom: 1px solid #e5e5e5;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}

.info-label {
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 90px;
  font-size: 0.95rem;
}

.info-value {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
}

.info-value a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: var(--primary-purple);
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 550px;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Section */
.form-section {
  background: white;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Form Styles */
.contact-form {
  background: white;
}

.form-group {
  margin-bottom: 25px;
}

.form-control,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 4px rgba(108, 43, 217, 0.1);
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
}

.form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.form-check-label {
  color: var(--text-gray);
  font-size: 0.95rem;
  cursor: pointer;
  margin: 0;
}

/* Submit Button */
.submit-btn {
  background: #2d5a1e;
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(108, 43, 217, 0.3);
}

.submit-btn:hover {
  background: #73a442;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 43, 217, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Success Message */
.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .info-box {
    margin-bottom: 40px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .info-box {
    padding: 30px 25px;
  }

  .info-title {
    font-size: 1.5rem;
  }

  .map-container {
    height: 250px;
  }

  .submit-btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--light-bg);
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-badge i {
  font-size: 1.2rem;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* CTA Card with Image */
.cta-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.cta-card-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.6) 100%
  );
  z-index: 1;
}

.cta-card-content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.cta-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-card-text {
  font-size: 1.05rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--primary-teal);
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  width: fit-content;
}

.cta-btn:hover {
  background: var(--primary-teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-arrow {
  width: 28px;
  height: 28px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.cta-btn:hover .btn-arrow {
  background: white;
  color: var(--primary-teal);
}

/* Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: white;
  border: none;
  margin-bottom: 10px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: white;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 30px;

  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-teal);
  color: white;
  box-shadow: none;
}

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

.accordion-button::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  background: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "\F286";
  transform: rotate(0deg);
}

.accordion-body {
  padding: 25px 30px 30px;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  background: white;
}

.accordion-collapse {
  border-top: 1px solid #f0f0f0;
}

/* First Accordion Item (Expanded) */
.accordion-item:first-child .accordion-button .collapsed {
  background: var(--primary-teal);
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .cta-card {
    margin-bottom: 40px;
    min-height: 400px;
  }

  .cta-card-title {
    font-size: 2rem;
  }

  .cta-card-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .cta-card {
    min-height: 350px;
  }

  .cta-card-title {
    font-size: 1.75rem;
  }

  .cta-card-content {
    padding: 30px 25px;
  }

  .accordion-button {
    font-size: 1.05rem;
    padding: 20px 25px;
  }

  .accordion-body {
    padding: 20px 25px 25px;
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* Hero Section */
.hero-section1 {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d5a1e 0%, #466d3c 100%);
  display: flex;
  align-items: center;
}

/* Image Container */
.image-container {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.image-card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-10px);
}

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

/* Content Section */
.content-section h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}

.content-section p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  padding-left: 40px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4caf50;
  font-weight: bold;
}

/* Learn More Button */
.btn-learn-more {
  padding: 14px 40px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-learn-more:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Decorative Wave */
.wave-decoration {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.wave-line {
  width: 3px;
  height: 80px;
  background: var(--primary-color);
  margin: 5px 0;
  border-radius: 3px;
  animation: wave 2s ease-in-out infinite;
}

.wave-line:nth-child(2) {
  animation-delay: 0.2s;
}

.wave-line:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

/* Features Bottom Section */
.features-section {
  padding: 80px 0;
  background: white;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #eeeeee;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .image-container {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .content-section h1 {
    font-size: 2.2rem;
  }

  .wave-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section1 {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* ==================== Footer ==================== */
footer {
  background: var(--dark-color);
  color: white;
  padding: 80px 0 0;
}

.footer-widget h5 {
  font-size: 20px;
  margin-bottom: 25px;
  color: white;
  font-weight: 700;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

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

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

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-right: 12px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

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

.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-menu {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-section,
  .about-section,
  .tours-section,
  .testimonials-section,
  .blog-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
