/* ========== css/style.css ========== */

/* ----- VARIABLES & BASIC SETUP ----- */
/* Light Mode (default) - New Green Theme */
:root, [data-theme="light"] {
  --primary-color: #261FB3; /* New Primary Blue/Purple */
  --primary-hover-color: #161179; /* New Darker Blue/Purple */
  --accent-color: #FFA500; /* Vibrant Orange */
  --accent-hover-color: #e69500; /* Darker Orange */
  --text-color: #0C0950; /* New Very Dark Blue for text */
  --text-light: #5c5a72; /* Lighter, desaturated purple-gray */
  --heading-color: #161179; /* New Darker Blue for headings */
  --body-bg: #ffffff;
  --section-bg: #FBE4D6; /* New Light Beige/Peach for sections */
  --white-color: #ffffff;
  --card-bg: var(--white-color);
  --border-color: #e0e0e0;
  --header-bg: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  --header-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --popup-bg: var(--white-color);
  --input-bg: #fff;
  --input-border: #ddd;
  --input-text: #212529;
  --font-family: 'Lato', sans-serif;
  --heading-font-family: 'Playfair Display', serif;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --text-on-dark: #ffffff;
}

/* ----- SMOOTH SCROLLING ----- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode */
[data-theme="dark"] {
  --primary-color: #007bff; /* Brighter Blue for Dark Mode */
  --primary-hover-color: #0069d9;
  --accent-color: #FFA500;
  --accent-hover-color: #e69500;
  --text-color: #e8e6e3;
  --text-light: #adb5bd;
  --heading-color: #f8f9fa;
  --body-bg: #181a1b;
  --section-bg: #212529;
  --white-color: #121212;
  --card-bg: #25282a;
  --border-color: #343a40;
  --header-bg: rgba(24, 26, 27, 0.9);
  --header-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  --popup-bg: #2c2f31;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--heading-font-family);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--heading-color);
}

[data-theme="dark"] h2 {
  color: var(--text-on-dark);
}

section {
  padding: 60px 0;
}
.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-hover-color);
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.logo-area h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icon {
  display: none; /* Hidden on desktop */
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px; 
  margin-left: 15px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
}

.dark-mode-toggle .sun {
  display: none;
}

.dark-mode-toggle .moon {
  display: block;
}

[data-theme="dark"] .dark-mode-toggle .sun {
  display: block;
}

[data-theme="dark"] .dark-mode-toggle .moon {
  display: none;
}

@media (max-width: 768px) {
  .dark-mode-toggle {
    margin-left: auto;
    margin-right: 15px;
  }
}
/* ----- HERO SECTION ----- */
.hero {
  position: relative;
  height: 70vh; /* Further reduced for a more comfortable view */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 20px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the area without distortion */
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); /* Gradient overlay */
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  position: relative; /* Ensure content is above the overlay */
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 3.5rem;
  font-family: var(--heading-font-family);
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}

.hero-search-form {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
}

.search-input-group {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 20px;
}

.search-input-group i {
  font-size: 1.2rem;
  color: #888;
  margin-right: 10px;
}

.search-input-group input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #333;
}

.hero-search-form .btn {
  flex-shrink: 0;
}

.hero h2 {
  font-size: 3.5rem;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-banner {
  position: absolute;
  top: 15px;
  right: -5px; 
  background-color: var(--accent-color); 
  color: var(--text-color);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent #c99805 transparent transparent;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card .package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card-content {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows the content to fill the card */
}

.package-card h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;  
  color: var(--text-color);
}

.package-card .package-details {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 15px 10px;
}

.package-card .package-price {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 20px; 
}

.package-card .btn-book-now {
  margin-top: auto; /* Pushes the button to the bottom */
  padding: 10px 24px;
}

.view-more {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* ----- PACKAGE SEARCH BAR ----- */
.package-search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto 50px;
}

.package-search-container input {
  width: 100%;
  padding: 15px 20px 15px 50px; /* Add padding for the icon */
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--card-bg);
  color: var(--text-color);
}

.package-search-container input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.15);
}

.package-search-container i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

/* ----- PACKAGES PAGE STYLES ----- */
.packages-page {
  padding: 60px 0;
  background-color: var(--section-bg);
}

.package-list-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.package-card-detailed {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  /* Flip card setup */
  background-color: transparent;
  min-height: 450px;
  perspective: 1000px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.package-card-detailed:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--card-bg);
}

