/* About Section Styling */
.about-section {
  padding: 100px 0;
  background-color: var(--light);
  overflow: hidden;
}

.about-heading {
  color: var(--dark);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Decorative underline using the gradient */
.about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 70px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.about-subtitle {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.highlight-text {
  color: var(--primary);
  font-weight: 700;
}

/* Custom Button */
.btn-custom {
  background: var(--gradient);
  color: var(--light);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  margin-top: 15px;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: var(--light);
}

/* Image Styling */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Floating Badge Design */
.floating-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--gradient);
  color: var(--light);
  padding: 20px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  border: 6px solid var(--light);
  z-index: 2;
}

.floating-badge h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.floating-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* JavaScript Toggle Content */
.more-content {
  display: none;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .floating-badge {
    left: 20px;
    bottom: 20px;
  }
}
.featured-tours {
  background-color: #f8fafc; /* Soft background to contrast white cards */
}

/* Typography Reused */
.section-subtitle {
  background: var(--gradient);
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.section-title {
  color: var(--dark);
}
.text-theme-primary {
  color: var(--primary) !important;
}
.bg-theme-gradient {
  background: var(--gradient) !important;
  color: var(--light) !important;
  border: none;
}
.fs-7 {
  font-size: 0.85rem;
}

/* Header Button */
.view-all-btn {
  border: 2px solid var(--dark);
  transition: var(--transition);
}
.view-all-btn:hover {
  background-color: var(--dark);
  color: var(--light);
}

/* Home Tour Card Styles */
.home-tour-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.home-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1) !important;
}

/* Image Wrapping and Zooming */
.card-img-wrapper {
  height: 240px;
  overflow: hidden;
}

.card-img {
  height: 100%;
  transition: transform 0.6s ease;
}

.home-tour-card:hover .card-img {
  transform: scale(1.1);
}

/* Interactive Wishlist Button */
.wishlist-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.wishlist-btn:hover {
  background: var(--light);
  color: #ef4444; /* Heart red color */
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: #ef4444;
}

.wishlist-btn.active i {
  font-weight: 900; /* Solid heart in FontAwesome */
}

/* Card Body */
.location-text {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 1.3rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.attr-item {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
}

/* Circular Explore Button */
.explore-btn {
  width: 45px;
  height: 45px;
  padding: 0;
  color: var(--light);
  border: none;
  transition: var(--transition);
}

.explore-btn:hover {
  transform: scale(1.1) rotate(-45deg); /* Cool diagonal arrow effect on hover */
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4) !important;
  color: var(--light);
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Helper Classes */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.bg-theme-gradient {
  background: var(--gradient) !important;
  border: none;
}
.fs-7 {
  font-size: 0.85rem;
}

/* CTA Section Setup */
.cta-section {
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay combining your --dark variable with transparency */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.6) 100%
  );
  z-index: 0;
}

/* Primary Button */
.btn-theme-gradient {
  background: var(--gradient);
  color: var(--light);
  border: none;
  transition: var(--transition);
}

.btn-theme-gradient:hover {
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5) !important;
  transform: translateY(-3px);
  color: var(--light);
}

/* Outline Light Button */
.btn-outline-light {
  border: 2px solid var(--light);
  color: var(--light);
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Trust Bar (Glassmorphism Effect) */
.cta-trust-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.avatar-group .avatar-sm {
  width: 35px;
  height: 35px;
  margin-left: -12px;
  position: relative;
  transition: transform 0.2s ease;
}

.avatar-group .avatar-sm:first-child {
  margin-left: 0;
}

.avatar-group:hover .avatar-sm {
  transform: translateY(-3px);
}

.cta-trust-bar .divider {
  width: 2px;
  height: 24px;
}

/* Scroll Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
