#mobileMenu {
  transition: all 0.3s ease;
}

/* =========================================
   HERO SECTION CUSTOM STYLES
   ========================================= */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
  z-index: 0;
}
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 480px;
  margin-left: auto;
}

.video-card:hover,
.video-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* The rest remains the same */
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-number {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 38px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.video-meta {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-play {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* =========================================
   TOP DESTINATIONS STYLING — UPDATED
   ========================================= */

/* Overlay with blur & left-aligned text */
.card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  color: #fff;
  /* backdrop-filter: blur(8px); */
  border-radius: 20px;
}

/* CTA button */
.card-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 6px 14px;
  transition: all 0.3s ease;
}
.card-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
/* Swiper buttons and pagination */
.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  width: 2rem !important;
  height: 2rem !important;
}
.swiper-button-prev {
  left: -5px !important;
}
.swiper-button-next {
  right: -5px !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
}
.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1;
}

/* Center pagination below cards */
/* .top-destinations {
  overflow: visible;
} */
.top-destinations .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 1.5rem;
}

.top-destinations .swiper-slide {
  transition: transform 0.3s ease;
  transform: scale(0.85);
  opacity: 0.6;
}

.top-destinations .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

/* =========================================
   CATEGORIES SECTION — THANAL
   ========================================= */

.category-tab {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--stone-200);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.category-tab:hover {
  background: rgba(255, 255, 255, 0.12);
}
.category-tab.active {
  background: var(--leaf-500);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Smooth fade animation for content change */
.category-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.category-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   TOP PROPERTIES STYLING — THANAL
   ========================================= */

.property-card {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.property-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--leaf-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 4px 10px;
}

.property-info {
  padding: 1rem 1.25rem 1.5rem;
}

.property-location,
.property-duration {
  font-size: 0.875rem;
  opacity: 0.85;
}

.property-price {
  font-weight: 600;
  font-size: 1rem;
}

/* =========================================
   UPDATED PROPERTY BUTTON STYLE
   ========================================= */
.property-btn {
  background: #28a65a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #28a65a;
  transition: all 0.3s ease;
}

.property-btn:hover {
  background: #fff;
  color: #28a65a;
  transform: translateY(-2px);
}

.property-btn:active {
  transform: scale(0.97);
}

/* =========================================
   TRAVELERS GALLERY — THANAL
   ========================================= */

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 85%
  );
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* Swiper customizations */
.traveler-gallery .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.6;
}
.traveler-gallery .swiper-pagination-bullet-active {
  background: var(--leaf-500) !important;
  opacity: 1;
}
.traveler-gallery .swiper-button-prev,
.traveler-gallery .swiper-button-next {
  color: #ffffff !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* =========================================
   CONTACT SECTION — FROSTED BLOB BACKGROUND
   ========================================= */

.decorative-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Main decorative blob - bottom right */
.decorative-bg::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(40, 166, 90, 0.4) 0%,
    rgba(40, 166, 90, 0.2) 40%,
    rgba(40, 166, 90, 0.08) 70%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(120px); /* Increased from 80px */
  z-index: 0;
  opacity: 0.5; /* Reduced from 0.8 */
}

/* Optional: Secondary blob - top left */
.decorative-bg::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(40, 166, 90, 0.3) 0%,
    rgba(40, 166, 90, 0.15) 50%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(100px); /* Increased from 60px */
  z-index: 0;
  opacity: 0.4; /* Reduced from 0.7 */
}

/* Keep content above the blobs */
.decorative-bg .container {
  position: relative;
  z-index: 1;
}