.flip-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.package-card-detailed img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-card-detailed .package-card-content {
  padding: 20px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.package-description {
  margin-bottom: 20px;
  color: var(--text-color);
}

.flip-card-back .package-description {
  color: var(--text-color); /* Ensure text is dark on light background */
}
[data-theme="dark"] .flip-card-back .package-description {
  color: var(--text-color); /* Use light text for dark mode */
}

.package-card-detailed .package-card-content h3 a {
  text-decoration: none;  
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.package-card-detailed .package-card-content h3 a:hover {
  color: var(--primary-color);
}

/* ----- SINGLE PACKAGE PAGE STYLES ----- */
.single-package-hero {
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center; 
  color: var(--white-color);
}

.single-package-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.single-package-hero .container {
  position: relative;
  z-index: 2;
}

.single-package-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: var(--text-on-dark);
}

.package-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
}

.package-page-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.package-main-content {
  flex: 3;
}

.package-sidebar {
  flex: 1;
  position: sticky;
  top: 100px; /* 80px header height + 20px margin */
}

.package-summary {
  display: flex;
  gap: 20px;
  background: var(--section-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.summary-item {
  font-size: 1.1rem;
  color: var(--text-color);
}

.itinerary-accordion {
  margin: 40px 0;
}

.itinerary-day {
  border-bottom: 1px solid var(--border-color);
}

.itinerary-day-title {
  display: block;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
}

.itinerary-day-content {
  padding-bottom: 20px;
}

.package-inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.inclusion-box, .exclusion-box {
  background: var(--section-bg);
  padding: 25px;
  border-radius: var(--border-radius);
}

.inclusion-box ul, .exclusion-box ul {
  list-style-position: inside;
}

.package-gallery {
  margin: 60px 0;
}

.package-gallery h2 {
  text-align: left;
  margin-bottom: 30px;
}

/* ----- HAPPY CLIENTS GALLERY SECTION ----- */
.happy-clients-section {
  background-color: var(--section-bg);
  padding: 60px 0;
}

.happy-clients-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--heading-color);
}

[data-theme="dark"] .happy-clients-section h2 {
  color: var(--heading-color);
}

.happy-clients-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

.client-slider-container {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-slider-track {
  display: flex;
  width: calc(280px * 14); /* 280px per item * 14 items (7 original + 7 duplicates) */
  animation: client-scroll 50s linear infinite;
}

.client-slider-track:hover {
  animation-play-state: paused;
}

.client-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 250px;
  height: 250px;
  margin: 0 15px;
  flex-shrink: 0;
}

.client-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes client-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-280px * 7)); } /* Scroll by the width of the original 7 items */
}

/* ----- REVIEWS SECTION ----- */
.reviews {
  padding: 60px 0;
  overflow: hidden;
}

.review-grid {
  position: relative;
  width: 100%;
  margin-top: 40px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  margin: 0 -20px; /* Counteract container padding for full bleed effect on mobile */
  scrollbar-width: none; /* For Firefox */
}

.review-grid::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.review-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  flex: 0 0 85%; /* Each card takes 85% of the viewport width on mobile */
  scroll-snap-align: center;
}

/* Desktop Grid Layout */
@media (min-width: 768px) {
  .review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow-x: visible;
    padding: 0;
    margin: 40px 0 0;
  }
  .review-card {
    flex: auto; /* Reset flex property for grid items */
  }
}

.star-rating {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-card blockquote p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.review-card cite {
  font-weight: 600;
  color: var(--text-color);
}

/* ----- WHY CHOOSE US SECTION ----- */
.why-choose-us {
  background-color: var(--card-bg); /* Use a light background for this section */
  color: #2A363B;
}

.why-choose-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.wcu-image-pane {
  position: relative;
  min-height: 450px; /* Set a fixed height */
}

.wcu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(1.05);
}
.wcu-image.active {
  opacity: 1;
  transform: scale(1);
}
.section-title-left {
  text-align: left;
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.section-subtitle-left {
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.wcu-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wcu-item-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.wcu-item {
  background-color: var(--section-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.wcu-item.active {
  background-color: var(--white-color);
  border-left-color: var(--primary-color);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.wcu-item-title {
  font-size: 1.3rem;
  color: var(--text-color);
  font-family: var(--heading-font-family);
  line-height: 1.2;
}

.wcu-item-body {
  font-size: 0.95rem;
  color: var(--text-light);
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease-out, margin-top 0.4s ease-out;
}

.wcu-item-body p {
  min-height: 0;
}

.wcu-item.active .wcu-item-body {
  grid-template-rows: 1fr;
  margin-top: 15px;
}

/* ----- LOGO SLIDER SECTION ----- */
.logo-slider {
  background-color: var(--section-bg);
  padding: 60px 0;
  overflow: hidden;
}

.logo-slider h2 {
  color: var(--heading-color);
  margin-bottom: 40px;
}

.slider-track-container {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
  display: flex;
  width: calc(200px * 14); /* 200px per slide * 14 slides (7 original + 7 duplicates) */
  animation: scroll 35s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slide {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.slide img {
  max-width: 150px;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ----- FAQ SECTION ----- */
.faq {
  background-color: var(--section-bg);
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: block;
  position: relative;
  padding: 20px 40px 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* Hides the default marker */
  color: var(--text-color);
}

.faq-question::-webkit-details-marker {
  display: none; /* Hides the default marker in Chrome/Safari */
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px 0;  
  color: var(--text-light);
}

/* ----- CONTACT INFO SECTION ----- */
.contact-info {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.contact-info h2 {
  color: var(--text-on-dark);
}

.contact-details {
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 1rem;
}

.contact-details a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* ----- GALLERY SECTION ----- */
.gallery {
  padding: 60px 0;
}

.gallery-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: none;
  border: 1px solid #ddd;
  color: var(--text-color);
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 250px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hide {
  transform: scale(0.8);
  opacity: 0;
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(120, 200, 65, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay .icon-zoom {
  color: var(--text-on-dark);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 300;
}
.overlay .icon-zoom::before {
  content: '+';
}

/* ----- LIGHTBOX ----- */
.lightbox-pro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-pro.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-pro-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-pro-image {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.lightbox-pro.show .lightbox-pro-image {
  transform: scale(1);
}

.lightbox-pro-close,
.lightbox-pro-prev,
.lightbox-pro-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  z-index: 4001;
}

.lightbox-pro-close:hover,
.lightbox-pro-prev:hover,
.lightbox-pro-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-pro-close {
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
}

.lightbox-pro-prev, .lightbox-pro-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.lightbox-pro-prev { left: -60px; }
.lightbox-pro-next { right: -60px; }

.lightbox-pro-caption {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

.caption-counter {
  color: #aaa;
  font-size: 0.8rem;
}

/* ----- POPUP FORM ----- */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--popup-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup.show .popup-content {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.popup-content h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--heading-color);
}

.popup-content .form-group {
  margin-bottom: 15px;
}

.popup-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  font-family: var(--font-family);
  background-color: var(--input-bg);
  color: var(--input-text);
}

.popup-content textarea {
  resize: vertical;
}

.popup-content .btn {
  width: 100%;
  margin-top: 10px;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message h3 {
  color: var(--heading-color);
}

.thank-you-message p {
  color: var(--text-color);
}

/* ----- FOOTER ----- */
.main-footer {
  background-color: #0C0950; /* New Very Dark Blue for Footer */
  color: #bdc3c7;
  padding: 60px 0 0;
  position: relative;
}

.footer-bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a363b' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.new-footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  position: relative;
  z-index: 2;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-quick-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-quick-links li a,
.footer-contact-list li {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer-quick-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px; 
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-contact-list i {
  margin-top: 4px;
  color: var(--primary-color);
}

.footer-newsletter {
  margin-top: 30px;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 0;
}

.footer-newsletter h4::after {
  display: none; /* Remove the underline from the main h4 style */
}

.footer-newsletter-form {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  overflow: hidden;
}

.footer-newsletter-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0 15px; 
  color: var(--white-color);
  outline: none;
}

.footer-newsletter-form button {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter-form button:hover {
  background-color: var(--primary-hover-color);
}

.footer-bottom {
  background: #080636; /* Slightly lighter than footer main for contrast */
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  text-align: right;
}

.footer-bottom a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 10px;
}

@media (max-width: 992px) {
  .new-footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}


/* ----- BLOG PAGE STYLES ----- */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  text-align: center; 
  color: #ffffff;
}

.page-header h2 {
  font-size: 3rem;
  color: var(--text-on-dark);
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.blog-page-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-posts {
  flex: 3; /* Takes up 3/4 of the space */
}

.blog-sidebar {
  flex: 1; /* Takes up 1/4 of the space */
  position: sticky;
  top: 100px; /* 80px header height + 20px margin */
}

.blog-post-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
  overflow: hidden;
}

.post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.post-content {
  padding: 30px;
}

.post-meta {
  font-size: 0.85rem;  
  color: var(--text-light);
  margin-bottom: 10px;
}

.post-content h3 {
  margin-bottom: 15px;
}

.post-content h3 a {
  text-decoration: none;
  color: var(--heading-color);
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.post-content h3 a:hover {
  color: var(--primary-hover-color);
}

.btn-read-more {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn-read-more:hover {
  color: var(--primary-color);
}

.sidebar-widget {
  background: var(--section-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
  color: var(--primary-hover-color);
}

.sidebar-widget input[type="search"] {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  background-color: var(--input-bg);
  color: var(--text-color);
}

/* ----- LATEST POSTS WIDGET ----- */
.latest-posts-widget {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
}

.latest-post-item:last-child {
  margin-bottom: 0;
}

.latest-post-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.latest-post-info {
  display: flex;
  flex-direction: column;
}

.latest-post-title {
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.latest-post-item:hover .latest-post-title {
  color: var(--primary-color);
}

.latest-post-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ----- TAGS WIDGET ----- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  background-color: var(--border-color);
  color: var(--text-light);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border-color: var(--primary-color);
}

[data-theme="dark"] .tag-cloud a {
  background-color: #343a40;
  color: var(--text-color);
}

/* ----- SINGLE PACKAGE PAGE STYLES ----- */
.single-package-hero {
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;
  color: var(--white-color);
}

.single-package-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.single-package-hero .container {
  position: relative;
  z-index: 2;
}

.single-package-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: var(--text-on-dark);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.package-subtitle {
  font-size: 1.2rem;
  font-weight: 300; 
  color: rgba(255, 255, 255, 0.9);
}

.package-page-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.package-main-content {
  flex: 3;
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
}

.package-sidebar {
  flex: 1;
  position: sticky;
  top: 100px; /* 80px header height + 20px margin */
}

.package-section {
  margin-bottom: 40px;
}

.package-section h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 20px; 
  color: #2A363B;
}

.package-summary {
  display: flex;
  gap: 20px;
  background: var(--section-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.summary-item {
  font-size: 1rem;
  color: var(--text-color);
}

.itinerary-accordion {
  border-top: 1px solid var(--border-color);
}

.itinerary-day {
  border-bottom: 1px solid var(--border-color);
}

.itinerary-day-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  color: #2A363B;
}

.itinerary-day-title::-webkit-details-marker {
  display: none; /* Hide marker in Webkit */
}

.itinerary-day-title::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.itinerary-day[open] > .itinerary-day-title::after {
  transform: rotate(45deg);
}

.itinerary-day-content {
  padding-bottom: 20px; 
  color: #555;
  line-height: 1.7;
}

.package-inclusions-exclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inclusion-box, .exclusion-box {
  padding: 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.inclusion-box h3, .exclusion-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.inclusion-box h3 { color: #27ae60; }
.exclusion-box h3 { color: #e74c3c; }

.inclusion-box ul, .exclusion-box ul {
  list-style-position: inside;
  padding-left: 5px;
  color: #555;
}

.booking-widget {
  background: var(--section-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.booking-widget h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px; 
  color: #2A363B;
}

.booking-widget p {
  text-align: center;
  font-size: 0.9rem; 
  color: #555;
  margin-bottom: 25px;
}

.booking-widget .form-group {
  margin-bottom: 15px;
}

.booking-widget label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: block; 
  color: #333;
}

.booking-widget input,
.booking-widget textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  background-color: var(--input-bg);
  color: #2A363B;
}

.booking-widget .btn {
  width: 100%;
  margin-top: 10px;
}

/* ----- PAGINATION ----- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
  gap: 8px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  color: #2A363B;
  transition: background-color 0.3s, color 0.3s;
}

.page-numbers:hover,
.page-numbers.current {
  background-color: var(--primary-color);
  color: #2A363B;
  border-color: var(--primary-color);
}

.no-results-message {
  background-color: var(--card-bg);
  padding: 40px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.no-results-message h3 {
  color: var(--heading-color);
}

/* ----- LOAD MORE BUTTON ----- */
.load-more-container {
  text-align: center;
  margin: 20px 0 40px;
}

#load-more-btn {
  display: none; /* Hidden by default, shown by JS if needed */
}
.blog-post-card.hidden {
  display: none;
}

/* ----- SINGLE POST STYLES ----- */
.single-post {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.single-post h1 {
  font-size: 2.8rem;
  margin-bottom: 15px; 
  line-height: 1.1;
  color: var(--heading-color);
}

.single-post .post-meta {
  margin-bottom: 25px;
}

.single-post .post-meta a {
  color: var(--primary-color);
  text-decoration: none;
}

.post-image-full {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 15px;
  text-align: left;
}

.post-body blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  background: #f0f0f0;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  font-size: 1.2rem;
}

/* ----- POST SHARING ----- */
.post-sharing {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 20px;
}

.share-title {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-color);
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--section-bg);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}

.share-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.share-copy-link {
  width: auto;
  height: 40px;
  padding: 0 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-family);
  gap: 8px;
}

.share-copy-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.share-copy-link.copied {
  background-color: #28a745; /* A success green color */
  color: var(--white-color);
}

/* ----- STATIC PAGE (PRIVACY POLICY, T&C) STYLES ----- */
.static-page-section {
  background-color: var(--section-bg);
  padding: 60px 0;
}

.static-page-content {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.static-page-content h2,
.static-page-content h3 {
  text-align: left; 
  color: #2A363B;
}

.static-page-content h2 {
  font-size: 2rem;
  margin-bottom: 20px; 
}

.static-page-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.static-page-content p,
.static-page-content li {
  color: var(--text-color);
  line-height: 1.7;
}

.static-page-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

/* ----- COMMENTS SECTION ----- */
.comments-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--border-color);
}

.comments-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: left;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comment-body {
  display: flex;
  gap: 20px;
}

.comment-author-avatar .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-author-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.comment-meta-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.comment-content p {
  margin-bottom: 10px;
}

.comment-reply-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.comment-respond {
  margin-top: 50px;
}

.comment-reply-title {
  font-size: 1.8rem;
  margin-bottom: 15px;  
}

.comment-notes {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;  
}

.comment-form .form-group {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.comment-form textarea,
.comment-form input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  font-family: var(--font-family);
  background-color: var(--input-bg); 
  color: #2A363B;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form .btn {
  padding: 12px 30px;
}

/* ----- ABOUT PAGE STYLES ----- */
.about-section {
  background-color: var(--card-bg);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-content h3 {
  font-size: 1rem;
  font-weight: 600;  
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px; 
  color: #555;
}

/* ----- CONTACT PAGE STYLES ----- */
.contact-page-section {
  padding: 60px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-details-wrapper h3,
.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 15px; 
  color: var(--heading-color);
}

.contact-details-wrapper p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-list svg {
  flex-shrink: 0;
  margin-top: 5px; 
  color: var(--accent-color);
}

.contact-info-list a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-info-list a:hover {
  color: var(--accent-color);
}

#contactPageForm .form-group {
  margin-bottom: 20px;
}

#contactPageForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px; 
  color: var(--text-color);
}

#contactPageForm input,
#contactPageForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--input-border);
  border-radius: 5px;
  font-family: var(--font-family);
  background-color: var(--input-bg); 
  color: #2A363B;
}

#contactPageForm .btn {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.map-section {
  padding: 0; /* Remove padding for full-width map */
  line-height: 0; /* Remove extra space below iframe */
}

/* ----- ANIMATE ON SCROLL ----- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ----- PRELOADER ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: var(--body-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-color);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-200px * 7)); } /* -200px per slide * 7 original slides */
}

@keyframes review-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-400px * 4)); } /* -400px per slide * 4 original slides */
}

/* ----- VIDEO TESTIMONIALS SECTION ----- */
.video-testimonials {
  padding: 60px 0;
  background-color: var(--section-bg);
}

.video-testimonials h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.video-testimonials .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.1);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.video-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 1);
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--text-on-dark);
  text-align: left;
}

.video-caption h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-family: var(--heading-font-family);
}

.video-caption p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px; /* Add space for the button */
}

.video-caption .btn-book-now {
  padding: 8px 20px;
  font-size: 0.9rem;
  background-color: var(--accent-color);
}
.video-caption .btn-book-now:hover {
  background-color: var(--accent-hover-color);
}

/* ----- VIDEO LIGHTBOX ----- */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.video-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* ----- BACK TO TOP BUTTON ----- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px; 
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ----- LIVE CHAT BUTTON ----- */
.live-chat-btn {
  position: fixed;
  bottom: 25px;
  left: 25px; /* Changed from right to left */
  width: 60px;
  height: 60px;
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none; /* Hide the WhatsApp button from all pages */
}

.live-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ----- STICKY MOBILE CTA ----- */
.sticky-cta-btn {
  display: none; /* Hidden on desktop by default */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998; /* Below back-to-top button but above other content */
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: var(--white-color);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--heading-font-family);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2.5s infinite;
  transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
  transform: translateX(-50%) scale(1.05);
  animation-play-state: paused;
}

.sticky-cta-btn svg {
  width: 20px;
  height: 20px;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px; /* Height of header */
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--section-bg);
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
  }

  .nav-links a {
    color: var(--text-color);
    font-size: 1.2rem; 
  }

  .nav-links.show {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-icon {
    display: block;
  }

  .sticky-cta-btn {
    display: flex; /* Show the button on mobile */
  }

  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-search-form {
    flex-direction: column;
    gap: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
  }

  .why-choose-us-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title-left {
    text-align: center;
  }

  h2 {
    font-size: 2rem;
  }

  .blog-page-container {
    flex-direction: column;
  }

  .page-header h2 {
    font-size: 2.2rem;
  }

  .single-post {
    padding: 20px;
  }

  .single-post h1 {
    font-size: 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .package-page-container {
    flex-direction: column;
  }

  .blog-sidebar, .package-sidebar {
    position: static; /* Disable sticky positioning on mobile */
  }

  .contact-page-grid {
    padding: 30px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-details-wrapper h3,
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
}

@media (max-width: 992px) {
  .package-page-container {
    flex-direction: column;
  }
  .package-sidebar {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .package-inclusions-exclusions {
    grid-template-columns: 1fr;
  }
}

/* ----- HOME BLOG SECTION ----- */
.home-blog-section {
  background-color: var(--section-bg);
  padding: 60px 0;
}

.home-blog-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--heading-color);
}

[data-theme="dark"] .home-blog-section h2 {
  color: var(--heading-color);
}

.home-blog-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

[data-theme="dark"] .home-blog-section .section-subtitle {
  color: var(--text-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.home-blog-section .view-more {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

.blog-slider-dots {
  display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 20px 20px; /* Add padding for scrollbar and to see cards at edges */
    margin: 0 -20px 20px; /* Counteract container padding */
    scrollbar-width: none; /* For Firefox */
  }

  .blog-grid::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
  }

  .blog-grid .blog-post-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
  }

  .blog-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s ease;
  }

  .blog-slider-dots .dot.active {
    background-color: var(--primary-color);
  }
}

/* ----- DESTINATIONS SECTION ----- */
.destinations-section {
  padding: 60px 0;
  background-color: var(--body-bg);
}

.destinations-section h2 {
  color: var(--text-color);
}

.destinations-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.9;
}
.destination-card .bg-image {
  position: absolute;
  top: 0;
  left: 0; 
  width: 100%;
  height: 100%;
  object-fit: cover; /* This causes the zoom effect */
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  color: var(--text-on-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
  transition: background 0.3s ease;
}

.destination-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.destination-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0 0 25px 0;
  text-align: center; 
  color: var(--white-color);
}

/* ========== NEW CAROUSEL STYLES ========== */

@layer reset, base, layout, addon;

@layer addon {
  .new-packages-section {
    --arrow-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23ffffff"><path d="M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z"/></svg>');
  }

  @supports (scroll-marker-group: after) and (inset-block-end: anchor(end)) {
    .section-wrapper {
      anchor-name: --carousel;
      --controls-margin-block: 64px; 
      --controls-margin-inline: 12px;
      --scroll-btn-gap: 12px;
      --scroll-btn-extra-offset: 0px;
      --scroll-btn-margin-inline: calc(var(--controls-margin-inline) + var(--scroll-btn-extra-offset));
      --scroll-btn-size: 40px;
    }

    @media (width >= 768px) {
      .section-wrapper {
        --controls-margin-block: 84px;
        --controls-margin-inline: 32px;
        --scroll-btn-gap: 78px;
        --scroll-btn-extra-offset: 53px;
      }
    }

    .cards {
      padding-block: 16px;
      scrollbar-arrow-color: after;
      scrollbar-width: none;
    }

    .cards::before,
    .cards::after {
      content: '';
      display: block;
      inline-size: 50cqi;
    }

    .cards::-webkit-scrollbar {
      display: none;
    }

    .cards::scroll-marker-group {
      display: grid;
      grid-auto-flow: column;
      block-size: fit-content;
      inline-size: 60cqi;
      background-color: rgba(0,0,0,0.1);
      justify-items: end;
      position-anchor: --carousel;
      position: absolute;
      inset-block-end: calc(anchor(end) + var(--controls-margin-block) + 16px);
      inset-inline-start: calc(anchor(start) + var(--controls-margin-inline));
      border-radius: 100px;
    }

    .cards::scroll-button(*) {
      block-size: var(--scroll-btn-size);
      border-radius: 100px;
      border-width: 0;
      cursor: pointer;
      display: inline grid;
      inline-size: var(--scroll-btn-size);
      inset-block-end: calc(anchor(end) + var(--controls-margin-block));
      line-height: 0;
      outline-color: var(--surface);
      outline-offset: 2px;
      place-items: center;
      position-anchor: --carousel;
      position: absolute;
      z-index: 10;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none; 
      background-color: var(--primary-color);
    }

    .cards::scroll-button(*):disabled {
      cursor: not-allowed; 
      background-color: color-mix(in srgb, var(--secondary) 80%, var(--surface) 20%);
    }

    .cards::scroll-button(inline-start) {
      content: var(--arrow-icon) / 'Scroll back';
      inset-inline-end: calc(anchor(end) + var(--scroll-btn-margin-inline) + var(--scroll-btn-size) + var(--scroll-btn-gap));
      transform: scaleX(-1);
    }

    .cards::scroll-button(inline-end) {
      content: var(--arrow-icon) / 'Scroll forward';
      inset-inline-end: calc(anchor(end) + var(--scroll-btn-margin-inline));
    }

    .btn-shape-deco {
      display: grid;
      position-anchor: --carousel;
      position: absolute;
      block-size: var(--scroll-btn-size);
      place-items: center;
      inline-size: calc(var(--scroll-btn-size) * 2 + var(--scroll-btn-gap));
      inset-block-end: calc(anchor(end) + var(--controls-margin-block)); 
      inset-inline-end: calc(anchor(end) + var(--scroll-btn-margin-inline));
      color: var(--surface);
      opacity: 0.8;
    }

    @media (width < 768px) {
      .btn-shape-deco {
        display: none;
      }
    }

    .card {
      container-type: scroll-state;
      scroll-snap-align: center;
      scroll-snap-stop: always;
    }

    .card::scroll-marker {
      content: '';
      aspect-ratio: 1;
      cursor: pointer;
      text-decoration: none;
      width: 8px;
      height: 8px;
      border-radius: 100px;
      background-color: var(--primary-color);
    }

    .card::scroll-marker:target-current {
      anchor-name: --current;
    }

    .img-2 {
      transform: unset;
      transition: transform var(--duration) ease-in;
      transition-delay: var(--img-translate-delay);
    }

    @container scroll-state(snapped: inline) {
      .img-2 {
        transform: translateX(55px) translateY(10px) rotate(8deg);
      }
    }

/* Form Message Styles */
.form-message {
  padding: 12px;
  margin: 15px 0;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Popup Form Improvements */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #333;
}

/* Button Loading State */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

    .marker-bar {
      contain: layout paint;
      will-change: inset-inline-start;
      inline-size: calc(6cqi + 8px);
      block-size: 8px;
      display: block;
      background-color: var(--primary-color);
      position-anchor: --current;
      position: absolute;
      inset-block-end: anchor(end);
      inset-inline-start: calc(anchor(start) - 6cqi);
      border-radius: 100px;
      pointer-events: none;
      transition: inset-inline-start var(--duration);
    }

    .scroll-start {
      scroll-initial-target: nearest;
    }
  }
}

@layer base {
  .new-packages-section {
    --headline: 600 2.812rem/3.25rem 'Poppins', sans-serif;
    --headline-small: 600 2rem / 2.5rem 'Poppins', sans-serif;
    --label: 600 1rem / 1.375rem 'Poppins', sans-serif;
    --title: 600 1.75rem/2.25rem 'Poppins', sans-serif;
    --title-small: 600 1.5rem/2rem 'Poppins', sans-serif;
    --caption: 400 0.8rem/1rem 'Poppins', sans-serif;
  }
}

@layer layout {
  .section.new-packages-section {
    --duration: 0;    
    --img-translate-delay: 0;
    background-color: var(--section-bg);
    color: var(--text-color);    
    font: var(--body);
  }

  @media (prefers-reduced-motion: no-preference) {
    .section.new-packages-section {
      --duration: 200ms;
      --img-translate-delay: 250ms;
    }
  }

  .section-wrapper {
    container-type: inline-size;
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    display: block;
    border-start-end-radius: 128px;
    overflow: clip;    
    padding-top: 32px;
    padding-bottom: 128px;
  }

  @media (width >= 768px) {
    .section-wrapper {
      padding-bottom: 160px;
    }
  }

  .header {
    padding-block: 32px;
    display: grid;
    place-items: center;
    padding-inline: 16px;
  }

  @media (width >= 768px) {
    .header {
      padding-block: 32px;
    }
  }

  .headline {
    text-align: center;    
    text-wrap: pretty;
    font: var(--headline-small);
    color: var(--text-on-dark);
  }

  @media (width >= 768px) {
    .headline {
      font: var(--headline);
    }
  }

  .cards {
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    place-items: start;
    padding-block: 32px;
    padding-inline: 48px;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  @media (prefers-reduced-motion: no-preference) {
    .cards {
      scroll-behavior: smooth;
    }
  }

  .card {
    --card-circle-bg: var(--primary-color);
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 1rem;
    overflow: clip;
  }

  .card-even {
    --card-circle-bg: var(--accent-color);
    background-color: var(--white-color);
    color: var(--secondary-color);
  }

  .article {
    container-type: size;
    display: grid;
    padding-inline: 32px;
    padding-block-start: 32px;
    gap: 16px;
    inline-size: min(90cqi, 348px);
    aspect-ratio: 3/4;
    grid-template-rows: 1fr 1fr;
  }

  .card-header { display: grid; gap: 12px; }
  .hgroup { display: grid; gap: 16px; }
  .category { font: var(--caption); text-transform: uppercase; letter-spacing: 2px; }
  .title { font: var(--title-small); }

  @media (width >= 768px) {
    .title { font: var(--title); }
  }

  .link {
    --_x: 0px;
    display: flex;
    inline-size: fit-content;
    block-size: 40px;
    background-color: var(--primary-color);
    align-items: center;
    gap: 8px;
    padding-inline-start: 16px;
    text-decoration: none;
    color: var(--white-color);
    font: var(--label); 
    border-radius: 100px;
    box-shadow: var(--box-shadow);
  }

  .link:hover { --_x: 3px; }

  .icon {
    background-color: var(--accent-color);
    block-size: 100%;
    display: grid;
    align-items: center;
    aspect-ratio: 1;
    padding: 0.5rem;
    border-radius: 100px;
  }

  .svg { translate: var(--_x) 0px; transition: translate var(--duration); }

  .visual {
    container-type: inline-size;
    block-size: 50cqb;
    display: grid;
    isolation: isolate;
    place-items: center;
    position: relative;
  }

  .visual::before {
    content: '';
    background-color: var(--card-circle-bg);
    display: block;
    inset-block-end: -70%;
    inset-inline: 0;
    position: absolute;
    z-index: -1;
    aspect-ratio: 1;
    inline-size: 100%;
    border-radius: 100%;
  }

  .img {
    background-color: var(--section-bg);
    block-size: auto;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    display: block;
    grid-area: 1/1;
    inline-size: 50cqi;
    margin-block-end: -50px;
    max-inline-size: 100%;
    object-fit: cover;
    height: 100%;
  }

  .img-2 {
    background-color: var(--card-bg);
    transform: translateX(55px) translateY(10px) rotate(8deg);
    z-index: -1;
  }

  .btn-shape-deco { display: none; }
}