/* ===== VARIABLES & GLOBAL ===== */
:root {
  --primary: #07c2c2;
  --secondary: #c25107;
  --dark: #0f172a;
  --light: #f8fbff;
  --text: #475569;
  --white: #ffffff;
  --font-main: "Poppins", sans-serif;
  --transition: all 0.3s ease;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #26aadf;
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-info a {
  color: var(--white);
  text-decoration: none;
  margin-right: 15px;
  transition: var(--transition);
}
.contact-info a:hover {
  color: var(--primary);
}
/* ===== GLASSMORPHISM HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}
.logo span {
  color: var(--primary);
}
/* NAVIGATION LIST */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
/* Waves of andaman */
.logofont {
  font-size: 17px;
}
.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}
.nav-link.active {
  color: rgb(0, 219, 164) !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
/* Contact Button inside Nav */
.btn-contact {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 30px;
}
.btn-contact::after {
  display: none;
}
.btn-contact:hover {
  background: #059b9b;
  transform: translateY(-2px);
}
/* HAMBURGER */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  transition: var(--transition);
  border-radius: 3px;
}

/* ===== LOGO INTEGRATION FIX ===== */

.logo {
  display: inline-flex; /* Keeps image and text perfectly inline side-by-side */
  align-items: center;
  gap: 12px; /* Spacing between the circle and your text */
  text-decoration: none;
}

/* Perfect circular frame that matches your 80px header height */
.logo-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden; /* Crops the square image into a perfect circle */
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevents the circle from shrinking on mobile */
}

/* Unzoomed, perfectly framed logo image positioning */
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%; /* Center fits the top circular artwork seamlessly */
}

/* ===== MOBILE DEVICE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .logo-container {
    width: 44px; /* Gently scales down on mobile screens */
    height: 44px;
  }
}

/* This creates the invisible line under every link */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0; /* Starts at 0 width (invisible) */
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* This expands the line to 100% width on hover OR when the .active class is present */
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%; /* Grows the line to full width */
}
/* ===== HERO SECTION Home Page Section ===== */
.hero-section {
  position: relative;
  height: calc(100vh - 80px); /* Height minus header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.7)
  );
  z-index: -1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 20;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 100%;
  color: #ffffff !important;
}

.gradient-text {
  display: inline-block;
  font-weight: 800;
  color: #00e5ff;
  animation: colorChange 3s linear infinite;
  will-change: color;
}

/* COLOR CHANGING */
@keyframes colorChange {
  0% {
    color: #00e5ff;
  }
  25% {
    color: #00ff88;
  }
  50% {
    color: #ff00b3;
  }
  75% {
    color: #acff4d;
  }
  100% {
    color: #00e5ff;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  position: relative;
  z-index: 9999;
}
.btn-primary:hover {
  background: #a34205;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(194, 81, 7, 0.3);
}

/* ==========================
   MOBILE HERO FIX
========================== */

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;

    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;

    width: 100%;
    margin-bottom: 40%;
    text-align: center;
    transform: translateY(-50px);
  }

  .hero-title {
    font-size: 2.4rem;

    width: auto;

    margin-left: 0;

    line-height: 1.1;
  }

  .gradient-text {
    display: block;

    margin-top: 5px;
  }

  .hero-subtitle {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
  }

  .btn-primary {
    padding: 14px 24px;

    font-size: 15px;
  }
}

/* =========================
   INTRO SECTION
========================= */

/* .intro-section{

    max-width:1400px;

    margin:auto;

    padding:100px 5%;

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:80px;

    align-items:center;
} */

/* =========================
   LEFT CONTENT
========================= */

/* .intro-text h2{

    font-size:clamp(2rem,5vw,4rem);

    font-weight:800;

    line-height:1.15;

    color:#0f172a;

    margin-bottom:30px;

    position:relative;
}

.intro-text h2::after{

    content:"";

    width:90px;

    height:5px;

    border-radius:50px;

    background:#00c4b4;

    position:absolute;

    left:0;

    bottom:-15px;
}

.intro-text p{

    font-size:clamp(15px,2vw,19px);

    line-height:1.9;

    color:#64748b;

    margin-bottom:20px;
} */

/* =========================
   GALLERY
========================= */

/* .intro-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;
} */

/* STAGGER EFFECT */

/* .gallery-card:nth-child(2){

    margin-top:40px;
}

.gallery-card:nth-child(3){

    margin-top:-40px;
} */

/* CARD */

/* .gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:280px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);

    transition:.4s ease;
} */

/* IMAGE */

/* .gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s ease;
} */

/* OVERLAY */

/* .gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
      to top,
      rgba(0,0,0,.35),
      transparent
    );

    opacity:0;

    transition:.4s ease;

    z-index:1;
} */

/* HOVER */

/* .gallery-card:hover{

    transform:translateY(-8px);
}

.gallery-card:hover img{

    transform:scale(1.08);
}

.gallery-card:hover::before{

    opacity:1;
} */

/* =========================
   TABLET
========================= */

/* @media (max-width:992px){

    .intro-section{

        grid-template-columns:1fr;

        gap:60px;
    }

    .intro-text{

        text-align:center;
    }

    .intro-text h2::after{

        left:50%;

        transform:translateX(-50%);
    }

    .intro-gallery{

        max-width:700px;

        margin:auto;
    }
} */

/* =========================
   MOBILE
========================= */

/* @media (max-width:768px){

    .intro-section{

        padding:70px 20px;
    }

    .intro-gallery{

        grid-template-columns:1fr;
    }

    .gallery-card{

        height:260px;
    }

    .gallery-card:nth-child(2),
    .gallery-card:nth-child(3){

        margin-top:0;
    }
} */

/* =========================
   SMALL MOBILE
========================= */

/* @media (max-width:480px){

    .intro-text h2{

        font-size:2rem;
    }

    .gallery-card{

        height:220px;

        border-radius:18px;
    }
} */

/* ===Scrollingbar=== */

.scrollingbar {
  width: 100%;

  height: 35px;

  background: #004b8b;

  color: #fff;

  overflow: hidden;

  display: flex;

  align-items: center;

  position: relative;

  z-index: 10;
}

.scrollingbar p {
  margin: 0;

  white-space: nowrap;

  font-size: 14px;

  font-weight: 500;

  padding-left: 100%;

  animation: scrollText 18s linear infinite;
}

/* ===== SCROLL ANIMATION ===== */

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Scrollingbar responsive */

@media (max-width: 768px) {
  .scrollingbar {
    height: 32px;
  }

  .scrollingbar p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .scrollingbar {
    height: 30px;
  }

  .scrollingbar p {
    font-size: 12px;
  }
}

/* ===== MOBILE RESPONSIVENESS ===== */
/* @media (max-width: 992px) {
  .intro-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
} */

@media (max-width: 768px) {
  .promo-text {
    display: none;
  }
  .contact-info {
    width: 100%;
    text-align: center;
  }
  .menu-toggle {
    display: flex;
  }
  /* OFF-CANVAS MOBILE MENU */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }
  .navbar.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .scrollingbar {
    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    z-index: 999;
  }
  .scrollingbar p {
    font-size: 15px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  /* Hamburger Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* FOOTER CODE  */
/* --- Footer Base Variables --- */
:root {
  --bg-footer: #111827; /* Modern dark slate */
  --text-muted: #9ca3af;
  --text-light: #f3f4f6;
  --accent-color: #3b82f6; /* Modern Blue */
  --accent-hover: #2563eb;
  --border-color: #374151;
}
/* --- Global Resets (if not already in your CSS) --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* --- Footer Container --- */
.modern-footer {
  background-color: var(--bg-footer);
  color: var(--text-light);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  padding: 60px 0 20px 0;
  font-size: 15px;
  width: 100%;
  clear: both;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* --- Top Section: Newsletter --- */
.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.newsletter-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.newsletter-text p {
  color: var(--text-muted);
}
.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 450px;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  outline: none;
  transition: border 0.3s ease;
}
.newsletter-form input:focus {
  border-color: var(--accent-color);
}
.newsletter-form button {
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
  background-color: var(--accent-hover);
}
/* --- Divider --- */
.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 50px;
}
/* --- Middle Section: CSS Grid --- */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* Brand gets 2x width */
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo span {
  color: var(--accent-color);
}
.brand-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px; /* Trendy subtle slide effect */
}
/* --- Social Icons --- */
.social-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.social-icons a svg {
  width: 20px;
  height: 20px;
}
.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px); /* Floating effect */
}
/* --- Bottom Section --- */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: white;
}
/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
  }
}
@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr; /* Stack into 1 column on phones */
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links a:hover {
    padding-left: 0; /* Remove slide effect on mobile for better touch experience */
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* updated css for navigation bar */
/* --- ENFORCE NO HORIZONTAL SCROLLING --- */
html,
body {
  overflow-x: hidden;
  width: 100%;
}
/* --- HEADER BASE --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
/* --- DESKTOP NAV LIST --- */
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.mobile-close,
.nav-overlay {
  display: none; /* Hidden on desktop */
}
/* --- MOBILE RESPONSIVENESS (The Fix) --- */
@media (max-width: 992px) {
  /* Hamburger visible */
  .menu-toggle {
    display: flex;
  }
  /* The Dark Overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* The Sliding Drawer */
  .nav-list {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden completely off screen */
    width: 300px;
    max-width: 85vw; /* Prevents overflow on tiny screens */
    height: 100vh;
    background: var(--white, #ffffff);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto; /* Allows scrolling if menu is too long */
  }
  .nav-list.active {
    right: 0; /* Slides in smoothly */
  }
  /* Close Button inside Mobile Menu */
  .mobile-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: var(--dark, #333);
    cursor: pointer;
    line-height: 1;
  }
}
/*  */
/* =========================================
   SECTION BASE & HEADER
========================================= */
.glass-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  /* Dark background looks best with Glassmorphism */
  background-color: #0f172a;
  border-radius: 24px;
}
.glass-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: white;
}
.glass-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  /* Trendy gradient text */
  background: linear-gradient(90deg, #07c2c2, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-header p {
  color: #94a3b8;
  line-height: 1.6;
}
/* =========================================
   GRID LAYOUT
========================================= */
.glass-grid {
  display: grid;
  gap: 30px;
  /* Auto-fit creates columns based on screen size automatically */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* =========================================
   3D CARD STYLING
========================================= */
.tilt-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Pushes glass content to the bottom */
  text-decoration: none;
  /* Required for the 3D effect to look real */
  transform-style: preserve-3d;
  /* Initial transition for smooth snapping back to place */
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* Background Image */
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Slight zoom out so it has room to move during 3D tilt */
  transform: scale(1.1);
}
/* =========================================
   GLASSMORPHISM CONTENT BOX
========================================= */
.glass-content {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto 20px auto; /* Centers it with space at bottom */
  padding: 20px;
  /* THE MAGIC GLASS EFFECT */
  background: rgba(255, 255, 255, 0.1); /* Highly transparent white */
  backdrop-filter: blur(12px); /* Creates the frosted glass blur */
  -webkit-backdrop-filter: blur(12px); /* For Safari support */
  /* Light borders to simulate glass edges */
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  color: white;
  /* This pushes the glass box OUT off the card in 3D space */
  transform: translateZ(40px);
  transition: transform 0.3s ease;
}
.glass-content .tag {
  background: #07c2c2;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.glass-content h3 {
  font-size: 1.4rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Helps readability */
}
/* Highlight glass on hover */
.tilt-card:hover .glass-content {
  background: rgba(255, 255, 255, 0.15);
  /* Pushes it even further out when hovered */
  transform: translateZ(60px);
}
/* ========================= */
/* PACKAGES MEGA MENU */
/* ========================= */
.has-mega-menu {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 172%;
  left: 3px;
  transform: translateX(-50%);
  width: min(1100px, 95vw);
  background: #fff;
  border-radius: 12px;
  padding: 33px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 160%;
}
/* Columns */
.menu-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}
.menu-column a {
  display: block;
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  padding: 4px 0;
  transition: 0.3s;
}
.menu-column a:hover {
  color: #0ea5e9;
  padding-left: 6px;
}
/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {
  .mega-menu {
    grid-template-columns: repeat(2, 1fr);
    width: 90vw;
    padding: 15px;
  }
}
/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    box-shadow: none;
    border-radius: 0;
  }
  .menu-column {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .menu-column h3 {
    font-size: 15px;
  }
  .menu-column a {
    font-size: 13px;
  }
  .has-mega-menu.active .mega-menu {
    display: grid;
  }
}
.menu-column a:hover {
  color: #00b4db;
  padding-left: 8px;
}
.menu-column {
  min-width: 0;
}

/* =========================================
   MOBILE RESPONSIVENESS (NATIVE SWIPE)
========================================= */
@media (max-width: 768px) {
  .horizontal-scroll-section {
    height: auto;
    padding: 60px 0;
  }

  .sticky-wrapper {
    position: static;
    height: auto;
  }

  .track-mask {
    overflow: visible; /* Let native touch scrolling take over */
  }

  .horizontal-track {
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    width: 100%; /* Resets width for mobile */
  }

  .horizontal-track::-webkit-scrollbar {
    display: none;
  }

  .activity-card {
    width: 280px;
    height: 380px;
    scroll-snap-align: center;
  }
}

/* =========================================
   CERTIFICATION SECTION BASE
========================================= */
.certification-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.cert-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cert-header {
  text-align: center;
  margin-bottom: 50px;
}

.cert-header h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}

.cert-header p {
  color: #64748b;
  font-size: 1rem;
}

/* =========================================
   THE GRID
========================================= */
.cert-grid {
  display: grid;
  gap: 30px;
  /* Auto-fit creates automatic responsiveness without media queries */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* =========================================
   CERTIFICATION CARDS
========================================= */
.cert-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.cert-logo-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.cert-logo-wrapper img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;

  /* The Professional Magic: Makes logos gray and slightly faded initially */
  filter: grayscale(100%) opacity(0.6);
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.cert-card h5 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}

.cert-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* =========================================
   HOVER EFFECTS
========================================= */
.cert-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* When the card is hovered, the logo turns full color and scales up slightly */
.cert-card:hover .cert-logo-wrapper img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* =========================================
   MOBILE ADJUSTMENTS
========================================= */
@media (max-width: 768px) {
  .certification-section {
    padding: 60px 20px;
  }

  .cert-header h2 {
    font-size: 1.8rem;
  }

  .cert-card {
    padding: 30px 15px;
  }
}

/*  */

/* =========================================
   MARQUEE SECTION BASE
========================================= */
.testimonial-marquee-section {
  padding: 80px 0;
  background-color: #0f172a; /* Deep slate dark theme */
  color: #ffffff;
  overflow: hidden; /* Prevents horizontal scrollbars */
  font-family: "Poppins", sans-serif;
}

.testi-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.testi-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #07c2c2, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testi-header p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* =========================================
   THE SCROLLING TRACK
========================================= */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  gap: 30px; /* Space between the two groups */

  /* PREMIUM TOUCH: Creates a transparent fade effect on the left and right edges */
  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
  );
}

.marquee-group {
  display: flex;
  gap: 30px; /* Space between individual cards */
  flex-shrink: 0;
  align-items: stretch;

  /* THE ANIMATION: 35s speed, moving linearly, looping infinitely */
  /* Lower the 35s to make it faster, increase to make it slower */
  animation: scroll-x 35s linear infinite;
}

/* THE HOVER PAUSE: Stops the animation when the user hovers over ANY card in the wrapper */
.marquee-wrapper:hover .marquee-group {
  animation-play-state: paused;
}

/* =========================================
   INDIVIDUAL REVIEW CARDS
========================================= */
.testi-card {
  width: 380px; /* Fixed width is crucial for marquee cards so they don't squish */
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.testi-card:hover {
  border-color: rgba(7, 194, 194, 0.5);
  transform: translateY(-5px);
}

.testi-card .stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testi-card .review-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

/* PROFILE STYLING */
.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.reviewer-details h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.reviewer-details span {
  font-size: 0.85rem;
  color: #94a3b8;
  display: block;
}

/* =========================================
   THE INFINITE SCROLL KEYFRAMES
========================================= */
@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Moves left by 100% of the group's width, plus the 30px gap we set between groups */
    transform: translateX(calc(-100% - 30px));
  }
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  .testi-header h2 {
    font-size: 2rem;
  }

  .testi-card {
    width: 300px; /* Slightly smaller cards for mobile */
    padding: 25px 20px;
  }

  /* Make the animation slightly faster on mobile since the screen is smaller */
  .marquee-group {
    animation-duration: 25s;
  }
}

/* =========================================
   THE SMOOTH SLIDE ANIMATION (GRID TRICK)
========================================= */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr; /* Collapsed state */
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr; /* Expanded state */
}

.faq-answer {
  overflow: hidden; /* Required for the grid trick to work */
}

.faq-answer p {
  padding: 0 25px 24px 25px; /* Adds padding only when open */
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }
}

/*  */

/* =========================================
   ABOUT SECTION (PREMIUM LIGHT MODE)
========================================= */
.about-section {
  padding: 100px 20px;
  background-color: #ffffff; /* Clean white background */
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split on desktop */
  gap: 80px;
  align-items: center;
}

/* --- LEFT SIDE: Content --- */
.about-subtitle {
  color: #07c2c2; /* Brand Teal */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

.about-desc {
  color: #475569; /* Soft Slate Gray for easy reading */
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* --- LEFT SIDE: Features List --- */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: rgba(7, 194, 194, 0.1); /* Soft tinted background */
  color: #07c2c2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- RIGHT SIDE: Video Card --- */
.about-video-wrapper {
  position: relative;
}

.video-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 25px;
  text-align: center;
}

.video-card {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transform: translateZ(0); /* Hardware acceleration for smooth hover */
}

/* Dark overlay to make the play button pop */
.about-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.2);
  z-index: 1;
  transition: background 0.3s ease;
}

.video-thumbnail {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover effects */
.video-card:hover .video-thumbnail {
  transform: scale(1.05); /* Slight zoom on image */
}
.video-card:hover .about-video-overlay {
  background: rgba(15, 23, 42, 0.4);
}

/* --- Pulsing Play Button --- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  /* The Pulse Animation */
  animation: pulse-white 2s infinite;
}

/* The actual triangle inside the button */
.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #07c2c2; /* Brand Teal */
  margin-left: 6px; /* Optically centers the triangle */
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Keyframes for the radar pulse effect */
@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr; /* Stacks the columns */
    gap: 50px;
  }

  .about-title {
    font-size: 2.3rem;
  }

  .video-title {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 20px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #07c2c2;
  }
}

/*  */

/* =========================================
   OUR STORY SECTION (LIGHT MODE EDITORIAL)
========================================= */
.our-story-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Crisp white background */
  font-family: "Poppins", sans-serif;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================================
   HERO IMAGE
========================================= */
.story-image-wrapper {
  width: 100%;
  height: 450px; /* Gives the image a premium, cinematic height */
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft drop shadow */
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fixes your old stretched image bug perfectly */
  object-position: center 20%; /* Keeps faces/important details in frame */
}

/* =========================================
   STORY HEADINGS
========================================= */
.story-content {
  max-width: 800px; /* Constrains text width for easy reading */
  margin: 0 auto;
}

.story-header {
  text-align: center;
  margin-bottom: 50px;
}

.story-subtitle {
  display: block;
  color: #07c2c2; /* Brand Teal */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.story-header h2 {
  font-size: 2.8rem;
  color: #0f172a; /* Deep slate */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.story-header h3 {
  font-size: 1.3rem;
  color: #64748b;
  font-weight: 400;
}

/* =========================================
   STORY TYPOGRAPHY & PARAGRAPHS
========================================= */
.story-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #475569; /* Soft gray for minimal eye strain */
  margin-bottom: 25px;
  text-align: justify; /* Gives it a neat, magazine-style edge */
}

/* The first paragraph is slightly larger to hook the reader */
.story-text .lead-paragraph {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 35px;
  text-align: left;
}

.story-text strong {
  color: #0f172a;
  font-weight: 600;
}

/* =========================================
   CALL TO ACTION BOX
========================================= */
.story-cta {
  margin-top: 50px;
  padding: 35px;
  background-color: #f8fafc; /* Very subtle gray box */
  border-left: 4px solid #07c2c2; /* Teal accent line */
  border-radius: 0 16px 16px 0;
}

.story-cta p {
  margin: 0;
  font-size: 1.15rem;
  color: #0f172a;
  text-align: left;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
  .our-story-section {
    padding: 60px 20px;
  }

  .story-image-wrapper {
    height: 280px; /* Shorter image for mobile screens */
    margin-bottom: 40px;
    border-radius: 16px;
  }

  .story-header h2 {
    font-size: 2.2rem;
  }

  .story-header h3 {
    font-size: 1.1rem;
  }

  .story-text .lead-paragraph {
    font-size: 1.15rem;
  }

  .story-text p {
    font-size: 1rem;
    text-align: left; /* Left align is safer on mobile than justify */
  }

  .story-cta {
    padding: 25px;
  }
}

/* =========================================
   CONTACT SECTION BASE (LIGHT MODE)
========================================= */
.contact-section {
  padding: 100px 20px;
  background-color: #f1f5f9; /* Very soft slate background */
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.contact-header {
  margin-bottom: 35px;
}

.contact-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.contact-header p {
  color: #64748b;
  font-size: 1.05rem;
}

/* =========================================
   LEFT SIDE: FORM
========================================= */
.contact-form-side {
  flex: 1;
}

.modern-form .form-group {
  margin-bottom: 20px;
}

/* Glassmorphism Inputs */
.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(241, 245, 249, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  background: #ffffff;
  border-color: #07c2c2;
  box-shadow: 0 0 0 4px rgba(7, 194, 194, 0.1);
}

.textarea-control {
  resize: vertical;
  min-height: 120px;
}

/* Phone Group with Select */
.phone-group {
  display: flex;
  gap: 15px;
}

.country-select-wrapper {
  flex: 0 0 110px;
}

.country-select {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  background: rgba(241, 245, 249, 0.7);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e293b;
  outline: none;
  cursor: pointer;
}

/* Premium Liquid Submit Button */
.btn-liquid {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 30px;
  background: #07c2c2; /* Brand Teal */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s;
}

.btn-liquid span {
  position: relative;
  z-index: 2;
}

/* The hover liquid morph effect */
.btn-liquid::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #059b9b;
  border-radius: 50% 50% 0 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-liquid:hover::before {
  top: 0;
  border-radius: 0;
}

/* =========================================
   MIDDLE: DIVIDER
========================================= */
.contact-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.divider-line {
  flex: 1;
  width: 1px;
  background-color: #e2e8f0;
}

.divider-text {
  padding: 20px 0;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.9rem;
}

/* =========================================
   RIGHT SIDE: DIRECT CONTACT CARDS
========================================= */
.contact-direct-side {
  flex: 1;
}

.direct-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.direct-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.direct-card:hover {
  transform: translateY(-5px);
  border-color: #07c2c2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(7, 194, 194, 0.1);
  color: #07c2c2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.direct-card:hover .card-icon {
  background: #07c2c2;
  color: #ffffff;
}

.card-text h4 {
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.card-text span {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  display: block;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    padding: 40px 30px;
  }

  /* Change vertical divider to horizontal */
  .contact-divider {
    flex-direction: row;
    padding: 30px 0;
  }

  .divider-line {
    height: 1px;
    width: auto;
  }

  .divider-text {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 30px 20px;
  }

  .phone-group {
    flex-direction: column;
  }

  .country-select-wrapper {
    flex: none;
    height: 50px;
  }
}

/* ==========================
   PACKAGE HERO
========================== */

.package-hero {
  position: relative;

  min-height: 60vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 120px 20px;

  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../../image/andamanbackimg.jpg");

  background-size: cover;

  background-position: center;

  background-attachment: fixed;
}

/* SMALL TAG */

.package-hero::before {
  content: "💑 Honeymoon Special";

  position: absolute;

  top: 73px;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  color: white;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;
}

/* HEADING */

.package-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);

  font-weight: 800;

  color: white;

  line-height: 1.2;

  max-width: 1000px;

  margin-bottom: 25px;

  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* DESCRIPTION */

.package-hero p {
  max-width: 850px;

  font-size: clamp(15px, 2vw, 20px);

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.92);

  margin: auto;
}

/* SCROLL INDICATOR */

.package-hero .scroll-down {
  position: absolute;

  bottom: 30px;

  color: white;

  font-size: 14px;

  opacity: 0.8;

  animation: float 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .package-hero {
    min-height: 55vh;

    padding: 100px 30px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .package-hero {
    min-height: 50vh;

    padding: 90px 20px;
  }

  .package-hero::before {
    font-size: 12px;

    top: 35px;
  }

  .package-hero h1 {
    font-size: 2rem;
  }

  .package-hero p {
    font-size: 15px;

    line-height: 1.8;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .package-hero {
    padding: 80px 15px;
  }

  .package-hero h1 {
    font-size: 1.7rem;
  }

  .package-hero p {
    font-size: 14px;
  }
}
/* =========================
   COMMON SECTIONS
========================= */

.package-about,
.duration-section,
.package-highlights,
.package-includes,
.package-excludes,
.package-cta {
  max-width: 1200px;

  margin: auto;

  padding: 80px 5%;
}

/* ==========================
   PACKAGE ABOUT
========================== */

.package-about {
  max-width: 1400px;

  margin: auto;

  padding: 100px 5%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* ==========================
   LEFT GALLERY
========================== */

.about-gallery {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.about-img {
  overflow: hidden;

  border-radius: 25px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-img.large {
  grid-row: span 2;

  height: 520px;
}

.about-img.small {
  height: 250px;
}

.about-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.08);
}

/* ==========================
   RIGHT CONTENT
========================== */

.about-tag {
  display: inline-block;

  background: #e0f7ff;

  color: #0284c7;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 25px;

  line-height: 1.2;
}

.about-content p {
  font-size: 17px;

  line-height: 1.9;

  color: #64748b;

  margin-bottom: 20px;
}

/* FEATURES */

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 35px;
}

.feature {
  background: #f8fafc;

  padding: 15px;

  border-radius: 14px;

  font-weight: 600;

  color: #334155;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .package-about {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-gallery {
    order: 1;
  }

  .about-content {
    order: 2;

    text-align: center;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-img.large,
  .about-img.small {
    height: 260px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* =========================
   DURATION CARDS
========================= */

.duration-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.duration-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.duration-card:hover {
  transform: translateY(-8px);
}

.duration-card h3 {
  color: #0f172a;

  margin-bottom: 15px;
}

.duration-card p {
  color: #0ea5e9;

  font-weight: 700;
}

/* =========================
   HIGHLIGHTS / INCLUDES
========================= */

.package-highlights ul,
.package-includes ul,
.package-excludes ul {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 15px;

  list-style: none;

  padding: 0;
}

.package-highlights li,
.package-includes li,
.package-excludes li {
  background: #f8fafc;

  padding: 18px;

  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* =========================
   CTA
========================= */

.package-cta {
  text-align: center;

  background: #f8fafc;

  border-radius: 25px;

  margin-bottom: 80px;
}

.package-cta p {
  max-width: 700px;

  margin: 20px auto;

  color: #64748b;
}

.book-btn {
  display: inline-block;

  margin-top: 20px;

  padding: 15px 30px;

  background: #0ea5e9;

  color: #fff;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.book-btn:hover {
  background: #0284c7;

  transform: translateY(-3px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .package-hero {
    padding: 90px 20px 60px;
  }

  .package-about,
  .duration-section,
  .package-highlights,
  .package-includes,
  .package-excludes,
  .package-cta {
    padding: 60px 20px;
  }
}

/* Cards */

.duration-section {
  padding: 80px 5%;
}

.duration-section h2 {
  text-align: center;

  margin-bottom: 40px;

  font-size: 42px;
}

.package-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.package-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: 0.3s;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  margin-bottom: 10px;
}

.price {
  color: #00a6ff;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 20px;
}

.package-content ul {
  padding-left: 20px;
}

.package-content li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .duration-section h2 {
    font-size: 28px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }
}

/* Package Highlights */

.package-highlights {
  padding: 80px 5%;
}

.package-highlights h2 {
  text-align: center;

  font-size: 42px;

  margin-bottom: 50px;

  color: #0f172a;
}

.highlight-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.highlight-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-card span {
  font-size: 42px;

  display: block;

  margin-bottom: 15px;
}

.highlight-card h3 {
  font-size: 18px;

  color: #334155;

  line-height: 1.5;
}

@media (max-width: 768px) {
  .package-highlights h2 {
    font-size: 30px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PACKAGE INCLUDES
========================== */

.package-includes {
  padding: 15px 5%;
}

.package-includes h2 {
  text-align: center;

  font-size: 42px;

  margin-bottom: 50px;

  color: #0f172a;
}

.includes-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.include-card {
  background: #ffffff;

  border-radius: 20px;

  padding: 30px 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  border-top: 4px solid #22c55e;

  transition: 0.3s ease;
}

.include-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.include-card span {
  font-size: 42px;

  display: block;

  margin-bottom: 15px;
}

.include-card h3 {
  font-size: 18px;

  color: #334155;

  line-height: 1.5;
}

/* MOBILE */

@media (max-width: 768px) {
  .package-includes h2 {
    font-size: 30px;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PACKAGE EXCLUDES
========================== */

.package-excludes {
  padding: 80px 5%;
}

.package-excludes h2 {
  text-align: center;

  font-size: 42px;

  margin-bottom: 15px;

  color: #0f172a;
}

.excludes-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;

  margin-top: 40px;
}

.exclude-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  border-top: 4px solid #ef4444;

  transition: 0.3s ease;
}

.exclude-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.exclude-card span {
  font-size: 42px;

  display: block;

  margin-bottom: 15px;
}

.exclude-card h3 {
  font-size: 18px;

  color: #334155;

  line-height: 1.5;
}

/* MOBILE */

@media (max-width: 768px) {
  .package-excludes h2 {
    font-size: 30px;
  }

  .excludes-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   LUXURY CTA SECTION
==================================== */

.lux-cta-wrapper {
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 1200px; /* Constrains width on ultra-wide monitors */
  width: 100%;
  box-sizing: border-box;
}

.lux-cta-card {
  text-align: center;
  padding: 80px 40px;
  border-radius: 32px;
  /* Premium midnight blue gradient */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
  position: relative;
  overflow: hidden;
  /* Subtle glass-like border */
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Elegant gold accent line across the top of the card */
.lux-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #fde08b, #d4af37);
}

/* ====================================
   TYPOGRAPHY & TAGS
==================================== */

.lux-cta-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15); /* Tinted gold background */
  color: #fde08b; /* Bright gold text */
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lux-cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lux-cta-text {
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-size: 1.15rem;
  color: #cbd5e1; /* Soft slate gray for easy reading */
}

/* ====================================
   PREMIUM BUTTONS
==================================== */

.lux-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lux-btn-primary,
.lux-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Button: Luxury Gold */
.lux-btn-primary {
  background: linear-gradient(135deg, #d4af37, #b5952f);
  color: #0f172a; /* Dark text for high contrast */
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
  border: none;
}

.lux-btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    #fde08b,
    #d4af37
  ); /* Brighter gold on hover */
  box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.6);
}

/* Secondary Button: WhatsApp */
.lux-btn-secondary {
  background: rgba(255, 255, 255, 0.05); /* Slightly visible background */
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.5);
  backdrop-filter: blur(10px);
}

.lux-btn-secondary:hover {
  transform: translateY(-4px);
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
}

.lux-btn-primary:active,
.lux-btn-secondary:active {
  transform: translateY(1px); /* Press-down effect */
}

/* ====================================
   MOBILE RESPONSIVENESS
==================================== */

@media (max-width: 768px) {
  .lux-cta-wrapper {
    padding: 20px 15px;
  }

  .lux-cta-card {
    padding: 50px 25px;
    border-radius: 24px;
  }

  .lux-cta-title {
    font-size: 2rem;
  }

  .lux-cta-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .lux-cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .lux-btn-primary,
  .lux-btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }
}
/* ==========================
   GALLERY SECTION
========================== */

.gallery-section {
  padding: 0 5%;

  background: #f8fafc;
}

.gallery-title {
  text-align: center;

  margin-bottom: 70px;
}

.gallery-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.gallery-title p {
  max-width: 700px;

  margin: auto;

  color: #64748b;

  line-height: 1.8;
}

/* CATEGORY */

.gallery-category {
  margin-bottom: 80px;
}

.gallery-category h3 {
  font-size: 32px;

  margin-bottom: 30px;

  color: #0f172a;

  border-left: 6px solid #06b6d4;

  padding-left: 15px;
}

/* GRID */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

/* CARD */

.gallery-card {
  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.gallery-card img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  transition: 0.6s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* TABLET */

@media (max-width: 992px) {
  .gallery-category h3 {
    font-size: 28px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .gallery-section {
    padding: 0 20px;
  }

  .gallery-category h3 {
    font-size: 24px;
  }

  .gallery-card img {
    height: 240px;
  }
}

/* Candle Section */

.candle-hero {
  position: relative;

  min-height: 85vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  overflow: hidden;

  background: url("../../image/candelbanner.jpg");

  background-size: cover;

  background-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(5, 5, 20, 0.4), rgba(0, 0, 0, 0.75));
}

.candle-hero-content {
  position: relative;

  z-index: 10;

  max-width: 900px;

  padding: 20px;
}

.candle-hero-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);

  color: #fff;

  margin-bottom: 20px;
}

.candle-hero-content h1 {
  font-size: clamp(3rem, 7vw, 4rem);

  color: #fff;

  font-weight: 500;

  line-height: 1.1;

  margin-bottom: 20px;
}

.candle-hero-content p {
  font-size: 18px;

  color: #f8fafc;

  line-height: 1.9;

  margin-bottom: 35px;

  margin-right: 0;
}

.candle-hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.candle-explore-btn {
  padding: 16px 35px;

  border-radius: 50px;

  background: #f59e0b;

  color: #fff;

  text-decoration: none;
}

.candle-call-btn {
  padding: 16px 35px;

  border-radius: 50px;

  border: 2px solid white;

  color: white;

  text-decoration: none;
}

.romance-section {
  padding: 120px 5%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  background: linear-gradient(to bottom, #fff7ed, #ffffff);
}

.romance-left {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 20px;
}

.romance-left img {
  width: 100%;

  max-width: 400px; /* Control image size */

  height: 250px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  transition: 0.4s ease;
}

.romance-left img:hover {
  transform: scale(1.03);
}

.romance-right span {
  color: #f59e0b;

  font-weight: 700;
}

.romance-right h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin: 20px 0;
}

.romance-right p {
  line-height: 2;

  color: #64748b;
}

.romance-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 30px;
}

.romance-points div {
  background: white;

  padding: 15px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .romance-section {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .romance-left img:first-child,
  .romance-left img:last-child {
    max-width: 100%;

    width: 100%;

    margin-left: 0;
  }
}

/* ==========================
   DURATION SECTION
========================== */

.duration-section {
  padding: 15px 5%;

  background: linear-gradient(to bottom, #fff7ed, #ffffff);
}

.section-heading {
  text-align: center;

  max-width: 800px;

  margin: auto auto 60px;
}

.section-heading span {
  color: #f59e0b;

  font-weight: 700;

  letter-spacing: 1px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin: 15px 0;

  color: #0f172a;
}

.section-heading p {
  color: #64748b;

  line-height: 1.8;
}

/* GRID */

.package-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */

.package-card {
  background: white;

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.package-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 24px;

  margin-bottom: 15px;

  color: #0f172a;
}

.price {
  font-size: 28px;

  color: #f59e0b;

  font-weight: 800;

  margin-bottom: 15px;
}

.tag {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: #fef3c7;

  color: #b45309;

  font-size: 13px;

  font-weight: 600;
}

@media (max-width: 992px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .duration-section {
    padding: 80px 20px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card img {
    height: 220px;
  }

  .package-content h3 {
    font-size: 20px;
  }

  .price {
    font-size: 24px;
  }
}

/* ==========================
   WHY CHOOSE SECTION
========================== */

.why-choose {
  padding: 120px 5%;

  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.why-content {
  max-width: 1200px;

  margin: auto;

  text-align: center;
}

/* TAG */

.why-content span {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: #fef3c7;

  color: #b45309;

  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

/* HEADING */

.why-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  color: #0f172a;

  margin-bottom: 25px;
}

/* TEXT */

.why-content p {
  max-width: 800px;

  margin: auto;

  color: #64748b;

  line-height: 1.9;

  font-size: 17px;

  margin-bottom: 60px;
}

/* GRID */

.why-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

/* CARD */

.why-grid div {
  background: white;

  padding: 25px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  font-size: 17px;

  font-weight: 600;

  color: #334155;

  transition: 0.4s ease;

  border: 1px solid #fde68a;
}

.why-grid div:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

  border-color: #f59e0b;
}

/* TABLET */

@media (max-width: 992px) {
  .why-choose {
    padding: 90px 30px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .why-content h2 {
    font-size: 2rem;
  }

  .why-content p {
    font-size: 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   EXPERIENCE SECTION
========================== */

.experience-section {
  padding: 120px 5%;

  background: #ffffff;
}

/* HEADING */

.experience-section h2 {
  text-align: center;

  font-size: clamp(2rem, 5vw, 4rem);

  color: #0f172a;

  margin-bottom: 60px;

  position: relative;
}

.experience-section h2::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -15px;

  transform: translateX(-50%);

  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(to right, #f59e0b, #ef4444);
}

/* GRID */

.experience-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */

.experience-card {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);

  padding: 35px;

  border-radius: 25px;

  position: relative;

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* TOP GLOW */

.experience-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(to right, #f59e0b, #ef4444);
}

/* HOVER */

.experience-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* TITLE */

.experience-card h3 {
  font-size: 24px;

  color: #0f172a;

  margin-bottom: 18px;

  line-height: 1.4;
}

/* TEXT */

.experience-card p {
  color: #64748b;

  line-height: 1.9;

  font-size: 16px;
}

.experience-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;

  border-radius: 15px;

  margin-bottom: 20px;
}

/* TABLET */

@media (max-width: 992px) {
  .experience-section {
    padding: 100px 30px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .experience-section {
    padding: 80px 20px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    padding: 25px;
  }

  .experience-card h3 {
    font-size: 20px;
  }

  .experience-card p {
    font-size: 15px;
  }
}

.family-hero {
  min-height: 100vh;

  padding: 29px 5%;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 70px;

  align-items: center;

  background: linear-gradient(135deg, #f8fbff, #e0f7ff);
}

/* LEFT */

.family-badge {
  display: inline-block;

  background: #dbeafe;

  color: #0284c7;

  padding: 12px 20px;

  border-radius: 50px;

  font-weight: 600;

  margin-bottom: 25px;
}

.family-content {
  margin-top: -167px;
}

.family-content h1 {
  font-size: clamp(2.2rem, 2vw, 5rem);

  line-height: 1.1;

  color: #0f172a;

  margin-bottom: 25px;
}

.family-content p {
  color: #64748b;

  line-height: 2;

  font-size: 17px;

  margin-bottom: 35px;
}

/* BUTTONS */

.family-buttons {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.explore-btn {
  padding: 15px 30px;

  border-radius: 50px;

  background: #0ea5e9;

  color: white;

  text-decoration: none;
}

.call-btn {
  padding: 15px 30px;

  border-radius: 50px;

  border: 2px solid #0ea5e9;

  color: #0ea5e9;

  text-decoration: none;
}

/* RIGHT IMAGES */

.family-images {
  position: relative;

  height: 600px;
}

.family-card {
  position: absolute;

  overflow: hidden;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.family-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* CARD POSITIONS */

.card1 {
  width: 320px;

  height: 420px;

  top: 0;

  left: 0;
}

.card2 {
  width: 240px;

  height: 280px;

  top: 60px;

  right: 0;
}

.card3 {
  width: 260px;

  height: 300px;

  bottom: 0;

  right: 40px;
}

.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  display: block;

  width: 100%;

  height: 80px;
}

@media (max-width: 992px) {
  .family-hero {
    grid-template-columns: 1fr;

    gap: 60px;

    text-align: center;

    padding: 100px 30px;
  }

  .family-buttons {
    justify-content: center;
  }

  .family-images {
    height: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
  }

  .family-card {
    position: relative !important;

    width: 100% !important;

    height: 250px !important;

    top: auto !important;

    right: auto !important;

    left: auto !important;

    bottom: auto !important;
  }
}

@media (max-width: 768px) {
  .family-hero {
    padding: 190px 20px;
  }

  .family-content h1 {
    font-size: 2.4rem;

    line-height: 1.2;
  }

  .family-content p {
    font-size: 15px;

    line-height: 1.8;
  }

  .family-images {
    grid-template-columns: 1fr;
  }

  .family-card {
    height: 260px !important;
  }

  .family-buttons {
    flex-direction: column;

    align-items: center;
  }

  .explore-btn,
  .call-btn {
    width: 220px;

    text-align: center;
  }
}

@media (max-width: 480px) {
  .family-content h1 {
    font-size: 2rem;
  }

  .family-content p {
    font-size: 14px;
  }

  .family-card {
    height: 220px !important;

    border-radius: 20px;
  }
}

/* ==========================
   PREMIUM OVERVIEW
========================== */

.premium-overview {
  padding: 45px 5%;

  display: grid;

  grid-template-columns: 1fr 1.1fr;

  gap: 80px;

  align-items: center;

  background: #e1e1e1;
}

/* IMAGES */

.overview-images {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
  margin-top: -50%;
}

.overview-img {
  overflow: hidden;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.overview-img.large {
  grid-row: span 2;

  height: 550px;
}

.overview-img.small {
  height: 260px;
}

.overview-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.overview-img:hover img {
  transform: scale(1.08);
}

/* CONTENT */

.overview-tag {
  display: inline-block;

  background: #dbeafe;

  color: #2563eb;

  padding: 10px 20px;

  border-radius: 50px;

  margin-bottom: 25px;

  font-weight: 600;
}

.overview-content h2 {
  font-size: clamp(1rem, 2vw, 4rem);

  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 25px;
}

.overview-content p {
  font-size: 17px;

  line-height: 2;

  color: #64748b;

  margin-bottom: 20px;
}

/* FEATURES */

.overview-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 35px;
}

.feature-box {
  background: #f8fafc;

  padding: 18px;

  border-radius: 16px;

  font-weight: 600;

  color: #334155;

  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);

  background: #e0f2fe;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .premium-overview {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .overview-content {
    text-align: center;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .premium-overview {
    padding: 80px 20px;
  }

  .overview-images {
    grid-template-columns: 1fr;
  }

  .overview-img.large,
  .overview-img.small {
    height: 250px;
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .overview-content p {
    font-size: 15px;
  }
}

/* ==========================
   PREMIUM PRICING
========================== */

.premium-pricing {
  padding: 45px 5%;
  background: linear-gradient(180deg, #ffffff, #1563cb);
}

.pricing-header {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.pricing-header span {
  color: #0284c7;

  font-weight: 700;

  letter-spacing: 1px;
}

.pricing-header h2 {
  font-size: clamp(2rem, 3vw, 4rem);

  margin: 20px 0;

  color: #0f172a;
}

.pricing-header p {
  color: #64748b;

  line-height: 1.9;
}

/* GRID */

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

  gap: 30px;
}

/* CARD */

.pricing-card {
  background: white;

  border-radius: 30px;

  overflow: hidden;

  position: relative;

  padding: 40px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.pricing-card:hover {
  transform: translateY(-12px);
}

/* FEATURED */

.featured {
  border: 3px solid #0284c7;

  transform: scale(1.03);
}

.popular-badge {
  position: absolute;

  top: 20px;

  right: -40px;

  background: #0284c7;

  color: white;

  padding: 10px 50px;

  transform: rotate(45deg);

  font-size: 12px;

  font-weight: 700;
}

/* PRICE */

.pricing-top {
  text-align: center;

  margin-bottom: 30px;
}

.pricing-top h3 {
  font-size: 28px;

  color: #0f172a;

  margin-bottom: 20px;
}

.price {
  font-size: 48px;

  font-weight: 800;

  color: #0284c7;
}

/* LIST */

.pricing-card ul {
  list-style: none;

  padding: 0;

  margin: 0 0 30px;
}

.pricing-card li {
  padding: 12px 0;

  border-bottom: 1px solid #e2e8f0;
}

/* BUTTON */

.pricing-card a {
  display: block;

  text-align: center;

  padding: 15px;

  border-radius: 50px;

  text-decoration: none;

  background: #0284c7;

  color: white;

  font-weight: 600;
}

@media (max-width: 768px) {
  .premium-pricing {
    padding: 80px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .price {
    font-size: 38px;
  }
}

/* ==========================
   FAMILY HIGHLIGHTS
========================== */

.family-highlights {
  padding: 45px 5%;

  background: linear-gradient(180deg, #ffffff, #1563cb);
}

.highlight-header {
  text-align: center;

  max-width: 800px;

  margin: auto auto 70px;
}

.highlight-header span {
  color: #0284c7;

  font-weight: 700;
}

.highlight-header h2 {
  font-size: clamp(2rem, 3vw, 4rem);

  margin: 20px 0;

  color: #0f172a;
}

.highlight-header p {
  color: #64748b;

  line-height: 1.9;
}

/* GRID */

.highlight-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */

.highlight-box {
  background: white;

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.highlight-box:hover {
  transform: translateY(-10px);
}

.highlight-box img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.5s;
}

.highlight-box:hover img {
  transform: scale(1.08);
}

.highlight-content {
  padding: 25px;
}

.highlight-content h3 {
  font-size: 24px;

  margin-bottom: 15px;

  color: #0f172a;
}

.highlight-content p {
  color: #64748b;

  line-height: 1.8;
}

@media (max-width: 768px) {
  .family-highlights {
    padding: 80px 20px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-box img {
    height: 220px;
  }

  .highlight-content h3 {
    font-size: 20px;
  }
}

/* ==========================
   FAMILY AMENITIES
========================== */

.family-amenities {
  padding: 120px 5%;

  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.amenities-header {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.amenities-header span {
  color: #0284c7;

  font-weight: 700;
}

.amenities-header h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin: 20px 0;

  color: #0f172a;
}

.amenities-header p {
  color: #64748b;

  line-height: 1.9;
}

/* GRID */

.amenities-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;
}

/* CARD */

.amenity-card {
  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(12px);

  border-radius: 25px;

  padding: 35px;

  text-align: center;

  transition: 0.4s;

  border: 1px solid rgba(2, 132, 199, 0.12);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 40px rgba(2, 132, 199, 0.15);
}

/* ICON */

.icon {
  font-size: 45px;

  margin-bottom: 20px;
}

.amenity-card h3 {
  font-size: 22px;

  color: #0f172a;

  margin-bottom: 15px;
}

.amenity-card p {
  color: #64748b;

  line-height: 1.8;
}

@media (max-width: 768px) {
  .family-amenities {
    padding: 80px 20px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    padding: 25px;
  }

  .icon {
    font-size: 38px;
  }

  .amenity-card h3 {
    font-size: 20px;
  }
}

/* ==========================
   PACKAGE COMPARISON
========================== */

.package-comparison {
  padding: 120px 5%;

  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

/* HEADER */

.comparison-header {
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.comparison-header span {
  color: #0284c7;

  font-weight: 700;

  letter-spacing: 1px;
}

.comparison-header h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin: 20px 0;

  color: #0f172a;
}

.comparison-header p {
  color: #64748b;

  line-height: 1.9;
}

/* WRAPPER */

.comparison-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 35px;
}

/* CARD */

.comparison-card {
  background: white;

  border-radius: 30px;

  padding: 40px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.comparison-card:hover {
  transform: translateY(-10px);
}

/* INCLUDES */

.includes {
  border-top: 6px solid #10b981;
}

/* EXCLUDES */

.excludes {
  border-top: 6px solid #ef4444;
}

/* TITLE */

.card-title {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 30px;
}

.card-title span {
  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  font-size: 22px;

  font-weight: bold;
}

.includes .card-title span {
  background: #dcfce7;

  color: #16a34a;
}

.excludes .card-title span {
  background: #fee2e2;

  color: #dc2626;
}

.card-title h3 {
  font-size: 28px;

  color: #0f172a;
}

/* LIST */

.comparison-card ul {
  list-style: none;

  padding: 0;
}

.comparison-card li {
  padding: 14px 0;

  border-bottom: 1px solid #e2e8f0;

  color: #475569;

  font-size: 16px;
}

@media (max-width: 992px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .package-comparison {
    padding: 80px 20px;
  }

  .comparison-card {
    padding: 25px;
  }

  .card-title h3 {
    font-size: 22px;
  }
}

.family-divider {
  width: 120px;

  height: 5px;

  margin: 80px auto;

  border-radius: 50px;

  background: linear-gradient(to right, #0284c7, #10b981);
}

/* ==========================
   WHY FAMILIES LOVE
========================== */

.family-love {
  padding: 90px 5%;

  background: #ffffff;
}

.love-header {
  text-align: center;

  max-width: 750px;

  margin: 0 auto 25px;
}

.love-header span {
  color: #0284c7;

  font-weight: 600;
}

.love-header h2 {
  font-size: 2.3rem;

  color: #0f172a;

  margin: 12px 0;
}

.love-header p {
  color: #64748b;

  line-height: 1.8;
}

.love-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;
}

.love-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s;
}

.love-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 35px rgba(2, 132, 199, 0.12);
}

.love-icon {
  font-size: 40px;

  margin-bottom: 15px;
}

.love-card h3 {
  font-size: 20px;

  color: #0f172a;

  margin-bottom: 12px;
}

.love-card p {
  color: #64748b;

  line-height: 1.7;
}

/* ==========================
   FAMILY MEMORIES
========================== */
.family-memories {
  padding: 90px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  background: #f8fbff;
}

.memory-content h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin: 15px 0;
}

.memory-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 20px;
}

.memory-content ul {
  list-style: none;
  padding: 0;
}

.memory-content li {
  padding: 10px 0;
  color: #334155;
}

.memory-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ====================================
   MOBILE RESPONSIVENESS
==================================== */
@media (max-width: 768px) {
  .family-memories {
    /* Stacks the content and image vertically into one column */
    grid-template-columns: 1fr; 
    /* Reduces vertical padding so it doesn't take up the whole phone screen */
    padding: 60px 5%; 
    gap: 40px;
  }

  .memory-content h2 {
    /* Scales down the heading so it doesn't break onto too many lines */
    font-size: 1.8rem; 
  }

  .memory-image img {
    /* Shortens the image height for mobile aspect ratios */
    height: 300px; 
  }
}

/* ==========================
   CTA
========================== */

.family-cta {
  padding: 90px 20px;

  text-align: center;

  background: linear-gradient(135deg, #0284c7, #0ea5e9);

  color: white;
}

.family-cta h2 {
  font-size: 2.2rem;

  margin-bottom: 15px;
}

.family-cta p {
  max-width: 700px;

  margin: auto;

  line-height: 1.8;

  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.whatsapp-btn {
  background: white;

  color: #0284c7;

  padding: 14px 28px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;
}

/* =================================
   PREMIUM FAMILY HERO
================================= */

.premium-family-hero {
  padding: 90px 5%;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 25px;

  align-items: center;

  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

/* LEFT */

.premium-badge {
  display: inline-block;

  padding: 10px 18px;

  background: #dbeafe;

  color: #1d4ed8;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.premium-family-content h1 {
  font-size: 3rem;

  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 20px;
}

.premium-family-content p {
  color: #64748b;

  line-height: 1.9;

  font-size: 16px;

  margin-bottom: 25px;
}

/* BUTTONS */

.premium-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.premium-btn {
  padding: 14px 26px;

  border-radius: 50px;

  background: #1d4ed8;

  color: white;

  text-decoration: none;
}

.premium-btn-outline {
  padding: 14px 26px;

  border-radius: 50px;

  border: 2px solid #1d4ed8;

  color: #1d4ed8;

  text-decoration: none;
}

/* RIGHT */

.premium-family-gallery {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.premium-image {
  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.premium-image.large {
  grid-row: span 2;

  height: 450px;
}

.premium-image:not(.large) {
  height: 217px;
}

.premium-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.premium-image:hover img {
  transform: scale(1.08);
}

/* TABLET */

@media (max-width: 992px) {
  .premium-family-hero {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .premium-buttons {
    justify-content: center;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .premium-family-hero {
    padding: 70px 20px;
  }

  .premium-family-content h1 {
    font-size: 2rem;
  }

  .premium-family-gallery {
    grid-template-columns: 1fr;
  }

  .premium-image.large,
  .premium-image {
    height: 250px !important;
  }
}

/* ==========================
   LUXURY OVERVIEW
========================== */

.luxury-overview {
  padding: 90px 5%;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 25px;

  align-items: center;

  background: #ffffff;
}

/* LEFT */

.overview-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: #dbeafe;

  color: #1d4ed8;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.overview-left h2 {
  font-size: 2.3rem;

  color: #0f172a;

  margin-bottom: 20px;

  line-height: 1.3;
}

.overview-left p {
  color: #64748b;

  line-height: 1.9;

  margin-bottom: 18px;
}

/* FEATURES */

.overview-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin-top: 20px;
}

.feature-item {
  padding: 15px;

  background: #f8fafc;

  border-radius: 15px;

  font-weight: 600;

  color: #334155;

  transition: 0.3s;
}

.feature-item:hover {
  background: #e0f2fe;
}

/* RIGHT */

.overview-right {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.main-card {
  height: 350px;
}

.small-cards {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.small-cards .overview-card {
  height: 180px;
}

.overview-card {
  position: relative;

  overflow: hidden;

  border-radius: 25px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.overview-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.overview-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */

.card-overlay {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 20px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));

  color: white;
}

.card-overlay h3 {
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .luxury-overview {
    grid-template-columns: 1fr;
  }

  .overview-left {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .luxury-overview {
    padding: 70px 20px;
  }

  .overview-left h2 {
    font-size: 2rem;
  }

  .overview-features {
    grid-template-columns: 1fr;
  }

  .small-cards {
    grid-template-columns: 1fr;
  }

  .main-card,
  .small-cards .overview-card {
    height: 250px;
  }
}

/* ==========================
   PREMIUM PRICING
========================== */

.premium-pricing-section {
  padding: 90px 5%;

  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* HEADING */

.pricing-heading {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 25px;
}

.pricing-heading span {
  color: #1d4ed8;

  font-weight: 600;
}

.pricing-heading h2 {
  font-size: 2.3rem;

  color: #0f172a;

  margin: 15px 0;
}

.pricing-heading p {
  color: #64748b;

  line-height: 1.8;
}

/* GRID */

.premium-plan-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 20px;
}

/* CARD */

.premium-plan {
  position: relative;

  background: white;

  border-radius: 25px;

  padding: 35px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.premium-plan:hover {
  transform: translateY(-10px);
}

/* GOLD */

.gold {
  border: 2px solid #f59e0b;
}

/* PLATINUM */

.platinum {
  border: 2px solid #1d4ed8;
}

/* BADGE */

.best-tag {
  position: absolute;

  top: 15px;

  right: 15px;

  background: #f59e0b;

  color: white;

  padding: 8px 12px;

  border-radius: 50px;

  font-size: 12px;

  font-weight: 700;
}

/* ICON */

.plan-icon {
  font-size: 40px;

  margin-bottom: 15px;
}

.premium-plan h3 {
  font-size: 24px;

  color: #0f172a;

  margin-bottom: 10px;
}

.duration {
  color: #64748b;

  margin-bottom: 15px;
}

.price {
  font-size: 42px;

  font-weight: 800;

  color: #1d4ed8;

  margin-bottom: 5px;
}

.per {
  color: #94a3b8;

  display: block;

  margin-bottom: 25px;
}

/* LIST */

.premium-plan ul {
  list-style: none;

  padding: 0;

  margin: 0 0 25px;
}

.premium-plan li {
  padding: 10px 0;

  border-bottom: 1px solid #e2e8f0;

  color: #475569;
}

/* BUTTON */

.premium-plan a {
  display: block;

  text-align: center;

  text-decoration: none;

  background: #1d4ed8;

  color: white;

  padding: 14px;

  border-radius: 50px;

  font-weight: 600;
}

@media (max-width: 768px) {
  .premium-pricing-section {
    padding: 70px 20px;
  }

  .pricing-heading h2 {
    font-size: 2rem;
  }

  .premium-plan {
    padding: 25px;
  }

  .price {
    font-size: 34px;
  }
}

/* ==========================
   PREMIUM EXPERIENCES - HORIZONTAL SCROLL
========================== */

.premium-experiences {
  padding: 90px 2%; /* Reduced edge padding for full-width scroll */
  background: #f8fafc;
}

/* HEADER */

.experience-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  padding: 0 4%;
}

.experience-heading span {
  color: #f59e0b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.experience-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0f172a;
  margin: 15px 0;
  font-weight: 700;
}

.experience-heading p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* HORIZONTAL SCROLL GRID */

.experience-grid {
  display: flex;
  gap: 25px;
  flex-wrap: nowrap; /* Forces a single horizontal row */
  overflow-x: auto; /* Enables horizontal scrolling */
  justify-content: flex-start;
  padding: 20px 20px 40px 20px; /* Extra bottom padding for shadow clearance */

  /* Smooth magnet snapping for trackpads and phones */
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;

  /* Hide standard scrollbars for a cleaner UI */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.experience-grid::-webkit-scrollbar {
  display: none;
}

/* CARD */

.experience-box {
  flex: 0 0 340px; /* Locks width to prevent shrinking */
  scroll-snap-align: start; /* Links snapping point to the card */

  background: rgba(255, 255, 255, 0.7); /* Subtle glassmorphism base */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.experience-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-box:hover img {
  transform: scale(1.08);
}

.experience-content {
  padding: 28px 25px;
}

.experience-content h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 700;
}

.experience-content p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .premium-experiences {
    padding: 70px 0; /* Lets container hit the screen edges on mobile */
  }

  .experience-grid {
    padding-left: 20px; /* Initial indent for the first scrolling card */
  }

  .experience-box {
    flex: 0 0 280px; /* Slightly narrower cards for mobile screens */
  }

  .experience-box img {
    height: 200px;
  }
}

.premium-package-details {
  padding: 90px 5%;

  background: #fff;
}

.details-heading {
  text-align: center;

  margin-bottom: 25px;
}

.details-heading h2 {
  font-size: 2rem;

  color: #0f172a;
}

.details-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.details-card {
  background: white;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.include-card {
  border-top: 5px solid #10b981;
}

.exclude-card {
  border-top: 5px solid #ef4444;
}

.details-card h3 {
  margin-bottom: 20px;

  color: #0f172a;
}

.details-card ul {
  list-style: none;

  padding: 0;
}

.details-card li {
  padding: 12px 0;

  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

.inquiry-banner {
  margin: 0 5%;

  padding: 50px;

  border-radius: 30px;

  background: linear-gradient(135deg, #1d4ed8, #0284c7);

  color: white;

  text-align: center;
}

.banner-content span {
  display: inline-block;

  margin-bottom: 15px;

  font-weight: 600;
}

.banner-content h2 {
  font-size: 2rem;

  margin-bottom: 15px;
}

.banner-content p {
  max-width: 700px;

  margin: auto;

  line-height: 1.8;
}

@media (max-width: 768px) {
  .inquiry-banner {
    padding: 35px 20px;
  }

  .banner-content h2 {
    font-size: 1.7rem;
  }
}

.premium-family-cta {
  padding: 90px 20px;

  text-align: center;

  background: #f8fafc;
}

.premium-family-cta h2 {
  font-size: 2rem;

  color: #0f172a;

  margin-bottom: 15px;
}

.premium-family-cta p {
  max-width: 700px;

  margin: auto;

  color: #64748b;

  line-height: 1.8;

  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.cta-call {
  padding: 15px 28px;

  border-radius: 50px;

  background: #1d4ed8;

  color: white;

  text-decoration: none;

  font-weight: 600;
}

.cta-whatsapp {
  padding: 15px 28px;

  border-radius: 50px;

  background: #10b981;

  color: white;

  text-decoration: none;

  font-weight: 600;
}

.cta-call:hover,
.cta-whatsapp:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .premium-family-cta {
    padding: 70px 20px;
  }

  .cta-buttons {
    flex-direction: column;

    align-items: center;
  }

  .cta-call,
  .cta-whatsapp {
    width: 230px;
  }
}

/* ==========================
   FAQ
========================== */

.faq-section {
  max-width: 100%;

  margin: auto;
}

.faq-item {
  background: white;

  margin-bottom: 15px;

  padding: 25px;

  border-radius: 20px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #0f172a;

  margin-bottom: 10px;
}

/*  */

/* --- Core Section Canvas Setup --- */
.premium-andaman-experience {
  position: relative;
  background-color: #030712; /* Sleek ultra-dark luxury tone makes tropical colors explode */
  padding: 120px 24px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  overflow: hidden;
}

.premium-andaman-experience * {
  box-sizing: border-box;
}

.premium-andaman-experience .luxury-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* --- Bioluminescent Canvas Accents --- */
.island-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.25;
}
.glow-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
}
.glow-2 {
  bottom: -10%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
}

/* --- Editorial Header Layout --- */
.creative-header {
  margin-bottom: 80px;
  max-width: 800px;
}

.tagline-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px #22c55e;
}

.creative-tagline {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #94a3b8;
}

.creative-title {
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1.5px;
}

/* .gradient-text {
  background: linear-gradient(90deg, #38bdf8, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.creative-subtitle {
  font-size: 19px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
}

/* --- Modern Kinetic Grid Framework --- */
.kinetic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* --- The Master Kinetic Card Element --- */
.kinetic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 40px;
  min-height: 480px;
  background: #111827;
  overflow: hidden;
  cursor: pointer;

  /* Asymmetrical Island Curve - Gives an organic premium wave feeling */
  border-radius: 40px 180px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  /* Super buttery, advanced transitions */
  transition:
    border-color 0.5s ease,
    border-radius 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Dynamic Morphing Gradients (Card Backgrounds) --- */
.kinetic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

.ocean-motion::before {
  background: linear-gradient(135deg, #0284c7, #06b6d4, #0f172a);
}
.sunset-motion::before {
  background: linear-gradient(135deg, #f97316, #ec4899, #4c0519);
}
.palm-motion::before {
  background: linear-gradient(135deg, #10b981, #6366f1, #022c22);
}

/* --- Giant Typography Watermarks --- */
.watermark-text {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 110px;
  font-weight: 900;
  letter-spacing: -5px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 2;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.5s ease;
}

/* --- Card Content Wrapper --- */
.card-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* --- Morphing Spatial Icon Container --- */
.morph-icon-spatial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
  transition:
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.4s ease;
}

.spatial-svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s ease;
}

/* Color Matching Individual Themes */
.ocean-motion .spatial-svg {
  color: #38bdf8;
}
.sunset-motion .spatial-svg {
  color: #fb923c;
}
.palm-motion .spatial-svg {
  color: #4ade80;
}

/* --- Copy & Typographic Details --- */
.label-caps {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.title-display {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.copy-body {
  font-size: 15px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0;
  transition: color 0.4s ease;
}

/* --- Interactive Shimmer Accent Line --- */
.interactive-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.ocean-motion .interactive-shimmer {
  background: linear-gradient(90deg, #0284c7, #06b6d4);
}
.sunset-motion .interactive-shimmer {
  background: linear-gradient(90deg, #f97316, #ec4899);
}
.palm-motion .interactive-shimmer {
  background: linear-gradient(90deg, #10b981, #6366f1);
}

/* ==========================================================================
   THE "WOW" HOVER STATE ENGINE
   ========================================================================== */

.kinetic-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.2);
  /* Morphs the wave outline to the opposite corner for a fluid interaction */
  border-radius: 180px 40px 40px 40px;
}

/* Intensify background gradients on hover */
.kinetic-card:hover::before {
  opacity: 0.85;
}

/* Individual Neon Color Glow Dropshadows */
.ocean-motion:hover {
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.25);
}
.sunset-motion:hover {
  box-shadow: 0 30px 60px rgba(244, 63, 94, 0.25);
}
.palm-motion:hover {
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

/* Pull Content out dynamically (3D Parallax effect) */
.kinetic-card:hover .morph-icon-spatial {
  transform: scale(1.15) translateZ(20px);
  background-color: #ffffff;
}
.kinetic-card:hover .spatial-svg {
  transform: scale(0.95);
  color: #030712 !important; /* Inverts color inside the illuminated container */
}

/* Shift Kinetic Watermark Background Typography */
.kinetic-card:hover .watermark-text {
  transform: scale(1.1) translateX(-20px);
  color: rgba(255, 255, 255, 0.05);
}

/* Light up body font readability overlay */
.kinetic-card:hover .copy-body {
  color: #ffffff;
}

/* Deploy bottom tracking accent line */
.kinetic-card:hover .interactive-shimmer {
  width: 100%;
}

/* ==========================================================================
   UNIVERSAL DEVICE BREAKPOINTS (MOBILE & TABLET RESPONSIVE)
   ========================================================================== */

@media (max-width: 1100px) {
  .kinetic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .creative-title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .premium-andaman-experience {
    padding: 80px 16px;
  }
  .creative-title {
    font-size: 36px;
  }
  .creative-subtitle {
    font-size: 16px;
  }
  .kinetic-grid {
    grid-template-columns: 1fr; /* Pure elegant stack on mobile viewports */
    gap: 24px;
  }
  .kinetic-card {
    padding: 40px 30px;
    min-height: auto;
    border-radius: 30px 120px 30px 30px; /* Scaled down curves for smaller glass sizes */
  }
  .watermark-text {
    font-size: 80px;
  }
}

/* ==========================================================================
   ISOLATED NAMESPACE CONTAINER: CRISP LIGHT BEACH DAY THEME
   ========================================================================== */
.adm-lux-portal-wrapper {
  background-color: #f4f8fb; /* Clean, airy coastal sand tone */
  color: #334155; /* High-readability slate gray */
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  padding: 80px 24px;
  overflow: hidden;
  position: relative;
}

/* Clear style overrides internally */
.adm-lux-portal-wrapper *,
.adm-lux-portal-wrapper *::before,
.adm-lux-portal-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Section 1: Hero Space Layout --- */
.adm-lux-hero-segment {
  position: relative;
  text-align: center;
  padding: 60px 20px 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.adm-lux-hero-ambient-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12) 0%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}

.adm-lux-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  margin-bottom: 24px;
}

.adm-lux-pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.adm-lux-hero-title {
  font-size: 64px;
  font-weight: 950;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 24px;
}

.adm-lux-gradient-glow {
  background: linear-gradient(135deg, #0284c7 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adm-lux-hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Section 2: Bento Grid Layout --- */
.adm-lux-bento-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 120px auto;
}

.adm-lux-bento-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 48px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Sovereign Custom Card Background Shift */
.adm-lux-card-sovereign {
  grid-column: span 2;
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border-left: 6px solid #10b981;
}

.adm-lux-mini-tag {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  color: #059669;
  display: block;
  margin-bottom: 16px;
}

.adm-lux-block-heading {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #0f172a;
}

.adm-lux-block-text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.adm-lux-highlight-callout {
  margin-top: 28px;
  padding: 20px;
  background-color: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  font-size: 15px;
  color: #065f46;
}

/* Transit Custom Dynamic Shadows */
.adm-lux-transit-air:hover {
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
  border-color: #0ea5e9;
}
.adm-lux-transit-sea:hover {
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.adm-lux-bento-card:hover {
  transform: translateY(-6px);
}

.adm-lux-transit-icon-box {
  width: 56px;
  height: 56px;
  background-color: #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.adm-lux-transit-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

/* --- Section 3: Gallery Showcase --- */
.adm-lux-gallery-showcase {
  max-width: 1200px;
  margin: 0 auto 120px auto;
}

.adm-lux-section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.adm-lux-center-heading {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0f172a;
  margin-bottom: 12px;
}

.adm-lux-center-sub {
  color: #64748b;
  font-size: 17px;
}

.adm-lux-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adm-lux-island-capsule {
  position: relative;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition:
    transform 0.4s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.adm-lux-image-zoom-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #f1f5f9;
}

.adm-lux-responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.adm-lux-island-meta {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.adm-lux-island-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.adm-lux-island-arrow {
  color: #0284c7;
  font-weight: bold;
  transform: translateX(-5px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Gallery Hover Animations */
.adm-lux-island-capsule:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.adm-lux-island-capsule:hover .adm-lux-responsive-img {
  transform: scale(1.08);
}
.adm-lux-island-capsule:hover .adm-lux-island-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* --- Section 4: Fast Facts Matrix Layout --- */
.adm-lux-facts-matrix {
  max-width: 1200px;
  margin: 0 auto 120px auto;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
}

.adm-lux-matrix-title {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

.adm-lux-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.adm-lux-matrix-node {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.adm-lux-node-emoji {
  font-size: 24px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px;
  border-radius: 16px;
  line-height: 1;
}

.adm-lux-matrix-node p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

/* --- Section 5: Sunlit Booking Catalyst (CTA) --- */
.adm-lux-action-catalyst {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    #ff5a36 0%,
    #ff1493 100%
  ); /* Bright Sunset Coral/Pink finish */
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 90, 54, 0.2);
}

.adm-lux-catalyst-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}

.adm-lux-catalyst-heading {
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

.adm-lux-catalyst-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 36px;
}

.adm-lux-action-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #ff5a36;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.adm-lux-action-button:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   DYNAMIC DEVICE BREAKPOINTS (MOBILE & TABLET RESPONSIVE)
   ========================================================================== */

@media (max-width: 1024px) {
  .adm-lux-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .adm-lux-hero-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .adm-lux-portal-wrapper {
    padding: 50px 16px;
  }
  .adm-lux-hero-segment {
    padding: 40px 10px;
  }
  .adm-lux-hero-title {
    font-size: 38px;
  }
  .adm-lux-bento-hub {
    grid-template-columns: 1fr; /* Pure elegant layout collapse */
    gap: 20px;
    margin-bottom: 80px;
  }
  .adm-lux-card-sovereign {
    grid-column: span 1;
  }
  .adm-lux-bento-card {
    padding: 32px 24px;
  }
  .adm-lux-center-heading {
    font-size: 30px;
  }
  .adm-lux-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .adm-lux-facts-matrix {
    padding: 40px 24px;
    margin-bottom: 80px;
  }
  .adm-lux-matrix-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .adm-lux-action-catalyst {
    padding: 60px 20px;
    border-radius: 28px;
  }
  .adm-lux-catalyst-heading {
    font-size: 30px;
  }
}

/* ==========================================================================
   PREFIXED CONTAINER CANVAS WITH SHOT-MATCHED GRADIENT BACKGROUND
   ========================================================================== */
.adm-con-portal-wrapper {
  position: relative;
  background-color: #fcfdfe; /* Soft premium daylight base */
  padding: 60px 24px 120px 24px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  overflow: hidden;
}

/* Local safety scoping to protect layout configurations */
.adm-con-portal-wrapper *,
.adm-con-portal-wrapper *::before,
.adm-con-portal-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.adm-con-inner-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* --- Screenshot Mesh-Blob Background Engine --- */
.adm-con-mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.adm-con-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px); /* Smooth bokeh bleed effect */
  mix-blend-mode: multiply;
  opacity: 0.7;
}

/* Soft Sunshine Yellow Blur (Top Left) */
.adm-con-blob-yellow {
  top: -80px;
  left: -60px;
  width: 450px;
  height: 450px;
  background-color: #fff4ca;
}

/* Translucent Sky Turquoise Blur (Right) */
.adm-con-blob-cyan {
  top: 40px;
  right: -120px;
  width: 500px;
  height: 500px;
  background-color: #daf5ff;
}

/* Pastel Coral/Pink Blur (Center Bottom Sub-Text Area) */
.adm-con-blob-pink {
  top: 220px;
  left: 30%;
  width: 380px;
  height: 380px;
  background-color: #ffe6ea;
}

/* --- Screenshot Typography Calibration --- */
.adm-con-header-block {
  max-width: 850px;
  margin: 40px 0 70px 0;
  position: relative;
  z-index: 5;
}

/* Crimson/Coral Tiny Caps Badge */
.adm-con-uppercase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #ff4766;
  margin-bottom: 24px;
}

/* Deep Ocean Navy Heading */
.adm-con-display-title {
  font-size: 72px;
  font-weight: 900;
  color: #0b2f61; /* Rich premium navy tone from image */
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

/* Island Lagoon Green-to-Cyan Gradient Word styling */
.adm-con-gradient-accent {
  background: linear-gradient(to right, #00cbaf 0%, #a2df52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.adm-con-lead-paragraph {
  font-size: 19px;
  line-height: 1.6;
  color: #3b5278; /* Soft blue-gray typography */
  max-width: 640px;
}

/* --- Layout Grid Alignment --- */
.adm-con-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}

/* --- Left Column Info Modules --- */
.adm-con-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.adm-con-interactive-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
  transition:
    transform 0.3s cubic-bezier(0.2, 1, 0.3, 1),
    border-color 0.3s ease;
}

.adm-con-interactive-card:hover {
  transform: translateY(-3px);
  border-color: #00cbaf;
}

.adm-con-icon-frame {
  width: 48px;
  height: 48px;
  background-color: #f0fdfa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adm-con-svg-element {
  width: 22px;
  height: 22px;
  color: #0ea5e9;
}

.adm-con-card-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adm-con-meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.adm-con-clickable-data {
  font-size: 15px;
  font-weight: 600;
  color: #0b2f61;
  text-decoration: none;
}

.adm-con-address-text {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: #0b2f61;
}

/* Embedded Map Configuration */
.adm-con-map-canvas-frame {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.adm-con-embedded-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.adm-con-map-overlay-tint {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 165, 233, 0.02);
  pointer-events: none;
}

/* --- Right Column: Glassmorphism Form Surface --- */
.adm-con-enquiry-surface {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.02);
}

.adm-con-form-intro {
  margin-bottom: 36px;
}

.adm-con-spark-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00cbaf;
  background-color: #f0fdfa;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.adm-con-spark-svg {
  width: 12px;
  height: 12px;
}

.adm-con-form-title {
  font-size: 32px;
  font-weight: 900;
  color: #0b2f61;
}

.adm-con-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Interactive Floating Labels Engine */
.adm-con-input-wrapper {
  position: relative;
}

.adm-con-field-control {
  width: 100%;
  padding: 24px 16px 10px 16px;
  font-size: 14px;
  color: #0b2f61;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  outline: none;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.adm-con-textarea-control {
  padding-top: 32px;
  resize: none;
}

.adm-con-field-control:focus {
  background-color: #ffffff;
  border-color: #00cbaf;
}

.adm-con-floating-label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 13px;
  color: #64748b;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    font-size 0.2s ease,
    color 0.2s ease;
}

.adm-con-field-control:focus ~ .adm-con-floating-label,
.adm-con-field-control:not(:placeholder-shown) ~ .adm-con-floating-label {
  transform: translateY(-10px);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00cbaf;
}

/* Custom CTA Submission Catalyst */
.adm-con-catalyst-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ff4766 0%, #ff6b85 100%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 71, 102, 0.15);
  transition:
    transform 0.3s cubic-bezier(0.2, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.adm-con-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.adm-con-catalyst-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 71, 102, 0.25);
}

.adm-con-catalyst-submit-btn:hover .adm-con-btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   DYNAMIC RESPONSIVENESS (MOBILE INTERFACES COLLAPSE)
   ========================================================================== */
@media (max-width: 1024px) {
  .adm-con-layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .adm-con-display-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .adm-con-display-title {
    font-size: 42px;
  }
  .adm-con-form-grid {
    grid-template-columns: 1fr;
  }
  .adm-con-enquiry-surface {
    padding: 32px 20px;
  }
  /* Shift backgrounds dynamically down for small ports to avoid crowding */
  .adm-con-blob-yellow {
    width: 300px;
    height: 300px;
  }
  .adm-con-blob-cyan {
    width: 300px;
    height: 300px;
  }
}

/* --- Base Theme Configuration scoped inside layout wrapper --- */
.trvl-b-wrapper {
  --tb-bg-canvas: #f8fafc;
  --tb-txt-main: #1e293b;
  --tb-txt-muted: #64748b;
  --tb-primary: #0f766e;
  --tb-primary-shade: #115e59;
  --tb-surface: #ffffff;
  --tb-ui-border: #e2e8f0;
  --tb-radius-surface: 16px;
  --tb-radius-interactive: 8px;
  --tb-elevation-low:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --tb-elevation-high:
    0 20px 25px -5px rgba(15, 118, 110, 0.08),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --tb-anim-speed: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--tb-txt-main);
  line-height: 1.6;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* --- Section Layout Header --- */
.trvl-b-module {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.trvl-b-section-header {
  border-left: 4px solid var(--tb-primary);
  padding-left: 16px;
}

.trvl-b-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tb-txt-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.trvl-b-section-subtitle {
  font-size: 1rem;
  color: var(--tb-txt-muted);
  margin: 4px 0 0 0;
}

/* --- CSS Grid Grid System --- */
.trvl-b-layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* --- Card Block Component --- */
.trvl-b-item-card {
  background: var(--tb-surface);
  border-radius: var(--tb-radius-surface);
  overflow: hidden;
  border: 1px solid var(--tb-ui-border);
  box-shadow: var(--tb-elevation-low);
  display: flex;
  flex-direction: column;
  transition: var(--tb-anim-speed);
}

.trvl-b-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tb-elevation-high);
  border-color: rgba(15, 118, 110, 0.2);
}

/* Responsive Image Area (16:9 Aspect Ratio) */
.trvl-b-media-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: var(--tb-ui-border);
}

.trvl-b-media-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tb-anim-speed);
}

.trvl-b-item-card:hover .trvl-b-media-element {
  transform: scale(1.05);
}

/* Floating Clean Layout Badges */
.trvl-b-badge-stack {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.trvl-b-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--tb-primary-shade);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--tb-radius-interactive);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Content Frame inside Card */
.trvl-b-body-block {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trvl-b-heading-anchor {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 auto 0;
}

.trvl-b-heading-anchor a {
  color: var(--tb-txt-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.trvl-b-heading-anchor a:hover {
  color: var(--tb-primary);
}

/* Profile Metadata Footer */
.trvl-b-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--tb-ui-border);
}

.trvl-b-creator-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trvl-b-creator-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--tb-ui-border);
}

.trvl-b-creator-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tb-txt-main);
}

.trvl-b-timestamp {
  font-size: 0.85rem;
  color: var(--tb-txt-muted);
}

/* --- Clean Modern Load More CTA --- */
.trvl-b-pagination-bar {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.trvl-b-trigger-btn {
  background-color: transparent;
  color: var(--tb-primary);
  border: 2px solid var(--tb-primary);
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--tb-anim-speed);
}

.trvl-b-trigger-btn:hover {
  background-color: var(--tb-primary);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(15, 118, 110, 0.2);
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 992px) {
  .trvl-b-wrapper {
    margin: 40px auto;
  }
}

@media (max-width: 640px) {
  .trvl-b-layout-grid {
    grid-template-columns: 1fr;
  }
  .trvl-b-section-title {
    font-size: 1.6rem;
  }
  .trvl-b-wrapper {
    gap: 50px;
  }
}

/* --- Core Article Styling Layout Context --- */
.trvl-d-container {
  --td-main-color: #1e293b;
  --td-muted-color: #64748b;
  --td-accent-teal: #0f766e;
  --td-accent-bg: #f8fafc;
  --td-border-ui: #e2e8f0;
  --td-card-surface: #ffffff;
  --td-radius-card: 14px;

  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--td-main-color);
  line-height: 1.8;
  max-width: 820px;
  margin: 40px auto;
  padding: 0 16px;
}

/* --- Header & Typography Elements --- */
.trvl-d-post-header {
  margin-bottom: 32px;
  text-align: left;
}

.trvl-d-category-capsule {
  display: inline-block;
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--td-accent-teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.trvl-d-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.trvl-d-meta-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--td-muted-color);
}

.trvl-d-author-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--td-main-color);
}

.trvl-d-avatar-small {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.trvl-d-divider {
  color: var(--td-border-ui);
}

.trvl-d-comment-shortcut {
  color: var(--td-accent-teal);
  text-decoration: none;
  font-weight: 500;
}

/* --- Media Containers --- */
.trvl-d-hero-frame {
  width: 100%;
  border-radius: var(--td-radius-card);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.trvl-d-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Core Article Content Framework --- */
.trvl-d-article-body p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #334155;
}

/* Stylized Design Elements */
.trvl-d-editorial-quote {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--td-accent-teal);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 4px solid var(--td-accent-teal);
  margin: 40px 0;
}

.trvl-d-callout-box {
  background-color: var(--td-accent-bg);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  border: 1px dashed var(--td-border-ui);
}

.trvl-d-callout-box p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.trvl-d-inline-media {
  margin: 36px 0;
  border-radius: 8px;
  overflow: hidden;
}

.trvl-d-body-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Modern Location Section Cards --- */
.trvl-d-zone-header {
  margin: 60px 0 30px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--td-border-ui);
}

.trvl-d-zone-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trvl-d-zone-header p {
  font-size: 1rem;
  color: var(--td-muted-color);
  margin: 0;
}

.trvl-d-subsection-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 32px 0 20px 0;
  color: var(--td-accent-teal);
}

/* Attraction Cards system loop architecture */
.trvl-d-attraction-card {
  background-color: var(--td-card-surface);
  border: 1px solid var(--td-border-ui);
  border-radius: var(--td-radius-card);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.trvl-d-card-img-holder {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
}

.trvl-d-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trvl-d-card-details {
  padding: 24px;
}

.trvl-d-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trvl-d-num {
  font-size: 0.9rem;
  background-color: var(--td-accent-bg);
  color: var(--td-muted-color);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.trvl-d-card-footer-info {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--td-border-ui);
  display: flex;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--td-muted-color);
}

/* Internal Highlights List resets */
.trvl-d-highlights-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.trvl-d-highlights-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #475569;
}

.trvl-d-highlights-list li::before {
  content: "•";
  color: var(--td-accent-teal);
  font-weight: bold;
  position: absolute;
  left: 4px;
}

/* --- Metadata Keywords Pills --- */
.trvl-d-tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 50px 0;
  padding-top: 20px;
  border-top: 1px solid var(--td-border-ui);
}

.trvl-d-tag-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--td-muted-color);
}

.trvl-d-keyword-pill {
  font-size: 0.85rem;
  text-decoration: none;
  color: #475569;
  background-color: var(--td-accent-bg);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--td-border-ui);
  transition: all 0.2s ease;
}

.trvl-d-keyword-pill:hover {
  color: var(--td-accent-teal);
  border-color: var(--td-accent-teal);
}

/* --- Isolated Profile Frame --- */
.trvl-d-author-profile-box {
  background-color: var(--td-accent-bg);
  border-radius: var(--td-radius-card);
  padding: 30px;
  margin: 40px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.trvl-d-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.trvl-d-profile-bio {
  flex-grow: 1;
}

.trvl-d-profile-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trvl-d-profile-text {
  font-size: 0.95rem;
  color: var(--td-muted-color);
  margin-bottom: 12px;
}

.trvl-d-view-posts-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--td-accent-teal);
  text-decoration: none;
  border-bottom: 1px solid var(--td-accent-teal);
}

/* --- Internal Article Sibling Pagination Links --- */
.trvl-d-sibling-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--td-border-ui);
}

.trvl-d-nav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--td-border-ui);
  transition: all 0.2s ease;
}

.trvl-d-nav-link:hover {
  border-color: var(--td-accent-teal);
  background-color: var(--td-accent-bg);
}

.trvl-d-nav-next {
  text-align: right;
}

.trvl-d-nav-dir {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--td-muted-color);
  margin-bottom: 4px;
}

.trvl-d-nav-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--td-main-color);
}

/* --- Mobile Responsiveness Optimization Rules --- */
@media (max-width: 680px) {
  .trvl-d-main-title {
    font-size: 1.85rem;
  }
  .trvl-d-author-profile-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .trvl-d-sibling-navigation {
    grid-template-columns: 1fr;
  }
  .trvl-d-card-footer-info {
    flex-direction: column;
    gap: 8px;
  }
}

/*  */

/* --- Core Navigation Variables & Baseline Reset --- */
.woa-nav-header {
  --nav-bg: #ffffff;
  --nav-text: #1e293b;
  --nav-accent: #0f766e; /* Tropical Teal */
  --nav-accent-glow: #e2e8f0;
  --nav-border: #f1f5f9;
  --nav-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-shadow: 0 4px 20px -2px rgba(15, 118, 110, 0.05);

  width: 100%;
  background-color: var(--nav-bg);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
}

.woa-nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Brand Identity Logo Architecture --- */
.woa-nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nav-text);
  letter-spacing: -0.01em;
}

.woa-nav-logo-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woa-nav-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woa-nav-logo-accent {
  color: var(--nav-accent);
}

/* --- Navigation Base Flex Links Frame --- */
.woa-nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woa-nav-link {
  text-decoration: none;
  color: var(--nav-text);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--nav-transition);
}

.woa-nav-link:hover,
.woa-nav-active {
  color: var(--nav-accent);
  background-color: rgba(15, 118, 110, 0.04);
}

.woa-nav-arrow {
  font-size: 0.75rem;
  transition: var(--nav-transition);
}

/* Featured Action Button Frame Link */
.woa-nav-btn-contact {
  background-color: var(--nav-accent);
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 22px;
  box-shadow: 0 4px 12px -2px rgba(15, 118, 110, 0.25);
}

.woa-nav-btn-contact:hover {
  background-color: #115e59;
  transform: translateY(-1px);
}

/* --- Desktop Layout Mega Menu Engine --- */
@media (min-width: 993px) {
  .woa-nav-mobile-close,
  .woa-nav-toggle,
  .woa-nav-overlay {
    display: none !important;
  }

  .woa-nav-has-mega {
    position: static; /* Forces mega menu full-width relative to structural container */
  }

  .woa-nav-mega-drawer {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 3px solid var(--nav-accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--nav-transition);
  }

  /* Desktop Clean Interaction Hover Activations */
  .woa-nav-has-mega:hover .woa-nav-mega-drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .woa-nav-has-mega:hover .woa-nav-arrow {
    transform: rotate(180deg);
  }

  .woa-nav-mega-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .woa-nav-mega-column h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nav-accent);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }

  .woa-nav-mega-column a {
    display: block;
    text-decoration: none;
    color: #475569;
    font-size: 0.88rem;
    padding: 6px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
  }

  .woa-nav-mega-column a:hover {
    color: var(--nav-accent);
  }
}

/* --- Mobile & Tablet Compact Media Engine --- */
@media (max-width: 992px) {
  .woa-nav-container {
    height: 70px;
  }

  /* Interactive Smartphone Drawer Trigger */
  .woa-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .woa-nav-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--nav-text);
    border-radius: 4px;
    transition: var(--nav-transition);
  }

  /* Navigation Base Slide Drawer Override */
  .woa-nav-list {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden standard side distance overlay area */
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 70px 20px 40px 20px;
    overflow-y: auto;
    z-index: 10000;
    transition: var(--nav-transition);
  }

  /* Script activation states layout targets */
  .woa-nav-list.woa-open {
    right: 0;
  }

  .woa-nav-mobile-close {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--td-muted-color);
  }

  .woa-nav-link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 0;
    border-bottom: 1px solid var(--nav-border);
  }

  .woa-nav-btn-contact {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
  }

  /* Compact Adaptive Touch Accordion Structure */
  .woa-nav-mega-drawer {
    background-color: var(--nav-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  /* Dynamic Javascript Accordion Target rule toggle */
  .woa-nav-mega-drawer.woa-visible-accordion {
    max-height: 1500px; /* Dynamic padding allowance constraint height */
    transition: max-height 0.5s ease-in;
  }

  .woa-nav-mega-grid {
    padding: 10px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .woa-nav-mega-column h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--nav-accent);
    margin-bottom: 8px;
    margin-top: 8px;
  }

  .woa-nav-mega-column a {
    display: block;
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
    padding: 8px 0 8px 12px;
    border-left: 2px solid rgba(15, 118, 110, 0.2);
  }

  /* Mobile Dim Background Layer Mask Component */
  .woa-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--nav-transition);
  }

  .woa-nav-overlay.woa-active {
    opacity: 1;
    visibility: visible;
  }
}

/* --- Root Global Token Architecture inside Namespace Isolation --- */
/* .andm-pkg-wrapper {
  --ap-teal-base: #0f766e;
  --ap-teal-deep: #115e59;
  --ap-amber-accent: #f59e0b;
  --ap-txt-dark: #1e293b;
  --ap-txt-muted: #475569;
  --ap-bg-tint: #f8fafc;
  --ap-border-subtle: #e2e8f0;
  --ap-surface-white: #ffffff;
  --ap-radius-rounded: 12px;
  --ap-fast-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ap-txt-dark);
  line-height: 1.6;
} */

/* --- Inline Promo Banner Strip Line --- */
/* .andm-pkg-promo-banner {
  background: linear-gradient(135deg, var(--ap-teal-base), var(--ap-teal-deep));
  color: var(--ap-surface-white);
  padding: 12px 20px;
  border-radius: var(--ap-radius-rounded);
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 35px;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

.andm-pkg-promo-banner p {
  margin: 0;
}

/* --- Content Headings & Lead Formatting Layouts --- */
/*.andm-pkg-intro-section h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}

.andm-pkg-lead-text {
  font-size: 1.05rem;
  color: var(--ap-txt-muted);
  margin-bottom: 28px;
  text-align: justify;
}

.andm-pkg-hero-frame {
  width: 100%;
  border-radius: var(--ap-radius-rounded);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.andm-pkg-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* --- Clean Pricing Tables Component Matrix --- */
/*.andm-pkg-pricing-section {
  margin-bottom: 60px;
}

.andm-pkg-section-title {
  margin-bottom: 24px;
}

.andm-pkg-section-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.andm-pkg-section-title p {
  color: var(--ap-txt-muted);
  margin-top: 4px;
}

.andm-pkg-table-container {
  overflow-x: auto;
  border: 1px solid var(--ap-border-subtle);
  border-radius: var(--ap-radius-rounded);
  background: var(--ap-surface-white);
}

.andm-pkg-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.98rem;
}

.andm-pkg-data-table th {
  background-color: var(--ap-bg-tint);
  color: var(--ap-txt-dark);
  font-weight: 700;
  padding: 16px 20px;
  border-bottom: 2px solid var(--ap-border-subtle);
}

.andm-pkg-data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ap-border-subtle);
}

.andm-pkg-data-table tr:last-child td {
  border-bottom: none;
}

.andm-pkg-data-table td a {
  color: var(--ap-teal-base);
  text-decoration: none;
  transition: var(--ap-fast-transition);
}

.andm-pkg-data-table td a:hover {
  color: var(--ap-teal-deep);
  text-decoration: underline;
}

.andm-pkg-price-highlight {
  color: var(--ap-teal-deep);
  font-weight: 700;
}

.andm-pkg-disclaimer {
  display: block;
  margin-top: 10px;
  color: var(--ap-txt-muted);
  font-style: italic;
  font-size: 0.85rem;
}

/* --- Compact Flexible Search Engine Planner Form --- */
/*.andm-pkg-form-section {
  margin-bottom: 60px;
}

.andm-pkg-form-card {
  background-color: var(--ap-surface-white);
  border: 1px solid var(--ap-border-subtle);
  border-radius: var(--ap-radius-rounded);
  padding: 30px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.03);
}

.andm-pkg-form-header {
  margin-bottom: 24px;
}

.andm-pkg-form-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.andm-pkg-form-header p {
  color: var(--ap-txt-muted);
  font-size: 0.9rem;
  margin: 4px 0 0 0;
}

.andm-pkg-planner-engine {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
}

.andm-pkg-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.andm-pkg-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ap-txt-muted);
}

.andm-pkg-input-group input,
.andm-pkg-input-group select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--ap-border-subtle);
  background-color: var(--ap-bg-tint);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ap-txt-dark);
  outline: none;
  transition: var(--ap-fast-transition);
}

.andm-pkg-input-group input:focus,
.andm-pkg-input-group select:focus {
  border-color: var(--ap-teal-base);
  background-color: var(--ap-surface-white);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.andm-pkg-search-btn {
  height: 46px;
  padding: 0 28px;
  background-color: var(--ap-teal-base);
  color: var(--ap-surface-white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--ap-fast-transition);
}

.andm-pkg-search-btn:hover {
  background-color: var(--ap-teal-deep);
}

/* --- Clean Media Categorized Grid Loops Layout --- */
/*.andm-pkg-loops-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 60px;
}

.andm-pkg-loop-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.andm-pkg-loop-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: var(--ap-teal-base);
  border-radius: 2px;
}

.andm-pkg-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.andm-pkg-card-item {
  background-color: var(--ap-surface-white);
  border: 1px solid var(--ap-border-subtle);
  border-radius: var(--ap-radius-rounded);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.andm-pkg-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--ap-border-subtle);
}

.andm-pkg-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.andm-pkg-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.andm-pkg-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ap-teal-base);
  background-color: rgba(15, 118, 110, 0.06);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.andm-pkg-card-price {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--ap-txt-muted);
  border-top: 1px solid var(--ap-border-subtle);
  padding-top: 12px;
}

.andm-pkg-card-price span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ap-txt-dark);
}

/* --- Clean Semantic HTML5 Details Accordion FAQ Stack --- */
/*.andm-pkg-faq-container {
  margin-bottom: 40px;
}

.andm-pkg-faq-main-heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.andm-pkg-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 850px;
  margin: 0 auto;
}

.andm-pkg-faq-item {
  background-color: var(--ap-surface-white);
  border: 1px solid var(--ap-border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--ap-fast-transition);
}

.andm-pkg-faq-item[open] {
  border-color: var(--ap-teal-base);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.03);
}

.andm-pkg-faq-trigger {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  user-select: none;
  outline: none;
  color: var(--ap-txt-dark);
  transition: color 0.2s ease;
}

.andm-pkg-faq-trigger:hover {
  color: var(--ap-teal-base);
}

.andm-pkg-faq-response {
  padding: 4px 20px 20px 20px;
  border-top: 1px solid var(--ap-border-subtle);
  background-color: var(--ap-bg-tint);
}

.andm-pkg-faq-response p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ap-txt-muted);
  line-height: 1.7;
}

/* --- Sticky Bottom CTA Component for Small Responsive Viewports --- */
/*.andm-pkg-sticky-action-bar {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 999;
  padding: 0 20px;
  pointer-events: none; /* Allows clicks to pass through background space safely */
/* } */

/*.andm-pkg-floating-call-btn {
  pointer-events: auto; /* Re-enables touch tracking on the button frame only */
/* background-color: #1e293b;
  color: var(--ap-surface-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--ap-fast-transition);
} */

/* .andm-pkg-floating-call-btn:hover {
  background-color: var(--ap-teal-base);
  transform: translateY(-2px);
} */

/* --- Multi-Device Viewport Responsiveness Breaking Rules --- */
/* @media (max-width: 992px) {
  .andm-pkg-planner-engine {
    grid-template-columns: repeat(2, 1fr);
  }
  .andm-pkg-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* @media (max-width: 680px) {
  .andm-pkg-intro-section h1 {
    font-size: 1.75rem;
  }
  .andm-pkg-planner-engine {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .andm-pkg-search-btn {
    margin-top: 6px;
  }
  .andm-pkg-grid-layout {
    grid-template-columns: 1fr;
  }
  .andm-pkg-form-card {
    padding: 20px;
  }
} */

/* =========================================
CONTACT PAGE VARIABLES
========================================= */

:root {
  --contact-primary: #00b4d8;
  --contact-secondary: #0077b6;

  --contact-dark: #081120;
  --contact-dark-light: #0f172a;

  --contact-gold: #fbbf24;

  --contact-white: #ffffff;

  --glass: rgba(255, 255, 255, 0.12);

  --glass-border: rgba(255, 255, 255, 0.18);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* =========================================
CONTACT HERO
========================================= */

.contact-hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  overflow: hidden;

  padding: 120px 20px;

  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.85), rgba(0, 119, 182, 0.85)),
    url("../image/contact-bg.jpg");

  background-size: cover;

  background-position: center;
}

.contact-hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(8, 17, 32, 0.2),
    rgba(8, 17, 32, 0.7)
  );
}

.contact-hero-content {
  position: relative;

  z-index: 5;

  max-width: 100%;

  margin-top: -104px;
}

.contact-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff;

  margin-bottom: 25px;
}

.contact-hero h1 {
  color: #fff;

  font-size: clamp(3rem, 7vw, 5.5rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

.contact-hero p {
  color: #f8fafc;

  font-size: 1.2rem;

  line-height: 1.9;

  max-width: 750px;

  margin: auto;

  margin-bottom: 40px;
}

.contact-hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.contact-primary-btn {
  padding: 18px 40px;

  background: var(--contact-gold);

  color: #000;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.contact-primary-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.35);
}

.contact-secondary-btn {
  padding: 18px 40px;

  border-radius: 50px;

  border: 2px solid #fff;

  color: #fff;

  text-decoration: none;

  transition: 0.4s;
}

.contact-secondary-btn:hover {
  background: #fff;

  color: #000;
}

/* =========================================
FLOATING CIRCLES
========================================= */

.floating-circle {
  position: absolute;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(20px);

  animation: float 8s infinite ease-in-out;
}

.circle-1 {
  width: 180px;

  height: 180px;

  top: 10%;

  left: 5%;
}

.circle-2 {
  width: 140px;

  height: 140px;

  bottom: 15%;

  left: 10%;
}

.circle-3 {
  width: 220px;

  height: 220px;

  top: 20%;

  right: 5%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
CONTACT CARDS
========================================= */

.contact-cards-section {
  width: min(1200px, 92%);

  margin-top: -80px;

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 10;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(30px);

  border-radius: 30px;

  padding: 35px;

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(0, 180, 216, 0.25);
}

.contact-icon {
  width: 80px;

  height: 80px;

  border-radius: 50%;

  margin: auto;

  margin-bottom: 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 2rem;

  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;
}

.contact-card h3 {
  margin-bottom: 10px;

  color: #0f172a;
}

.contact-card p {
  color: #64748b;

  line-height: 1.8;
}

/* =========================================
CONTACT FORM SECTION
========================================= */

.contact-form-section {
  width: min(1300px, 92%);

  margin: 40px auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.contact-form-left {
  position: relative;
}

.section-tag {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(0, 180, 216, 0.12);

  color: #0077b6;

  font-weight: 600;

  margin-bottom: 20px;
}

.contact-form-left h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 25px;
}

.contact-form-left p {
  color: #64748b;

  line-height: 2;

  margin-bottom: 35px;
}

.contact-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.contact-features div {
  background: #fff;

  padding: 16px 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s;
}

.contact-features div:hover {
  transform: translateY(-5px);

  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;
}

/* =========================================
FORM CARD
========================================= */

.contact-form-right {
  position: relative;
}

.premium-contact-form {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 35px;

  padding: 40px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.premium-contact-form h3 {
  text-align: center;

  font-size: 2rem;

  color: #0f172a;

  margin-bottom: 30px;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

  margin-bottom: 20px;
}

.premium-contact-form input,
.premium-contact-form select,
.premium-contact-form textarea {
  width: 100%;

  border: none;

  outline: none;

  padding: 16px 18px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.9);

  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);

  font-family: inherit;

  transition: 0.3s;
}

.premium-contact-form input:focus,
.premium-contact-form select:focus,
.premium-contact-form textarea:focus {
  border: 1px solid #00b4d8;

  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}

.premium-contact-form textarea {
  resize: none;

  margin-bottom: 20px;
}

.submit-contact-btn {
  width: 100%;

  padding: 18px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;

  font-size: 1rem;

  font-weight: 700;

  cursor: pointer;

  transition: 0.4s;
}

.submit-contact-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.35);
}

/* =========================================
WHY TRUST US
========================================= */

.trust-section {
  padding: 35px 5%;

  background: linear-gradient(180deg, #16e7ff, #f8fbff);
}

.section-heading {
  text-align: center;

  margin-bottom: 60px;
}

.section-heading span {
  display: inline-block;

  color: #060606;

  font-weight: 600;

  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  color: #0f172a;
}

.trust-grid {
  width: min(1200px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.trust-card {
  background: #fff;

  padding: 35px;

  border-radius: 25px;

  text-align: center;

  font-size: 1.05rem;

  font-weight: 600;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.trust-card:hover {
  transform: translateY(-10px);

  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;
}

/* =========================================
FAQ SECTION
========================================= */

.faq-section {
  padding: 120px 5%;

  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.faq-container {
  width: min(950px, 100%);

  margin: auto;
}

.faq-item {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  margin-bottom: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;

  border: none;

  background: none;

  text-align: left;

  padding: 24px;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  position: relative;
}

.faq-question::after {
  content: "+";

  position: absolute;

  right: 24px;

  top: 50%;

  transform: translateY(-50%);

  font-size: 1.5rem;

  color: #00b4d8;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;

  padding: 0 24px;

  color: #64748b;

  line-height: 1.9;
}

.faq-item.active .faq-answer {
  max-height: 250px;

  padding-bottom: 24px;
}

/* =========================================
LUXURY CTA SECTION
========================================= */

.luxury-contact-cta {
  position: relative;

  overflow: hidden;

  padding: 120px 20px;

  text-align: center;

  background: linear-gradient(135deg, #081120, #0f172a);
}

.cta-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(0, 180, 216, 0.25),
    transparent 40%
  );
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 100%;

  margin: auto;
}

.cta-content h2 {
  color: #fff;

  font-size: clamp(2.5rem, 5vw, 4rem);

  margin-bottom: 20px;
}

.cta-content p {
  color: #cbd5e1;

  line-height: 1.9;

  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 18px 40px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.cta-buttons a:first-child {
  background: #89a2a7;
  color: #17598b;
}

.cta-buttons a:last-child {
  border: 2px solid #89a2a7;
  color: #17598b;
}

.cta-buttons a:hover {
  transform: translateY(-5px);
}

/* =========================================
FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float {
  position: fixed;

  bottom: 25px;

  right: 25px;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 2rem;

  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);

  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================
OCEAN WAVE DIVIDER
========================================= */

.contact-wave-divider {
  position: relative;

  height: 120px;

  overflow: hidden;

  background: #fff;
}

.contact-wave-divider svg {
  position: absolute;

  bottom: 0;

  width: 100%;

  height: 120px;
}

/* =========================================
SCROLL REVEAL ANIMATION
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(50px);

  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================
HOVER GLOW EFFECTS
========================================= */

.contact-card,
.trust-card,
.premium-contact-form {
  position: relative;

  overflow: hidden;
}

.contact-card::before,
.trust-card::before {
  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  background: rgba(0, 180, 216, 0.08);

  border-radius: 50%;

  top: -90px;

  right: -90px;
}

/* =========================================
ULTRA PREMIUM DARK SECTION EFFECT
========================================= */

.contact-dark-glow {
  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: rgba(0, 180, 216, 0.12);

  filter: blur(120px);
}

/* =========================================
ALL DEVICES RESPONSIVE
========================================= */

/* LARGE DESKTOP */

@media (max-width: 1400px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

/* LAPTOP */

@media (max-width: 1200px) {
  .contact-form-section {
    gap: 40px;
  }

  .contact-features {
    grid-template-columns: 1fr;
  }
}

/* TABLET */

@media (max-width: 992px) {
  .contact-form-section {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-form-left {
    text-align: center;
  }

  .contact-cards-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero {
    min-height: 90vh;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-hero {
    padding: 140px 20px 80px;
  }

  .contact-hero h1 {
    font-size: 2.7rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-cards-section {
    grid-template-columns: 1fr;

    margin-top: -40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .premium-contact-form {
    padding: 25px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.3rem;
  }

  .whatsapp-float {
    width: 58px;

    height: 58px;

    font-size: 1.7rem;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-primary-btn,
  .contact-secondary-btn {
    width: 100%;

    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
  }
}

/* 4K TV */

@media (min-width: 2200px) {
  .contact-hero-content {
    max-width: 1200px;
  }

  .contact-hero h1 {
    font-size: 6rem;
  }

  .contact-card {
    padding: 50px;
  }
}

/* =========================================
PREMIUM INTRO SECTION
========================================= */

.premium-intro {
  width: min(1400px, 92%);

  margin: 50px auto;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 70px;

  align-items: center;
}

.premium-tag {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(0, 180, 216, 0.12);

  color: #0077b6;

  font-weight: 600;

  margin-bottom: 20px;
}

.premium-intro-left h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.1;

  margin-bottom: 25px;

  color: #081120;
}

.premium-intro-left p {
  color: #64748b;

  line-height: 2;

  margin-bottom: 20px;
}

.premium-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 35px;
}

.premium-features div {
  background: #fff;

  padding: 15px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.premium-features div:hover {
  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;
}

.premium-buttons {
  display: flex;

  gap: 20px;

  margin-top: 35px;

  flex-wrap: wrap;
}

.premium-btn-primary {
  padding: 16px 34px;

  background: #00b4d8;

  color: #fff;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;
}

.premium-btn-secondary {
  padding: 16px 34px;

  border: 2px solid #0077b6;

  color: #0077b6;

  border-radius: 50px;

  text-decoration: none;
}

.premium-intro-right {
  position: relative;

  min-height: 650px;
}

.main-image img {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.floating-image {
  position: absolute;

  width: 220px;

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  animation: floatCard 6s ease-in-out infinite;
}

.floating-image img {
  width: 100%;

  display: block;
}

.floating-one {
  top: 40px;

  left: -60px;
}

.floating-two {
  bottom: 40px;

  right: -60px;
}

.experience-card {
  /* position:absolute;

bottom:140px;

left:-40px; */

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  padding: 25px 30px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.experience-card h3 {
  font-size: 2rem;

  color: #00b4d8;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  .premium-intro {
    grid-template-columns: 1fr;
  }

  .premium-intro-right {
    min-height: auto;
  }

  .main-image img {
    height: 500px;
  }

  .floating-one,
  .floating-two,
  .experience-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .premium-features {
    grid-template-columns: 1fr;
  }

  .premium-buttons {
    flex-direction: column;
  }

  .premium-btn-primary,
  .premium-btn-secondary {
    text-align: center;
  }
}

/* ====================
    Testing Packages
   ===================== */

/* =====================================
PACKAGES HERO
===================================== */

.pkg-hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  overflow: hidden;

  padding: 120px 20px;

  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.88), rgba(0, 119, 182, 0.88)),
    url("../image/packages-bg.jpg");

  background-size: cover;

  background-position: center;
}

.pkg-hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(8, 17, 32, 0.2),
    rgba(8, 17, 32, 0.8)
  );
}

.pkg-hero-content {
  position: relative;

  z-index: 5;

  max-width: 100%;

  margin-top: -11%;
}

.pkg-tag {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(15px);

  color: #fff;

  margin-bottom: 25px;
}

.pkg-hero h1 {
  color: #fff;

  font-size: clamp(2rem, 4vw, 3.5rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

.pkg-hero p {
  color: #f1f5f9;

  max-width: 760px;

  margin: auto;

  line-height: 2;

  margin-bottom: 40px;
}

.pkg-explore-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #fbbf24;

  color: #000;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.pkg-explore-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.35);
}

/* =====================================
SCROLL INDICATOR
===================================== */

.pkg-scroll-indicator {
  position: absolute;

  bottom: 115px;

  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  z-index: 5;

  text-align: center;
}

.pkg-scroll-arrow {
  font-size: 2rem;

  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* =====================================
FLOATING GLASS OBJECTS
===================================== */

.pkg-floating {
  position: absolute;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(15px);

  animation: floatGlass 8s infinite ease-in-out;
}

.pkg-float-1 {
  width: 180px;

  height: 180px;

  top: 10%;

  left: 5%;
}

.pkg-float-2 {
  width: 120px;

  height: 120px;

  right: 8%;

  top: 25%;
}

.pkg-float-3 {
  width: 220px;

  height: 220px;

  bottom: 10%;

  left: 15%;
}

@keyframes floatGlass {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* =====================================
CATEGORY SECTION
===================================== */

.pkg-categories {
  padding: 25px 5%;

  background: linear-gradient(180deg, #799ba3, #f8fbff);
}

.pkg-section-heading {
  text-align: center;

  margin-bottom: 60px;
}

.pkg-section-heading span {
  color: #00b4d8;

  font-weight: 600;
}

.pkg-section-heading h2 {
  margin-top: 12px;

  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #081120;
}

.pkg-category-grid {
  width: min(1400px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.pkg-category-card {
  background: #fff;

  padding: 40px 30px;

  border-radius: 30px;

  text-align: center;

  text-decoration: none;

  color: inherit;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
}

.pkg-category-card:hover {
  transform: translateY(-12px);

  background: linear-gradient(135deg, #00b4d8, #0077b6);

  color: #fff;
}

.pkg-category-icon {
  font-size: 2.5rem;

  margin-bottom: 20px;
}

.pkg-category-card h3 {
  margin-bottom: 15px;
}

.pkg-category-card p {
  line-height: 1.8;
}

/* MOBILE */

@media (max-width: 768px) {
  .pkg-hero h1 {
    font-size: 2.8rem;
  }

  .pkg-category-grid {
    grid-template-columns: 1fr;
  }
}

/* For all Colletion css */

/* =====================================
PACKAGE COLLECTIONS
===================================== */

.pkg-collection {
  padding: 36px 5%;
}

.pkg-collection-heading {
  text-align: center;

  max-width: 900px;

  margin: auto;

  margin-bottom: 60px;
}

.pkg-collection-heading span {
  color: #00b4d8;

  font-weight: 600;
}

.pkg-collection-heading h2 {
  margin-top: 12px;

  margin-bottom: 18px;

  font-size: clamp(2rem, 4vw, 3.2rem);

  color: #081120;
}

.pkg-collection-heading p {
  color: #64748b;

  line-height: 1.9;
}

.pkg-card-grid {
  width: min(1400px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 30px;
}

.pkg-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  min-height: 500px;

  text-decoration: none;

  display: block;
}

.pkg-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s;
}

.pkg-card:hover img {
  transform: scale(1.1);
}

.pkg-card-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 35px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}

.pkg-card-overlay h3 {
  color: #fff;

  margin-bottom: 15px;

  font-size: 1.5rem;
}

.pkg-card-overlay p {
  color: #e2e8f0;

  line-height: 1.8;

  margin-bottom: 20px;
}

.pkg-card-overlay span {
  color: #fbbf24;

  font-weight: 600;
}

.pkg-card:hover {
  transform: translateY(-8px);
}

/* MOBILE */

@media (max-width: 768px) {
  .pkg-card-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card {
    min-height: 420px;
  }
}

/* DARK ADVENTURE SECTION */

.pkg-dark-section {
  background: linear-gradient(180deg, #081120, #0f172a);
}

.pkg-dark-section .pkg-collection-heading h2,
.pkg-dark-section .pkg-collection-heading p {
  color: #fff;
}

/* CTA */

.pkg-luxury-cta {
  padding: 120px 20px;

  text-align: center;

  background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.pkg-cta-content {
  max-width: 900px;

  margin: auto;
}

.pkg-cta-content span {
  color: #fff;

  font-weight: 600;
}

.pkg-cta-content h2 {
  color: #fff;

  font-size: clamp(2.5rem, 5vw, 4rem);

  margin: 20px 0;
}

.pkg-cta-content p {
  color: #f8fafc;

  line-height: 1.9;

  margin-bottom: 35px;
}

.pkg-cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.pkg-cta-primary {
  padding: 18px 38px;

  background: #fff;

  color: #0077b6;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;
}

.pkg-cta-secondary {
  padding: 18px 38px;

  border: 2px solid #fff;

  color: #fff;

  border-radius: 50px;

  text-decoration: none;
}

@media (max-width: 768px) {
  .pkg-cta-buttons {
    flex-direction: column;
  }

  .pkg-cta-primary,
  .pkg-cta-secondary {
    width: 100%;

    text-align: center;
  }
}

/* =====================================
SIGHTSEEING HERO
===================================== */

.wsv-hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  overflow: hidden;

  padding: 120px 20px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url("../image/seightseing-banner.png");

  background-size: cover;

  background-position: center;
}

.wsv-hero-content {
  position: relative;

  z-index: 5;

  max-width: 100%;
}

.wsv-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  color: #fff;

  margin-bottom: 25px;
}

.wsv-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);

  color: #fff;

  line-height: 1.1;

  margin-bottom: 25px;
}

.wsv-hero p {
  color: #f1f5f9;

  line-height: 2;

  max-width: 800px;

  margin: auto;
}

.wsv-scroll-indicator {
  position: absolute;

  bottom: 60px;

  left: 50%;

  transform: translateX(-50%);

  color: white;

  text-align: center;
}

.wsv-arrow {
  font-size: 2rem;

  animation: wsvBounce 2s infinite;
}

@keyframes wsvBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* =====================================
ATTRACTION SECTION
===================================== */

.wsv-attraction {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  padding: 100px 7%;
}

.wsv-radhanagar {
  background: #eefbff;
}

.wsv-location {
  display: inline-block;

  color: #0077b6;

  font-weight: 600;

  margin-bottom: 15px;
}

.wsv-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #081120;

  margin-bottom: 20px;
}

.wsv-content p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

.wsv-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 30px;
}

.wsv-highlights div {
  background: white;

  padding: 15px;

  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.wsv-image {
  position: relative;
}

.wsv-image img {
  width: 100%;

  height: 550px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

  transition: 0.5s;
}

.wsv-image img:hover {
  transform: scale(1.03);
}

/* =====================================
RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .wsv-attraction {
    grid-template-columns: 1fr;

    gap: 40px;
  }
}

@media (max-width: 768px) {
  .wsv-highlights {
    grid-template-columns: 1fr;
  }

  .wsv-image img {
    height: 350px;
  }

  .wsv-attraction {
    padding: 70px 5%;
  }
}

/* =====================================
CELLULAR JAIL PREMIUM SECTION
Unique Classes - No Conflict
===================================== */

.cjx-section {
  position: relative;

  padding: 80px 6%;

  background: linear-gradient(135deg, #fffaf4, #fffdf9);

  overflow: hidden;
}

/* FLOATING DECORATION */

.cjx-floating-shape {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  top: -120px;

  right: -120px;

  background: radial-gradient(rgba(201, 166, 107, 0.18), transparent);

  animation: cjxFloat 8s ease-in-out infinite;
}

@keyframes cjxFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* MAIN CONTAINER */

.cjx-container {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;

  position: relative;

  z-index: 2;
}

/* IMAGE SIDE */

.cjx-image-wrapper {
  position: relative;
}

.cjx-image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(201, 166, 107, 0.4);

  border-radius: 30px;

  top: 20px;

  left: 20px;
}

.cjx-image {
  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  position: relative;

  z-index: 2;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.cjx-image:hover {
  transform: scale(1.03);
}

/* CONTENT SIDE */

.cjx-content {
  padding: 10px;
}

.cjx-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(201, 166, 107, 0.12);

  color: #8a5c00;

  font-weight: 600;

  margin-bottom: 20px;
}

.cjx-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);

  color: #111827;

  margin-bottom: 15px;

  font-weight: 700;
}

/* DIVIDER */

.cjx-divider {
  width: 90px;

  height: 4px;

  background: linear-gradient(90deg, #c9a66b, #f4d28d);

  border-radius: 20px;

  margin-bottom: 25px;
}

/* PARAGRAPHS */

.cjx-content p {
  color: #4b5563;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* HIGHLIGHTS */

.cjx-highlights {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.cjx-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  color: #374151;

  transition: 0.35s ease;
}

.cjx-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.cjx-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #fff, #fff8ef);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cjx-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .cjx-image {
    height: 420px;
  }

  .cjx-image-border {
    display: none;
  }
}

@media (max-width: 768px) {
  .cjx-section {
    padding: 60px 5%;
  }

  .cjx-highlights {
    grid-template-columns: 1fr;
  }

  .cjx-image {
    height: 320px;
  }

  .cjx-content h2 {
    text-align: left;
  }
}

/* Rose Island*/

/* ==========================================
ROSS ISLAND PREMIUM SECTION
========================================== */

.rix-premium-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f4fff7, #fcfffd);

  margin-bottom: 35px;
}

/* FLOATING SHAPES */

.rix-floating-circle {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(34, 197, 94, 0.15), transparent);

  top: -120px;

  left: -120px;

  animation: rixFloat 10s ease-in-out infinite;
}

.rix-floating-circle-two {
  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: radial-gradient(rgba(22, 163, 74, 0.12), transparent);

  bottom: -100px;

  right: -100px;

  animation: rixFloatReverse 12s ease-in-out infinite;
}

@keyframes rixFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes rixFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* MAIN GRID */

.rix-premium-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* IMAGE SIDE */

.rix-premium-image-wrap {
  position: relative;
}

.rix-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(34, 197, 94, 0.35);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.rix-premium-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.rix-premium-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.rix-premium-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(34, 197, 94, 0.12);

  color: #166534;

  font-weight: 600;

  margin-bottom: 18px;
}

.rix-premium-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #111827;

  margin-bottom: 15px;

  line-height: 1.2;
}

/* DIVIDER */

.rix-premium-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #16a34a, #4ade80);

  margin-bottom: 25px;
}

/* TEXT */

.rix-premium-content p {
  color: #4b5563;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURE CARDS */

.rix-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.rix-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  color: #374151;

  transition: 0.35s ease;
}

.rix-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.rix-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .rix-premium-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .rix-premium-image {
    height: 420px;
  }

  .rix-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .rix-premium-section {
    padding: 60px 5%;
  }

  .rix-feature-grid {
    grid-template-columns: 1fr;
  }

  .rix-premium-image {
    height: 320px;
  }
}

/* North bay Island  */

.nbx-section {
  padding: 70px 6%;

  background: linear-gradient(135deg, #effcff, #f8ffff);
}

.nbx-container {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.nbx-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: #cffafe;

  color: #0f766e;

  font-weight: 600;

  margin-bottom: 20px;
}

.nbx-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);

  margin-bottom: 15px;
}

.nbx-divider {
  width: 90px;

  height: 4px;

  background: #06b6d4;

  margin-bottom: 25px;

  border-radius: 20px;
}

.nbx-image {
  width: 100%;

  height: 550px;

  border-radius: 30px;

  object-fit: cover;

  transition: 0.5s;
}

.nbx-image:hover {
  transform: scale(1.03);
}

.nbx-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 25px;
}

.nbx-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Section Divider */

.wsv-wave-divider {
  width: 100%;

  height: 40px;

  overflow: hidden;

  line-height: 0;
}

.wsv-wave-divider svg {
  width: 100%;

  height: 100%;
}

/* Elephant Beach */

/* ====================================
ELEPHANT BEACH
==================================== */

.ebx-section {
  padding: 70px 6%;

  background: linear-gradient(135deg, #fff7ed, #fffaf5);

  position: relative;

  overflow: hidden;

  margin-bottom: 35px;
}

.ebx-floating {
  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: radial-gradient(rgba(249, 115, 22, 0.18), transparent);

  top: -100px;

  right: -100px;
}

.ebx-container {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.ebx-image {
  width: 100%;

  height: 550px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);

  transition: 0.5s;
}

.ebx-image:hover {
  transform: scale(1.03);
}

.ebx-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: #ffedd5;

  color: #c2410c;

  margin-bottom: 20px;

  font-weight: 600;
}

.ebx-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  margin-bottom: 15px;
}

.ebx-divider {
  width: 90px;

  height: 4px;

  background: #f97316;

  border-radius: 20px;

  margin-bottom: 25px;
}

.ebx-content p {
  line-height: 1.9;

  color: #475569;

  margin-bottom: 18px;
}

.ebx-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 25px;
}

.ebx-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s;
}

.ebx-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .ebx-container {
    grid-template-columns: 1fr;
  }

  .ebx-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .ebx-highlights {
    grid-template-columns: 1fr;
  }

  .ebx-image {
    height: 320px;
  }
}

/* ====================================
CHIDIYA TAPU
==================================== */

.ctx-section {
  padding: 70px 6%;

  background: linear-gradient(135deg, #f0fdf4, #fcfffd);

  margin-bottom: 35px;
}

.ctx-container {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.ctx-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: #dcfce7;

  color: #166534;

  font-weight: 600;

  margin-bottom: 20px;
}

.ctx-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  margin-bottom: 15px;
}

.ctx-divider {
  width: 90px;

  height: 4px;

  background: #16a34a;

  margin-bottom: 25px;

  border-radius: 20px;
}

.ctx-content p {
  line-height: 1.9;

  color: #475569;

  margin-bottom: 18px;
}

.ctx-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.ctx-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.ctx-image {
  width: 100%;

  height: 550px;

  object-fit: cover;

  border-radius: 30px;
}

/* ==========================================
BARATANG ISLAND PREMIUM
========================================== */

.bix-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f0fdf4, #ffffff);

  margin-bottom: 35px;
}

/* FLOATING JUNGLE EFFECTS */

.bix-jungle-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(22, 163, 74, 0.18), transparent);

  top: -120px;

  left: -120px;

  animation: bixFloat 10s ease-in-out infinite;
}

.bix-river-glow {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.12), transparent);

  bottom: -120px;

  right: -120px;

  animation: bixFloatReverse 12s ease-in-out infinite;
}

@keyframes bixFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes bixFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.bix-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* CONTENT */

.bix-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(22, 163, 74, 0.12);

  color: #166534;

  font-weight: 600;

  margin-bottom: 18px;
}

.bix-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #111827;

  margin-bottom: 15px;
}

.bix-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #16a34a, #22c55e);

  margin-bottom: 25px;
}

.bix-content p {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURES */

.bix-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.bix-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  transition: 0.35s;
}

.bix-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.bix-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

/* IMAGE */

.bix-image-wrap {
  position: relative;
}

.bix-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(22, 163, 74, 0.25);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.bix-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.bix-image:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .bix-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .bix-image {
    height: 420px;
  }

  .bix-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .bix-section {
    padding: 60px 5%;
  }

  .bix-feature-grid {
    grid-template-columns: 1fr;
  }

  .bix-image {
    height: 320px;
  }
}

/* ==========================================
CORBYN'S COVE PREMIUM
========================================== */

.ccp-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #eff8ff, #ffffff);

  margin-bottom: 35px;
}

/* FLOATING OCEAN EFFECTS */

.ccp-ocean-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.18), transparent);

  top: -120px;

  right: -120px;

  animation: ccpFloat 10s ease-in-out infinite;
}

.ccp-palm-glow {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.12), transparent);

  bottom: -120px;

  left: -120px;

  animation: ccpFloatReverse 12s ease-in-out infinite;
}

@keyframes ccpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes ccpFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.ccp-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* IMAGE */

.ccp-image-wrap {
  position: relative;
}

.ccp-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(14, 165, 233, 0.25);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.ccp-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.ccp-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.ccp-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0369a1;

  font-weight: 600;

  margin-bottom: 18px;
}

.ccp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.ccp-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #0284c7, #38bdf8);

  margin-bottom: 25px;
}

.ccp-content p {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURE CARDS */

.ccp-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.ccp-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.35s ease;

  font-weight: 600;
}

.ccp-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.ccp-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #e0f2fe);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .ccp-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .ccp-image {
    height: 420px;
  }

  .ccp-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .ccp-section {
    padding: 60px 5%;
  }

  .ccp-feature-grid {
    grid-template-columns: 1fr;
  }

  .ccp-image {
    height: 320px;
  }
}

/* ==========================================
BHARATPUR BEACH PREMIUM
========================================== */

.bbp-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #eefcff, #ffffff);

  margin-bottom: 35px;
}

/* FLOATING WATER EFFECTS */

.bbp-water-bubble {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(56, 189, 248, 0.18), transparent);

  top: -120px;

  right: -120px;

  animation: bbpFloat 10s ease-in-out infinite;
}

.bbp-water-bubble-two {
  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: radial-gradient(rgba(34, 211, 238, 0.15), transparent);

  bottom: -80px;

  left: -80px;

  animation: bbpFloatReverse 12s ease-in-out infinite;
}

@keyframes bbpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes bbpFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.bbp-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* IMAGE */

.bbp-image-wrap {
  position: relative;
}

.bbp-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(14, 165, 233, 0.35);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.bbp-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.bbp-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.bbp-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0369a1;

  font-weight: 600;

  margin-bottom: 18px;
}

.bbp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #0f172a;

  margin-bottom: 15px;
}

/* DIVIDER */

.bbp-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #0ea5e9, #38bdf8);

  margin-bottom: 25px;
}

/* TEXT */

.bbp-content p {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURE CARDS */

.bbp-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.bbp-feature-card {
  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(15px);

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.35s ease;

  font-weight: 600;
}

.bbp-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.bbp-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #ecfeff);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .bbp-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .bbp-image {
    height: 420px;
  }

  .bbp-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .bbp-section {
    padding: 60px 5%;
  }

  .bbp-feature-grid {
    grid-template-columns: 1fr;
  }

  .bbp-image {
    height: 320px;
  }
}

/* ==========================================
LAXMANPUR BEACH PREMIUM
========================================== */

.lxp-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #faf5ff, #ffffff);

  margin-bottom: 35px;
}

/* SUNSET GLOW */

.lxp-sunset-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(168, 85, 247, 0.18), transparent);

  top: -120px;

  left: -120px;

  animation: lxpFloat 10s ease-in-out infinite;
}

.lxp-sunset-glow-two {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(251, 146, 60, 0.18), transparent);

  bottom: -100px;

  right: -100px;

  animation: lxpFloatReverse 12s ease-in-out infinite;
}

@keyframes lxpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes lxpFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.lxp-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* CONTENT */

.lxp-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(168, 85, 247, 0.12);

  color: #7e22ce;

  font-weight: 600;

  margin-bottom: 18px;
}

.lxp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #111827;

  margin-bottom: 15px;
}

.lxp-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #9333ea, #fb923c);

  margin-bottom: 25px;
}

.lxp-content p {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURES */

.lxp-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.lxp-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  transition: 0.35s ease;
}

.lxp-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.lxp-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #faf5ff);
}

/* IMAGE */

.lxp-image-wrap {
  position: relative;
}

.lxp-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(168, 85, 247, 0.35);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.lxp-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.lxp-image:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .lxp-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .lxp-image {
    height: 420px;
  }

  .lxp-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .lxp-section {
    padding: 60px 5%;
  }

  .lxp-feature-grid {
    grid-template-columns: 1fr;
  }

  .lxp-image {
    height: 320px;
  }
}

/* ==========================================
LIMESTONE CAVES PREMIUM
========================================== */

.lcp-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f8fafc, #ffffff);

  margin-bottom: 35px;
}

/* FLOATING ROCK SHAPES */

.lcp-rock-shape {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(100, 116, 139, 0.15), transparent);

  top: -120px;

  right: -120px;

  animation: lcpFloat 12s ease-in-out infinite;
}

.lcp-rock-shape-two {
  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: radial-gradient(rgba(71, 85, 105, 0.12), transparent);

  bottom: -100px;

  left: -100px;

  animation: lcpFloatReverse 14s ease-in-out infinite;
}

@keyframes lcpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes lcpFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.lcp-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* IMAGE */

.lcp-image-wrap {
  position: relative;
}

.lcp-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(100, 116, 139, 0.3);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.lcp-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.lcp-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.lcp-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(100, 116, 139, 0.1);

  color: #475569;

  font-weight: 600;

  margin-bottom: 18px;
}

.lcp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.lcp-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #64748b, #94a3b8);

  margin-bottom: 25px;
}

.lcp-content p {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;
}

/* FEATURES */

.lcp-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.lcp-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  transition: 0.35s ease;
}

.lcp-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.lcp-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .lcp-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .lcp-image {
    height: 420px;
  }

  .lcp-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .lcp-section {
    padding: 60px 5%;
  }

  .lcp-feature-grid {
    grid-template-columns: 1fr;
  }

  .lcp-image {
    height: 320px;
  }
}

/* ==========================================
MUD VOLCANO PREMIUM
========================================== */

.mvp-section {
  position: relative;

  padding: 80px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #fefce8, #fffdf5);

  margin-bottom: 35px;
}

/* FLOATING EARTH EFFECTS */

.mvp-lava-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(217, 119, 6, 0.18), transparent);

  top: -120px;

  left: -120px;

  animation: mvpFloat 10s ease-in-out infinite;
}

.mvp-earth-circle {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(120, 53, 15, 0.12), transparent);

  bottom: -120px;

  right: -120px;

  animation: mvpFloatReverse 12s ease-in-out infinite;
}

@keyframes mvpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes mvpFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.mvp-container {
  position: relative;

  z-index: 5;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 55px;

  align-items: center;
}

/* CONTENT */

.mvp-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(217, 119, 6, 0.12);

  color: #92400e;

  font-weight: 600;

  margin-bottom: 18px;
}

.mvp-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);

  color: #111827;

  margin-bottom: 15px;
}

.mvp-divider {
  width: 90px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #d97706, #f59e0b);

  margin-bottom: 25px;
}

.mvp-content p {
  color: #57534e;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 16px;
}

/* FEATURES */

.mvp-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;
}

.mvp-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.35s;

  font-weight: 600;
}

.mvp-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.mvp-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #fef3c7);
}

/* IMAGE */

.mvp-image-wrap {
  position: relative;
}

.mvp-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(217, 119, 6, 0.25);

  border-radius: 30px;

  top: 18px;

  left: 18px;
}

.mvp-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.5s ease;
}

.mvp-image:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mvp-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .mvp-image {
    height: 420px;
  }

  .mvp-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .mvp-section {
    padding: 60px 5%;
  }

  .mvp-feature-grid {
    grid-template-columns: 1fr;
  }

  .mvp-image {
    height: 320px;
  }
}

/* ====================================
PREMIUM INQUIRY SECTION
==================================== */

.sxp-inquiry-zone {
  position: relative;

  padding: 90px 20px;

  overflow: hidden;

  background: linear-gradient(135deg, #081120, #102a43);

  text-align: center;
}

.sxp-glow-left {
  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(0, 180, 216, 0.18);

  filter: blur(100px);

  left: -150px;

  top: -150px;
}

.sxp-glow-right {
  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(251, 191, 36, 0.15);

  filter: blur(100px);

  right: -150px;

  bottom: -150px;
}

.sxp-inquiry-wrap {
  position: relative;

  z-index: 5;

  max-width: 950px;

  margin: auto;
}

.sxp-mini-tag {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  color: white;

  margin-bottom: 20px;
}

.sxp-inquiry-wrap h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  color: white;

  margin-bottom: 20px;

  line-height: 1.2;
}

.sxp-inquiry-wrap p {
  color: #cbd5e1;

  line-height: 2;

  max-width: 800px;

  margin: auto;

  margin-bottom: 35px;
}

.sxp-action-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.sxp-plan-trip-btn {
  padding: 18px 40px;

  background: #fbbf24;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.sxp-plan-trip-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.sxp-call-trip-btn {
  padding: 18px 40px;

  border: 2px solid white;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.sxp-call-trip-btn:hover {
  background: white;

  color: #081120;
}

/* ====================================
LUXURY ENDING SECTION
==================================== */

.sxp-luxury-ending {
  padding: 90px 20px;

  background: linear-gradient(180deg, #f8fbff, #ffffff);

  text-align: center;
}

.sxp-ending-content {
  max-width: 900px;

  margin: auto;
}

.sxp-ending-content span {
  color: #00b4d8;

  font-weight: 600;

  letter-spacing: 2px;
}

.sxp-ending-content h2 {
  margin-top: 15px;

  margin-bottom: 20px;

  font-size: clamp(2rem, 4vw, 3rem);

  color: #081120;

  line-height: 1.3;
}

.sxp-ending-content p {
  color: #64748b;

  line-height: 2;
}

/* ====================================
FLOATING BUTTONS
==================================== */

.sxp-floating-contact {
  position: fixed;

  right: 20px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  z-index: 9999;
}

.sxp-whatsapp-float,
.sxp-call-float {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

  transition: 0.4s;
}

.sxp-whatsapp-float {
  background: #25d366;
}

.sxp-whatsapp-float img {
  width: 34px;

  height: 34px;
}

.sxp-call-float {
  background: #0077b6;

  color: white;

  font-size: 28px;
}

.sxp-whatsapp-float:hover,
.sxp-call-float:hover {
  transform: translateY(-6px) scale(1.05);
}

/* ====================================
MOBILE
==================================== */

@media (max-width: 768px) {
  .sxp-action-buttons {
    flex-direction: column;
  }

  .sxp-plan-trip-btn,
  .sxp-call-trip-btn {
    width: 100%;
  }

  .sxp-whatsapp-float,
  .sxp-call-float {
    width: 58px;

    height: 58px;
  }
}

/* ===================================
ISLAND TOUR HERO
=================================== */

.ito-hero-zone {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  background: linear-gradient(180deg, #031525, #073b66, #0ea5e9);
}

/* OCEAN */

.ito-ocean-layer {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 200%;

  height: 180px;

  background: url("image/wave.svg");

  background-repeat: repeat-x;

  animation: itoWaveMove 20s linear infinite;
}

@keyframes itoWaveMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* FLOATING ISLANDS */

.ito-floating-island {
  position: absolute;

  border-radius: 50%;

  filter: blur(2px);
}

.ito-island-one {
  width: 180px;

  height: 180px;

  background: radial-gradient(#22c55e, #15803d);

  top: 15%;

  left: 10%;

  animation: itoFloat 7s ease-in-out infinite;
}

.ito-island-two {
  width: 140px;

  height: 140px;

  background: radial-gradient(#38bdf8, #0284c7);

  right: 10%;

  top: 20%;

  animation: itoFloat 9s ease-in-out infinite;
}

.ito-island-three {
  width: 120px;

  height: 120px;

  background: radial-gradient(#facc15, #f59e0b);

  bottom: 25%;

  left: 18%;

  animation: itoFloat 11s ease-in-out infinite;
}

@keyframes itoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* CLOUDS */

.ito-cloud {
  position: absolute;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  border-radius: 100px;
}

.ito-cloud-one {
  width: 250px;

  height: 80px;

  top: 18%;

  right: 25%;

  animation: itoCloudMove 30s linear infinite;
}

.ito-cloud-two {
  width: 200px;

  height: 70px;

  top: 35%;

  left: 20%;

  animation: itoCloudMove 40s linear infinite;
}

@keyframes itoCloudMove {
  from {
    transform: translateX(-80px);
  }

  to {
    transform: translateX(80px);
  }
}

/* CONTENT */

.ito-hero-content {
  position: relative;

  z-index: 5;

  max-width: 100%;

  padding: 50px;

  border-radius: 35px;

  margin-top: -9%;
}

.ito-badge {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  color: white;

  margin-bottom: 15%;
}

.ito-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);

  color: white;

  line-height: 1.1;

  margin-bottom: 25px;
  margin-top: -14%;
}

.ito-hero-content p {
  color: #dbeafe;

  line-height: 2;

  margin-bottom: 35px;
}

.ito-explore-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #fbbf24;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.ito-explore-btn:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
}

/* SCROLL */

.ito-scroll-down {
  position: absolute;

  bottom: 133px;

  color: white;

  font-size: 2rem;

  animation: itoBounce 2s infinite;
}

@keyframes itoBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}
/* ====================================
   ISLAND SHOWCASE
==================================== */

.ito-showcase-zone {
  padding: 45px 2%;
  background: linear-gradient(180deg, #031525, #071d35);
}

/* HEADING */

.ito-section-heading {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 70px;
}

.ito-heading-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  margin-bottom: 20px;
}

.ito-section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 20px;
}

.ito-section-heading p {
  color: #cbd5e1;
  line-height: 2;
}

/* ====================================
   GRID - UPDATED FOR HORIZONTAL SCROLL
   ==================================== */

.ito-tour-grid {
  display: flex;
  gap: 35px;

  /* FIX: Changed max-width to 100% so it uses all available screen space */
  max-width: 100%;
  margin: auto;

  overflow-x: auto;
  padding-bottom: 20px;

  scroll-snap-type: x mandatory;
  /* FIX: Adjusted scroll padding to match the new container padding */
  scroll-padding-left: 2%;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.ito-tour-grid::-webkit-scrollbar {
  display: none;
}

/* ====================================
   CARD - UPDATED
   ==================================== */

.ito-tour-card {
  /* Prevent cards from shrinking and lock their width */
  flex: 0 0 320px;

  /* Snap each card to the start of the container */
  scroll-snap-align: start;

  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  transition: 0.5s ease;
}

.ito-tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.ito-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.ito-card-overlay span {
  color: #fbbf24;
  margin-bottom: 12px;
  font-weight: 600;
}

.ito-card-overlay h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}

.ito-card-overlay p {
  color: #dbeafe;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ito-card-btn {
  display: inline-block;
  color: white;
  font-weight: 700;
}

/* HOVER */

.ito-tour-card:hover {
  transform: translateY(-15px);
}

.ito-tour-card:hover img {
  transform: scale(1.12);
}

/* INDIVIDUAL THEMES */

.ito-theme-havelock {
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
}

.ito-theme-neil {
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
}

.ito-theme-ross {
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.15);
}

.ito-theme-baratang {
  box-shadow: 0 25px 50px rgba(217, 119, 6, 0.15);
}

.ito-theme-northbay {
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
}

/* MOBILE */

@media (max-width: 768px) {
  .ito-showcase-zone {
    padding: 80px 5%;
  }

  .ito-tour-card {
    height: 420px;
  }
}
/* =====================================
HAVELOCK ISLAND PREMIUM
===================================== */

.hvi-luxury-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #ecfeff, #ffffff);
}

/* GLOW ORBS */

.hvi-glow-orb-one {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.18), transparent);

  top: -100px;

  left: -120px;

  animation: hviFloat 10s ease-in-out infinite;
}

.hvi-glow-orb-two {
  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.15), transparent);

  right: -100px;

  bottom: -100px;

  animation: hviFloatReverse 12s ease-in-out infinite;
}

@keyframes hviFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes hviFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.hvi-main-wrapper {
  position: relative;

  z-index: 5;

  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* IMAGE */

.hvi-image-zone {
  position: relative;
}

.hvi-image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(14, 165, 233, 0.25);

  border-radius: 35px;

  top: 18px;

  left: 18px;
}

.hvi-main-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 760px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  transition: 0.6s ease;
}

.hvi-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.hvi-premium-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0369a1;

  font-weight: 600;

  margin-bottom: 20px;
}

.hvi-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.hvi-divider-line {
  width: 100px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #0ea5e9, #22d3ee);

  margin-bottom: 25px;
}

.hvi-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

/* FEATURES */

.hvi-highlight-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;

  margin-bottom: 35px;
}

.hvi-highlight-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  font-weight: 600;

  transition: 0.4s;
}

.hvi-highlight-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.hvi-highlight-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* BUTTON */

.hvi-tour-button {
  display: inline-block;

  padding: 18px 40px;

  background: #0ea5e9;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.hvi-tour-button:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.25);
}

/* MOBILE */

@media (max-width: 992px) {
  .hvi-main-wrapper {
    grid-template-columns: 1fr;
  }

  .hvi-main-image {
    height: 450px;
  }

  .hvi-image-border {
    display: none;
  }
}

@media (max-width: 768px) {
  .hvi-highlight-grid {
    grid-template-columns: 1fr;
  }

  .hvi-main-image {
    height: 320px;
  }

  .hvi-luxury-section {
    padding: 80px 5%;
  }
}

/* ======================================
NEIL ISLAND PREMIUM
====================================== */

.nlx-romance-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #faf5ff, #ffffff);
}

/* GLOW EFFECTS */

.nlx-purple-orb {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(168, 85, 247, 0.18), transparent);

  top: -120px;

  left: -120px;

  animation: nlxFloat 10s ease-in-out infinite;
}

.nlx-pink-orb {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(236, 72, 153, 0.15), transparent);

  bottom: -120px;

  right: -120px;

  animation: nlxFloatReverse 12s ease-in-out infinite;
}

@keyframes nlxFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes nlxFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.nlx-wrapper {
  position: relative;

  z-index: 5;

  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* CONTENT */

.nlx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(168, 85, 247, 0.12);

  color: #7e22ce;

  font-weight: 600;

  margin-bottom: 20px;
}

.nlx-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #111827;

  margin-bottom: 15px;
}

.nlx-divider {
  width: 100px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #9333ea, #ec4899);

  margin-bottom: 25px;
}

.nlx-content p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

/* FEATURES */

.nlx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;

  margin-bottom: 35px;
}

.nlx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  font-weight: 600;
}

.nlx-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.nlx-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  background: linear-gradient(135deg, #ffffff, #fdf4ff);
}

/* IMAGE */

.nlx-image-zone {
  position: relative;
}

.nlx-image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(168, 85, 247, 0.25);

  border-radius: 35px;

  top: 18px;

  left: 18px;
}

.nlx-main-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  transition: 0.5s;
}

.nlx-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.nlx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #9333ea;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.nlx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.25);
}

/* MOBILE */

@media (max-width: 992px) {
  .nlx-wrapper {
    grid-template-columns: 1fr;
  }

  .nlx-main-image {
    height: 450px;
  }

  .nlx-image-border {
    display: none;
  }
}

@media (max-width: 768px) {
  .nlx-feature-grid {
    grid-template-columns: 1fr;
  }

  .nlx-main-image {
    height: 320px;
  }

  .nlx-romance-section {
    padding: 80px 5%;
  }
}

/* ====================================
ROSS ISLAND TOUR
==================================== */

.rti-heritage-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f8faf5, #ffffff);
}

/* GLOWS */

.rti-gold-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(245, 158, 11, 0.15), transparent);

  top: -100px;

  right: -100px;

  animation: rtiFloat 10s ease-in-out infinite;
}

.rti-green-glow {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(22, 163, 74, 0.12), transparent);

  bottom: -100px;

  left: -100px;

  animation: rtiFloatReverse 12s ease-in-out infinite;
}

@keyframes rtiFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
}

@keyframes rtiFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.rti-wrapper {
  position: relative;

  z-index: 5;

  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* IMAGE */

.rti-image-zone {
  position: relative;
}

.rti-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(22, 163, 74, 0.2);

  border-radius: 35px;

  top: 18px;

  left: 18px;
}

.rti-main-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 742px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  transition: 0.5s;
}

.rti-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.rti-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(22, 163, 74, 0.1);

  color: #166534;

  font-weight: 600;

  margin-bottom: 20px;
}

.rti-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #111827;

  margin-bottom: 15px;
}

.rti-divider {
  width: 100px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #16a34a, #f59e0b);

  margin-bottom: 25px;
}

.rti-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

/* FEATURES */

.rti-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;

  margin-bottom: 35px;
}

.rti-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  font-weight: 600;
}

.rti-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.rti-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

/* BUTTON */

.rti-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #166534;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.rti-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.25);
}

/* MOBILE */

@media (max-width: 992px) {
  .rti-wrapper {
    grid-template-columns: 1fr;
  }

  .rti-main-image {
    height: 450px;
  }

  .rti-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .rti-feature-grid {
    grid-template-columns: 1fr;
  }

  .rti-main-image {
    height: 320px;
  }

  .rti-heritage-section {
    padding: 80px 5%;
  }
}

/* ==========================================
BARATANG EXPEDITION TOUR
========================================== */

.blt-expedition-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

/* FLOATING EFFECTS */

.blt-jungle-orb {
  position: absolute;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(rgba(34, 197, 94, 0.18), transparent);

  top: -120px;

  left: -120px;

  animation: bltFloat 10s ease-in-out infinite;
}

.blt-cave-orb {
  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: radial-gradient(rgba(132, 204, 22, 0.12), transparent);

  right: -100px;

  bottom: -100px;

  animation: bltFloatReverse 12s ease-in-out infinite;
}

@keyframes bltFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes bltFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* GRID */

.blt-wrapper {
  position: relative;

  z-index: 5;

  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* CONTENT */

.blt-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(34, 197, 94, 0.12);

  color: #166534;

  font-weight: 600;

  margin-bottom: 20px;
}

.blt-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #111827;

  margin-bottom: 15px;
}

.blt-divider {
  width: 100px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #22c55e, #84cc16);

  margin-bottom: 25px;
}

.blt-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

/* FEATURES */

.blt-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;

  margin-bottom: 35px;
}

.blt-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  font-weight: 600;
}

.blt-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.blt-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #ecfccb);
}

/* IMAGE */

.blt-image-zone {
  position: relative;
}

.blt-image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(34, 197, 94, 0.2);

  border-radius: 35px;

  top: 18px;

  left: 18px;
}

.blt-main-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 777px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  transition: 0.5s;
}

.blt-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.blt-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #22c55e;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.blt-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .blt-wrapper {
    grid-template-columns: 1fr;
  }

  .blt-main-image {
    height: 450px;
  }

  .blt-image-border {
    display: none;
  }
}

@media (max-width: 768px) {
  .blt-feature-grid {
    grid-template-columns: 1fr;
  }

  .blt-main-image {
    height: 320px;
  }

  .blt-expedition-section {
    padding: 80px 5%;
  }
}

/* ==========================================
NORTH BAY ISLAND TOUR
========================================== */

.nbi-aqua-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #ecfeff, #ffffff);
}

/* FLOATING BUBBLES */

.nbi-bubble-one {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.18), transparent);

  top: -100px;

  left: -100px;

  animation: nbiFloat 9s ease-in-out infinite;
}

.nbi-bubble-two {
  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.15), transparent);

  right: -80px;

  top: 30%;

  animation: nbiFloatReverse 11s ease-in-out infinite;
}

.nbi-bubble-three {
  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: radial-gradient(rgba(34, 211, 238, 0.14), transparent);

  bottom: -80px;

  left: 30%;

  animation: nbiFloat 13s ease-in-out infinite;
}

@keyframes nbiFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes nbiFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

/* GRID */

.nbi-wrapper {
  position: relative;

  z-index: 5;

  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* IMAGE */

.nbi-image-zone {
  position: relative;
}

.nbi-image-frame {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(6, 182, 212, 0.25);

  border-radius: 35px;

  top: 18px;

  left: 18px;
}

.nbi-main-image {
  position: relative;

  z-index: 2;

  width: 100%;

  /* height:650px; */

  object-fit: cover;

  border-radius: 35px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  transition: 0.5s;
}

.nbi-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.nbi-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(6, 182, 212, 0.12);

  color: #0891b2;

  font-weight: 600;

  margin-bottom: 20px;
}

.nbi-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.nbi-divider {
  width: 100px;

  height: 4px;

  border-radius: 20px;

  background: linear-gradient(90deg, #06b6d4, #38bdf8);

  margin-bottom: 25px;
}

.nbi-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 18px;
}

/* FEATURES */

.nbi-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 30px;

  margin-bottom: 35px;
}

.nbi-feature-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(15px);

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  font-weight: 600;
}

.nbi-feature-card span {
  display: block;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.nbi-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #cffafe);
}

/* BUTTON */

.nbi-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #06b6d4;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.nbi-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
}

/* MOBILE */

@media (max-width: 992px) {
  .nbi-wrapper {
    grid-template-columns: 1fr;
  }

  .nbi-main-image {
    height: 450px;
  }

  .nbi-image-frame {
    display: none;
  }
}

@media (max-width: 768px) {
  .nbi-feature-grid {
    grid-template-columns: 1fr;
  }

  .nbi-main-image {
    height: 320px;
  }

  .nbi-aqua-section {
    padding: 80px 5%;
  }
}

/* ===================================
ISLAND COMPARISON
=================================== */

.ixc-comparison-section {
  padding: 45px 6%;

  background: linear-gradient(180deg, #02111f, #062540);

  position: relative;

  overflow: hidden;
}

.ixc-header {
  text-align: center;

  max-width: 850px;

  margin: auto;

  margin-bottom: 70px;
}

.ixc-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  margin-bottom: 20px;
}

.ixc-header h2 {
  color: white;

  font-size: clamp(2.2rem, 5vw, 4rem);

  margin-bottom: 20px;
}

.ixc-header p {
  color: #cbd5e1;

  line-height: 2;
}

/* GRID */

.ixc-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;

  max-width: 1500px;

  margin: auto;
}

.ixc-card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  padding: 35px;

  text-align: center;

  transition: 0.4s;
}

.ixc-card:hover {
  transform: translateY(-10px);

  background: rgba(255, 255, 255, 0.12);
}

.ixc-icon {
  font-size: 3rem;

  margin-bottom: 20px;
}

.ixc-card h3 {
  color: #38bdf8;

  margin-bottom: 12px;
}

.ixc-card h4 {
  color: white;

  font-size: 1.4rem;

  margin-bottom: 15px;
}

.ixc-card p {
  color: #cbd5e1;

  line-height: 1.8;
}

/* ==================================
TRAVEL PLANNER CTA
================================== */

.itp-master-cta {
  position: relative;

  padding: 38px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #020617, #071d35, #0f172a);

  text-align: center;
}

/* GLOWS */

.itp-glow-left {
  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.15), transparent);

  left: -200px;

  top: -150px;
}

.itp-glow-right {
  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: radial-gradient(rgba(251, 191, 36, 0.15), transparent);

  right: -150px;

  bottom: -150px;
}

.itp-content {
  position: relative;

  z-index: 5;

  max-width: 100%;

  margin: auto;
}

.itp-tag {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  margin-bottom: 25px;
}

.itp-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);

  color: white;

  line-height: 1.2;

  margin-bottom: 25px;
}

.itp-content p {
  color: #cbd5e1;

  line-height: 2;

  max-width: 800px;

  margin: auto;

  margin-bottom: 40px;
}

/* BENEFITS */

.itp-benefits {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  max-width: 700px;

  margin: auto;

  margin-bottom: 50px;
}

.itp-benefit {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  padding: 18px;

  border-radius: 20px;

  color: white;
}

/* BUTTONS */

.itp-actions {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.itp-plan-btn {
  padding: 18px 40px;

  background: #fbbf24;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.itp-plan-btn:hover {
  transform: translateY(-5px);
}

.itp-call-btn {
  padding: 18px 40px;

  border: 2px solid white;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.itp-call-btn:hover {
  background: white;

  color: #111827;
}

@media (max-width: 768px) {
  .itp-benefits {
    grid-template-columns: 1fr;
  }

  .itp-actions {
    flex-direction: column;
  }

  .itp-plan-btn,
  .itp-call-btn {
    width: 100%;
  }
}

/* ==================================
ISLAND FAQ
================================== */

.ifa-faq-section {
  padding: 45px 6%;

  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.ifa-header {
  text-align: center;

  max-width: 850px;

  margin: auto;

  margin-bottom: 70px;
}

.ifa-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: #e0f2fe;

  color: #0369a1;

  font-weight: 600;

  margin-bottom: 20px;
}

.ifa-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);

  color: #0f172a;

  margin-bottom: 20px;
}

.ifa-header p {
  color: #64748b;

  line-height: 2;
}

/* FAQ */

.ifa-container {
  max-width: 1000px;

  margin: auto;
}

.ifa-item {
  margin-bottom: 20px;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  background: white;
}

.ifa-question {
  width: 100%;

  padding: 25px 30px;

  border: none;

  background: white;

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;

  font-size: 1.1rem;

  font-weight: 600;

  color: #0f172a;
}

.ifa-question span {
  font-size: 1.5rem;

  transition: 0.3s;
}

.ifa-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;

  padding: 0 30px;

  color: #64748b;

  line-height: 1.9;
}

.ifa-item.active .ifa-answer {
  max-height: 200px;

  padding: 0 30px 25px;
}

.ifa-item.active .ifa-question span {
  transform: rotate(45deg);
}

/* =========================================
WATER HERO PREMIUM V2
========================================= */

.hydro-hero-wrap {
  position: relative;

  height: calc(100vh - 140px);

  min-height: 700px;

  overflow: hidden;

  background: linear-gradient(135deg, #021526 0%, #03396c 45%, #0ea5e9 100%);

  display: flex;

  align-items: center;
}

/* WAVES */

.hydro-wave-bg {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 180px;

  background: linear-gradient(to top, rgba(255, 255, 255, 0.08), transparent);
}

/* BUBBLES */

.hydro-bubble {
  position: absolute;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

.hydro-bubble-one {
  width: 180px;

  height: 180px;

  left: -60px;

  top: 20%;

  animation: hydroFloat 8s ease-in-out infinite;
}

.hydro-bubble-two {
  width: 120px;

  height: 120px;

  right: 5%;

  bottom: 15%;

  animation: hydroFloat 10s ease-in-out infinite;
}

.hydro-bubble-three {
  width: 80px;

  height: 80px;

  right: 20%;

  top: 12%;

  animation: hydroFloat 12s ease-in-out infinite;
}

@keyframes hydroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* CONTAINER */

.hydro-container {
  width: 100%;

  max-width: 1450px;

  margin: auto;

  display: grid;

  grid-template-columns: 55% 45%;

  gap: 40px;

  align-items: center;

  padding: 0 5%;

  position: relative;

  z-index: 2;

  margin-top: 3%;
}

/* LEFT */

.hydro-tag {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  color: white;

  font-size: 0.95rem;

  margin-bottom: 25px;
}

.hydro-content h1 {
  font-size: clamp(2rem, 2vw, 5rem);

  color: white;

  line-height: 1.05;

  margin-bottom: 25px;

  font-weight: 800;
}

.hydro-content p {
  color: #dbeafe;

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 30px;
}

/* ACTIVITIES */

.hydro-activity-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-bottom: 35px;
}

.hydro-mini-box {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(15px);

  padding: 14px;

  border-radius: 14px;

  color: white;

  font-size: 0.9rem;

  text-align: center;

  transition: 0.4s;
}

.hydro-mini-box:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.15);
}

/* BUTTON */

.hydro-main-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 38px;

  border-radius: 50px;

  background: #fbbf24;

  color: #111827;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.hydro-main-button:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.25);
}

/* RIGHT */

.hydro-visual {
  display: flex;

  justify-content: center;

  align-items: center;
}

.hydro-card {
  width: 100%;

  height: 500px;

  max-width: 520px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 35px;

  /* padding:25px; */

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);

  animation: hydroCardFloat 6s ease-in-out infinite;
}

.hydro-card img {
  width: 100%;

  display: block;

  border-radius: 25px;
}

@keyframes hydroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* TABLET */

@media (max-width: 992px) {
  .hydro-hero-wrap {
    height: auto;

    min-height: auto;

    padding: 100px 0;
  }

  .hydro-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hydro-content p {
    margin-left: auto;

    margin-right: auto;
  }

  .hydro-activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .hydro-content h1 {
    font-size: 2.8rem;
  }

  .hydro-activity-grid {
    grid-template-columns: 1fr;
  }

  .hydro-card {
    max-width: 100%;
  }
}

/* ==================================
SCUBA DIVING SECTION
================================== */

.sdx-ocean-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #ecfeff, #ffffff);
}

/* GLOW */

.sdx-water-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.18), transparent);

  top: -100px;

  right: -100px;
}

/* BUBBLES */

.sdx-bubble-one {
  position: absolute;

  width: 140px;

  height: 140px;

  border-radius: 50%;

  background: rgba(14, 165, 233, 0.08);

  left: 5%;

  top: 15%;
}

.sdx-bubble-two {
  position: absolute;

  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: rgba(14, 165, 233, 0.08);

  right: 15%;

  bottom: 10%;
}

/* GRID */

.sdx-container {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* IMAGE */

.sdx-image-side {
  position: relative;
}

.sdx-image-border {
  position: absolute;

  width: 100%;

  height: 100%;

  border: 3px solid rgba(14, 165, 233, 0.18);

  border-radius: 35px;

  left: 18px;

  top: 18px;
}

.sdx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.sdx-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.sdx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0284c7;

  margin-bottom: 20px;
}

.sdx-content-side h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  margin-bottom: 15px;

  color: #0f172a;
}

.sdx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #0ea5e9, #38bdf8);

  margin-bottom: 25px;
}

.sdx-content-side p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.sdx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.sdx-feature-card {
  padding: 18px;

  background: white;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.sdx-feature-card:hover {
  transform: translateY(-5px);
}

/* BUTTON */

.sdx-explore-btn {
  display: inline-block;

  padding: 18px 40px;

  border-radius: 50px;

  background: #0ea5e9;

  color: white;

  text-decoration: none;

  font-weight: 700;
}

/* =====================================
SEA WALK PREMIUM
===================================== */

.swx-marine-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

/* FLOATING GLOWS */

.swx-glow-one {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(56, 189, 248, 0.18), transparent);

  left: -120px;

  top: -120px;
}

.swx-glow-two {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.15), transparent);

  right: -100px;

  bottom: -100px;
}

/* GRID */

.swx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* CONTENT */

.swx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0369a1;

  margin-bottom: 20px;
}

.swx-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.swx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #0ea5e9, #38bdf8);

  margin-bottom: 25px;
}

.swx-content p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.swx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.swx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: 0.4s;
}

.swx-feature-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.swx-image-side {
  position: relative;
}

.swx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(14, 165, 233, 0.15);

  border-radius: 35px;
}

.swx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.swx-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.swx-action-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #0ea5e9;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;
}

/* ====================================
SNORKELING PREMIUM
==================================== */

.snx-coral-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

/* GLOWS */

.snx-coral-glow {
  position: absolute;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(rgba(249, 115, 22, 0.18), transparent);

  top: -120px;

  left: -120px;
}

.snx-blue-glow {
  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.15), transparent);

  right: -100px;

  bottom: -100px;
}

/* GRID */

.snx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* IMAGE */

.snx-image-zone {
  position: relative;
}

.snx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(249, 115, 22, 0.15);

  border-radius: 35px;
}

.snx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.snx-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.snx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(249, 115, 22, 0.12);

  color: #c2410c;

  margin-bottom: 20px;
}

.snx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.snx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #f97316, #06b6d4);

  margin-bottom: 25px;
}

.snx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.snx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.snx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.snx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

/* BUTTON */

.snx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #f97316;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.snx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
}

/* =====================================
JET SKI PREMIUM
===================================== */

.jsx-thunder-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

/* ENERGY EFFECTS */

.jsx-energy-glow {
  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: radial-gradient(rgba(59, 130, 246, 0.18), transparent);

  top: -120px;

  right: -120px;
}

.jsx-speed-ring {
  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  border: 2px dashed rgba(234, 179, 8, 0.25);

  bottom: -80px;

  left: -80px;

  animation: jsxRotate 20s linear infinite;
}

@keyframes jsxRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* GRID */

.jsx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* CONTENT */

.jsx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(59, 130, 246, 0.12);

  color: #2563eb;

  margin-bottom: 20px;
}

.jsx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.jsx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #3b82f6, #facc15);

  margin-bottom: 25px;
}

.jsx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.jsx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.jsx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.jsx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #fef9c3);
}

/* IMAGE */

.jsx-image-zone {
  position: relative;
}

.jsx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(59, 130, 246, 0.15);

  border-radius: 35px;
}

.jsx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.jsx-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.jsx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #2563eb;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.jsx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

/* =====================================
PARASAILING PREMIUM
===================================== */

.psx-sky-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #eff6ff, #ffffff, #fefce8);
}

/* SUN GLOW */

.psx-sun-glow {
  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: radial-gradient(rgba(250, 204, 21, 0.18), transparent);

  top: -120px;

  right: -120px;
}

/* CLOUDS */

.psx-cloud-one {
  position: absolute;

  width: 220px;

  height: 80px;

  background: rgba(255, 255, 255, 0.45);

  border-radius: 100px;

  top: 12%;

  left: 8%;

  backdrop-filter: blur(12px);
}

.psx-cloud-two {
  position: absolute;

  width: 180px;

  height: 70px;

  background: rgba(255, 255, 255, 0.35);

  border-radius: 100px;

  bottom: 15%;

  right: 12%;

  backdrop-filter: blur(12px);
}

/* GRID */

.psx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* IMAGE */

.psx-image-zone {
  position: relative;
}

.psx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(250, 204, 21, 0.15);

  border-radius: 35px;
}

.psx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.psx-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.psx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(250, 204, 21, 0.15);

  color: #ca8a04;

  margin-bottom: 20px;
}

.psx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.psx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #facc15, #38bdf8);

  margin-bottom: 25px;
}

.psx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.psx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.psx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.psx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #fefce8);
}

/* BUTTON */

.psx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #facc15;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.psx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.25);
}

/* =====================================
BANANA BOAT PREMIUM
===================================== */

.bbx-funwave-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #fffef3, #ffffff);
}

/* GLOWS */

.bbx-yellow-glow {
  position: absolute;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(rgba(250, 204, 21, 0.18), transparent);

  top: -120px;

  left: -120px;
}

.bbx-orange-glow {
  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: radial-gradient(rgba(249, 115, 22, 0.15), transparent);

  right: -100px;

  bottom: -100px;
}

/* GRID */

.bbx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* CONTENT */

.bbx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(250, 204, 21, 0.15);

  color: #ca8a04;

  margin-bottom: 20px;
}

.bbx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.bbx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #facc15, #f97316);

  margin-bottom: 25px;
}

.bbx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.bbx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.bbx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.bbx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

/* IMAGE */

.bbx-image-zone {
  position: relative;
}

.bbx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(250, 204, 21, 0.15);

  border-radius: 35px;
}

.bbx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.bbx-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.bbx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #facc15;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.bbx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.25);
}

/* =====================================
KAYAKING PREMIUM
===================================== */

.kyx-sunset-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #fff7ed, #ffffff, #f0fdfa);
}

/* SUNSET GLOW */

.kyx-sunset-glow {
  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(rgba(249, 115, 22, 0.18), transparent);

  top: -150px;

  right: -120px;
}

.kyx-water-glow {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(20, 184, 166, 0.15), transparent);

  bottom: -100px;

  left: -100px;
}

/* GRID */

.kyx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* IMAGE */

.kyx-image-zone {
  position: relative;
}

.kyx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(249, 115, 22, 0.15);

  border-radius: 35px;
}

.kyx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.kyx-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.kyx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(249, 115, 22, 0.12);

  color: #c2410c;

  margin-bottom: 20px;
}

.kyx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.kyx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #f97316, #14b8a6);

  margin-bottom: 25px;
}

.kyx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.kyx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.kyx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.kyx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #fef3c7);
}

/* BUTTON */

.kyx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #14b8a6;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.kyx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.25);
}

/* =====================================
GLASS BOTTOM BOAT PREMIUM
===================================== */

.gbx-crystal-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f0fdff, #ffffff);
}

/* GLOWS */

.gbx-water-glow {
  position: absolute;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(rgba(6, 182, 212, 0.18), transparent);

  top: -120px;

  left: -120px;
}

.gbx-glass-glow {
  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: radial-gradient(rgba(56, 189, 248, 0.14), transparent);

  right: -100px;

  bottom: -100px;
}

/* GRID */

.gbx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* CONTENT */

.gbx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(6, 182, 212, 0.12);

  color: #0891b2;

  margin-bottom: 20px;
}

.gbx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.gbx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #06b6d4, #38bdf8);

  margin-bottom: 25px;
}

.gbx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.gbx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.gbx-feature-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(15px);

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.gbx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #ecfeff);
}

/* IMAGE */

.gbx-image-zone {
  position: relative;
}

.gbx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(6, 182, 212, 0.15);

  border-radius: 35px;
}

.gbx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.gbx-main-image:hover {
  transform: scale(1.03);
}

/* BUTTON */

.gbx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #06b6d4;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.gbx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
}

/* =====================================
SEMI SUBMARINE PREMIUM
===================================== */

.ssx-submarine-section {
  position: relative;

  padding: 45px 6%;

  overflow: hidden;

  background: linear-gradient(135deg, #f8fcff, #ffffff, #eef8ff);
}

/* GLOWS */

.ssx-ocean-glow {
  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.18), transparent);

  left: -150px;

  top: -120px;
}

.ssx-deep-glow {
  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(37, 99, 235, 0.15), transparent);

  right: -120px;

  bottom: -120px;
}

/* GRID */

.ssx-wrapper {
  max-width: 1500px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  position: relative;

  z-index: 5;
}

/* IMAGE */

.ssx-image-zone {
  position: relative;
}

.ssx-image-frame {
  position: absolute;

  inset: 18px;

  border: 3px solid rgba(14, 165, 233, 0.15);

  border-radius: 35px;
}

.ssx-main-image {
  width: 100%;

  height: 650px;

  object-fit: cover;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  transition: 0.5s;
}

.ssx-main-image:hover {
  transform: scale(1.03);
}

/* CONTENT */

.ssx-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(14, 165, 233, 0.12);

  color: #0284c7;

  margin-bottom: 20px;
}

.ssx-content-zone h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #0f172a;

  margin-bottom: 15px;
}

.ssx-divider {
  width: 100px;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, #0284c7, #2563eb);

  margin-bottom: 25px;
}

.ssx-content-zone p {
  color: #475569;

  line-height: 2;

  margin-bottom: 20px;
}

/* FEATURES */

.ssx-feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 25px;

  margin-bottom: 35px;
}

.ssx-feature-card {
  background: white;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.ssx-feature-card:hover {
  transform: translateY(-6px);

  background: linear-gradient(135deg, #ffffff, #eff6ff);
}

/* BUTTON */

.ssx-tour-btn {
  display: inline-block;

  padding: 18px 40px;

  background: #0284c7;

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.ssx-tour-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.25);
}

/* =====================================
WATER ACTIVITIES FINAL CTA
===================================== */

.wfa-final-cta {
  position: relative;

  overflow: hidden;

  padding: 45px 6%;

  background: linear-gradient(135deg, #020617, #0f172a, #082f49);

  text-align: center;
}

/* GLOW EFFECTS */

.wfa-glow-left {
  position: absolute;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(rgba(14, 165, 233, 0.18), transparent);

  top: -150px;

  left: -150px;
}

.wfa-glow-right {
  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: radial-gradient(rgba(250, 204, 21, 0.15), transparent);

  bottom: -150px;

  right: -150px;
}

/* CONTAINER */

.wfa-container {
  position: relative;

  z-index: 5;

  max-width: 100%;

  margin: auto;
}

/* TAG */

.wfa-tag {
  display: inline-block;

  padding: 12px 26px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  margin-bottom: 25px;

  backdrop-filter: blur(15px);
}

/* HEADING */

.wfa-container h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);

  color: white;

  line-height: 1.15;

  margin-bottom: 25px;

  font-weight: 800;
}

.wfa-container p {
  color: #cbd5e1;

  line-height: 2;

  font-size: 1.05rem;

  max-width: 800px;

  margin: auto;

  margin-bottom: 45px;
}

/* HIGHLIGHTS */

.wfa-highlight-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  margin-bottom: 50px;
}

.wfa-highlight-box {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  padding: 18px;

  border-radius: 18px;

  color: white;

  font-weight: 600;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.wfa-highlight-box:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.12);
}

/* BUTTONS */

.wfa-button-wrap {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.wfa-primary-btn {
  padding: 18px 42px;

  background: #facc15;

  color: #111827;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.4s;
}

.wfa-primary-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.25);
}

.wfa-secondary-btn {
  padding: 18px 42px;

  border: 2px solid rgba(255, 255, 255, 0.2);

  color: white;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 700;

  backdrop-filter: blur(15px);

  transition: 0.4s;
}

.wfa-secondary-btn:hover {
  background: white;

  color: #111827;
}

/* MOBILE */

@media (max-width: 992px) {
  .wfa-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wfa-final-cta {
    padding: 90px 5%;
  }

  .wfa-highlight-grid {
    grid-template-columns: 1fr;
  }

  .wfa-button-wrap {
    flex-direction: column;
  }

  .wfa-primary-btn,
  .wfa-secondary-btn {
    width: 100%;
  }
}

/* Popup Container Overlay */
.woa-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6); /* Dark translucent background */
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Toggle Class for showing modal */
.woa-popup-overlay.woa-show-popup {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Window Content Box */
.woa-popup-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  position: relative;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.woa-popup-overlay.woa-show-popup .woa-popup-content {
  transform: translateY(0);
}

/* Close Window Button */
.woa-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}
.woa-popup-close:hover {
  color: #0f172a;
}

/* Typography styles */
.woa-popup-header {
  text-align: center;
  margin-bottom: 25px;
}
.woa-popup-header h2 {
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 700;
}
.woa-popup-header p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Form Styling Architecture */
.woa-form-group {
  margin-bottom: 18px;
}
.woa-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.woa-form-group input,
.woa-form-group textarea,
.woa-form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0f172a;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.woa-form-group input:focus,
.woa-form-group textarea:focus {
  outline: none;
  border-color: #07c2c2;
  box-shadow: 0 0 0 3px rgba(7, 194, 194, 0.15);
}

/* Mobile Phone Number Selector layout Layout split */
.woa-phone-wrapper {
  display: flex;
  gap: 8px;
}
.woa-phone-wrapper select {
  width: 30%;
  background-color: #f8fafc;
}
.woa-phone-wrapper input {
  width: 70%;
}

/* Submit Interactive Button */
.woa-popup-submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #07c2c2; /* Brand Teal */
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}
.woa-popup-submit-btn:hover {
  background-color: #059b9b;
}

/* Feedback Response Messaging styles */
.woa-form-feedback {
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: none;
  text-align: center;
}
.woa-form-feedback.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.woa-form-feedback.success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

/* Container pinning widget to the bottom LEFT screen boundary */
.woa-contact-widget {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Shifted from right to left */
  z-index: 999998;
  font-family: "Poppins", sans-serif;
}

/* Master Primary Trigger Button (FAB) */
.woa-widget-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #07c2c2; /* Brand Custom Teal */
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(7, 194, 194, 0.4);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.2s;
}

.woa-widget-trigger:hover {
  transform: scale(1.05);
  background-color: #05a8a8;
}

/* Graphic SVGs and Close typography configurations */
.woa-widget-trigger .woa-icon-chat {
  width: 26px;
  height: 26px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.woa-widget-trigger .woa-icon-close {
  font-size: 30px;
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  line-height: 0;
  top: 28px;
}

/* Pulse animation decoration ring */
.woa-widget-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(7, 194, 194, 0.4);
  z-index: -1;
  animation: woaPulseGlow 2s infinite;
}

/* Pop-up options menu panel architecture (Aligned to Left) */
.woa-widget-menu {
  position: absolute;
  bottom: 75px;
  left: 0; /* Shifted menu alignment anchors to the left edge */
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Active Class state togglers handled by Javascript links */
.woa-contact-widget.active .woa-widget-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.woa-contact-widget.active .woa-icon-chat {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.woa-contact-widget.active .woa-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

.woa-contact-widget.active .woa-widget-pulse {
  animation: none;
}

/* Pop-up internal anchor option cards */
.woa-widget-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Hover animation adjusted to move inwards to the right side smoothly */
.woa-widget-item:hover {
  transform: translateX(4px);
}

/* Specific item colors */
.woa-widget-item.whatsapp:hover {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.woa-widget-item.telephone:hover {
  box-shadow: 0 4px 20px rgba(7, 194, 194, 0.25);
}

/* Icon backgrounds */
.woa-widget-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: white;
}

.woa-widget-item.whatsapp .woa-widget-icon {
  background-color: #25d366;
}
.woa-widget-item.telephone .woa-widget-icon {
  background-color: #07c2c2;
}

.woa-widget-icon svg {
  width: 20px;
  height: 20px;
}

/* Card typography layout settings */
.woa-widget-text {
  display: flex;
  flex-direction: column;
}
.woa-widget-text span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}
.woa-widget-text small {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1px;
}

/* Ring Pulse Animation Specs */
@keyframes woaPulseGlow {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Small Breakpoint Mobile Screens Adaptability */
@media screen and (max-width: 576px) {
  .woa-contact-widget {
    bottom: 20px;
    left: 20px; /* Updated for responsive mobile screens layout grid */
  }
  .woa-widget-trigger {
    width: 54px;
    height: 54px;
  }
  .woa-widget-menu {
    bottom: 68px;
    width: 240px;
  }
  .woa-widget-text span {
    font-size: 0.9rem;
  }
}

/* Scroll Up Button Root Placement Styles */
.woa-scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Pinned right side */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0f172a; /* Deep elegant slate black */
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 0.2s;
}

/* Arrow Vector icon adjustments */
.woa-scroll-top-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

/* Reveal State triggered safely via JS class lists */
.woa-scroll-top-btn.woa-scroll-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Interactive Mechanics */
.woa-scroll-top-btn:hover {
  background-color: #07c2c2; /* Turns to your Brand Teal on hover */
  box-shadow: 0 4px 15px rgba(7, 194, 194, 0.4);
}

.woa-scroll-top-btn:hover svg {
  transform: translateY(-2px); /* Subtle up movement on hover */
}

/* Responsive Mobile Ruleset updates */
@media screen and (max-width: 576px) {
  .woa-scroll-top-btn {
    bottom: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
  }
  .woa-scroll-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* By default, hide this link on Laptops/Desktops */
.woa-mobile-main-link {
  display: none;
}

/* Show it only on Mobile and Tablet devices */
@media screen and (max-width: 991px) {
  /* Adjust 991px to match your existing mobile breakpoint */
  .woa-mobile-main-link {
    display: block;
    padding: 12px 15px;
    margin-bottom: 15px;
    background-color: #f0f7ff; /* Soft background color to catch the eye */
    border-radius: 6px;
    border-left: 4px solid #0077b6; /* Accent bar matching your brand color */
  }

  .woa-mobile-main-link a {
    color: #0077b6 !important; /* Forces your brand link color */
    font-weight: bold;
    text-decoration: none;
    display: block;
    font-size: 15px;
  }
}

/* =========================================================
   MISSING RESPONSIVE CSS FOR SIGHTSEEING MODULES
   (Tablet & Mobile Compatibility)
========================================================= */

/* --- TABLET SCREENS (992px & Below) --- */
@media (max-width: 992px) {
  /* 1. Hero Section Adjustments */
  .wsv-hero {
    min-height: 60vh;
    padding: 100px 20px;
  }

  /* 2. Convert all 2-column desktop grids into a centered 1-column layout */
  .nbx-container,
  .ctx-container,
  .bix-container,
  .ccp-container,
  .bbp-container,
  .lxp-container,
  .lcp-container,
  .mvp-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }

  /* 3. Center the content alignment & custom dividers */
  .nbx-divider,
  .ctx-divider,
  .bix-divider,
  .ccp-divider,
  .bbp-divider,
  .lxp-divider,
  .lcp-divider,
  .mvp-divider {
    margin-left: auto;
    margin-right: auto;
  }

  /* 4. Adjust Image Heights for Tablet */
  .nbx-image,
  .ctx-image,
  .bix-image,
  .ccp-image,
  .bbp-image,
  .lxp-image,
  .lcp-image,
  .mvp-image {
    height: 400px;
    width: 100%;
  }

  /* 5. Hide floating background shapes to prevent horizontal overflow */
  .bix-jungle-glow,
  .bix-river-glow,
  .ccp-ocean-glow,
  .ccp-palm-glow,
  .bbp-water-bubble,
  .bbp-water-bubble-two,
  .lxp-sunset-glow,
  .lxp-sunset-glow-two,
  .lcp-rock-shape,
  .lcp-rock-shape-two,
  .mvp-lava-glow,
  .mvp-earth-circle {
    display: none !important;
  }
}

/* --- MOBILE SCREENS (768px & Below) --- */
@media (max-width: 768px) {
  /* 1. Hero Section Mobile Scaling */
  .wsv-hero {
    min-height: 50vh;
    padding: 80px 15px;
  }
  .wsv-hero h1 {
    font-size: 2.2rem;
  }
  .wsv-hero p {
    font-size: 15px;
  }
  .wsv-scroll-indicator {
    bottom: 30px;
  }

  /* 2. Adjust core section padding to maximize screen space */
  .nbx-section,
  .ctx-section,
  .bix-section,
  .ccp-section,
  .bbp-section,
  .lxp-section,
  .lcp-section,
  .mvp-section {
    padding: 50px 5% !important;
  }

  /* 3. Scale down headings */
  .nbx-content h2,
  .ctx-content h2,
  .bix-content h2,
  .ccp-content h2,
  .bbp-content h2,
  .lxp-content h2,
  .lcp-content h2,
  .mvp-content h2 {
    font-size: 2rem !important;
  }

  /* 4. Improve paragraph readability */
  .nbx-content p,
  .ctx-content p,
  .bix-content p,
  .ccp-content p,
  .bbp-content p,
  .lxp-content p,
  .lcp-content p,
  .mvp-content p {
    font-size: 15px;
  }

  /* 5. Stack feature highlight grids into a single vertical column */
  .nbx-highlights,
  .ctx-highlights,
  .bix-feature-grid,
  .ccp-feature-grid,
  .bbp-feature-grid,
  .lxp-feature-grid,
  .lcp-feature-grid,
  .mvp-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  /* 6. Scale down feature cards slightly */
  .bix-feature-card,
  .ccp-feature-card,
  .bbp-feature-card,
  .lxp-feature-card,
  .lcp-feature-card,
  .mvp-feature-card {
    padding: 15px;
    font-size: 15px;
  }

  /* 7. Image height reduction & border adjustment */
  .nbx-image,
  .ctx-image,
  .bix-image,
  .ccp-image,
  .bbp-image,
  .lxp-image,
  .lcp-image,
  .mvp-image {
    height: 300px;
    border-radius: 20px;
  }

  /* 8. UX Fix: Reorder elements so the image consistently appears ABOVE the text */
  .nbx-image-wrap,
  .ctx-image-wrap,
  .bix-image-wrap,
  .ccp-image-wrap,
  .bbp-image-wrap,
  .lxp-image-wrap,
  .lcp-image-wrap,
  .mvp-image-wrap {
    order: -1;
  }
}

/* =========================================================
   RESPONSIVE CSS FOR WATER ACTIVITIES MODULES
   (Tablet & Mobile Compatibility)
========================================================= */

/* --- TABLET SCREENS (992px & Below) --- */
@media (max-width: 992px) {
  /* 1. Convert 2-Column Wrappers into 1-Column */
  .hydro-container,
  .sdx-container,
  .swx-wrapper,
  .snx-wrapper,
  .jsx-wrapper,
  .psx-wrapper,
  .bbx-wrapper,
  .kyx-wrapper,
  .gbx-wrapper,
  .ssx-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }

  /* 2. Center Text Dividers */
  .sdx-divider,
  .swx-divider,
  .snx-divider,
  .jsx-divider,
  .psx-divider,
  .bbx-divider,
  .kyx-divider,
  .gbx-divider,
  .ssx-divider,
  .hydro-tag {
    margin-left: auto;
    margin-right: auto;
  }

  /* 3. Adjust Image Container Heights */
  .hydro-card img,
  .sdx-main-image,
  .swx-main-image,
  .snx-main-image,
  .jsx-main-image,
  .psx-main-image,
  .bbx-main-image,
  .kyx-main-image,
  .gbx-main-image,
  .ssx-main-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  /* 4. Hide floating background glows to prevent horizontal scrollbars */
  .hydro-wave-bg,
  .hydro-bubble,
  .sdx-water-glow,
  .sdx-bubble-one,
  .sdx-bubble-two,
  .swx-glow-one,
  .swx-glow-two,
  .snx-coral-glow,
  .snx-blue-glow,
  .jsx-energy-glow,
  .jsx-speed-ring,
  .psx-cloud-one,
  .psx-cloud-two,
  .psx-sun-glow,
  .bbx-yellow-glow,
  .bbx-orange-glow,
  .kyx-sunset-glow,
  .kyx-water-glow,
  .gbx-water-glow,
  .gbx-glass-glow,
  .ssx-ocean-glow,
  .ssx-deep-glow,
  .wfa-wave-bg,
  .wfa-glow-left,
  .wfa-glow-right {
    display: none !important;
  }
}

/* --- MOBILE SCREENS (768px & Below) --- */
@media (max-width: 768px) {
  /* 1. Hero & CTA Section Adjustments */
  .hydro-hero-wrap,
  .wfa-final-cta {
    padding: 80px 15px !important;
  }
  .hydro-content h1,
  .wfa-container h2 {
    font-size: 2.3rem !important;
  }

  /* 2. Standardize Main Section Paddings */
  .sdx-ocean-section,
  .swx-marine-section,
  .snx-coral-section,
  .jsx-thunder-section,
  .psx-sky-section,
  .bbx-funwave-section,
  .kyx-sunset-section,
  .gbx-crystal-section,
  .ssx-submarine-section {
    padding: 50px 5% !important;
  }

  /* 3. Typography Scaling */
  .sdx-content-side h2,
  .swx-content h2,
  .snx-content-zone h2,
  .jsx-content-zone h2,
  .psx-content-zone h2,
  .bbx-content-zone h2,
  .kyx-content-zone h2,
  .gbx-content-zone h2,
  .ssx-content-zone h2 {
    font-size: 2rem !important;
  }

  .sdx-content-side p,
  .swx-content p,
  .snx-content-zone p,
  .jsx-content-zone p,
  .psx-content-zone p,
  .bbx-content-zone p,
  .kyx-content-zone p,
  .gbx-content-zone p,
  .ssx-content-zone p,
  .wfa-container p {
    font-size: 15px;
  }

  /* 4. Convert Feature Grids to Single Column */
  .hydro-activity-grid,
  .sdx-feature-grid,
  .swx-feature-grid,
  .snx-feature-grid,
  .jsx-feature-grid,
  .psx-feature-grid,
  .bbx-feature-grid,
  .kyx-feature-grid,
  .gbx-feature-grid,
  .ssx-feature-grid,
  .wfa-highlight-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* 5. Reduce Image Heights for Small Phones */
  .hydro-card img,
  .sdx-main-image,
  .swx-main-image,
  .snx-main-image,
  .jsx-main-image,
  .psx-main-image,
  .bbx-main-image,
  .kyx-main-image,
  .gbx-main-image,
  .ssx-main-image {
    height: 300px;
    border-radius: 20px;
  }

  /* 6. UX Trick: Force all images to stack ABOVE the text block */
  .hydro-visual,
  .sdx-image-side,
  .swx-image-side,
  .snx-image-zone,
  .jsx-image-zone,
  .psx-image-zone,
  .bbx-image-zone,
  .kyx-image-zone,
  .gbx-image-zone,
  .ssx-image-zone {
    order: -1 !important;
  }

  /* 7. Stack CTA Buttons */
  .wfa-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .wfa-button-wrap a {
    width: 100%;
    text-align: center;
  }
}

/* Privacy and Terms */

.legal-page-hero {
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.legal-page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.legal-page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}
.legal-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  color: #333333;
  line-height: 1.8;
}
.legal-section {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border-left: 5px solid #0077b6;
}
.legal-section h2 {
  color: #0077b6;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.legal-list {
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  position: relative;
}
.legal-notice-box {
  background-color: #f0f8ff;
  border: 1px solid #bde0fe;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #005f73;
}
@media (max-width: 768px) {
  .legal-page-hero h1 {
    font-size: 2rem;
  }
  .legal-section {
    padding: 20px;
  }
}

/*  */

/* ====================================
   TIERED PRICING THEME (SAAS STYLE)
==================================== */

.tier-pkg-wrapper {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Inter', -apple-system, sans-serif;
    padding: 50px 20px 100px;
    position: relative;
}

/* ====================================
   PROMO PILL
==================================== */

.tier-promo-pill {
    max-width: max-content;
    margin: 0 auto 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tier-pulse {
    width: 8px;
    height: 8px;
    background-color: #2563eb; /* Trust Blue */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    animation: tierPulse 2s infinite;
}

@keyframes tierPulse {
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.tier-promo-pill p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

/* ====================================
   SECTION HEADERS
==================================== */

.tier-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.tier-header {
    text-align: center;
    margin-bottom: 50px;
}

.tier-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #0f172a;
}

.tier-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* ====================================
   SAAS PRICING CARDS
==================================== */

.tier-pricing-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; /* Crucial for the scaling effect */
    gap: 30px;
    margin-bottom: 30px;
}

.tier-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tier-duration {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tier-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Pushes button to the bottom */
}

.tier-features li {
    color: #475569;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* ------------------------------------
   FEATURED/POPULAR CARD
------------------------------------ */

.tier-featured {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
    transform: scale(1.05); /* Makes the card taller and wider */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
    z-index: 2; /* Keeps it above standard cards on hover */
}

.tier-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.tier-featured h3, 
.tier-featured .tier-price {
    color: #ffffff;
}

.tier-featured .tier-duration {
    color: #60a5fa; /* Light blue accent */
    margin-top: 10px; /* Adjusts for badge */
}

.tier-featured .tier-price span {
    color: #94a3b8;
}

.tier-featured .tier-features li {
    color: #cbd5e1;
}

/* ------------------------------------
   CARD BUTTONS
------------------------------------ */

.tier-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tier-btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #eff6ff;
    background: #eff6ff;
}

.tier-btn-outline:hover {
    background: #dbeafe;
    border-color: #dbeafe;
}

.tier-btn-solid {
    background: #3b82f6;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.tier-btn-solid:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.tier-disclaimer {
    display: block;
    text-align: center;
    color: #94a3b8;
    margin-top: 20px;
}

/* ====================================
   CLASSIC FAQ STYLE (RESTORED)
==================================== */

.classic-faq-section {
    max-width: 850px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.classic-faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.classic-faq-header h2 {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 700;
}

.classic-faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.classic-faq-item {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.classic-faq-item[open] {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.classic-faq-trigger {
    padding: 22px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.classic-faq-trigger:hover {
    background: #f1f5f9;
}

.classic-faq-item[open] .classic-faq-trigger {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    color: #2563eb;
}

.classic-faq-trigger::after {
    content: '+';
    font-size: 1.6rem;
    color: #64748b;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.classic-faq-item[open] .classic-faq-trigger::after {
    transform: rotate(45deg);
    color: #2563eb;
}

.classic-faq-trigger::-webkit-details-marker {
    display: none;
}

.classic-faq-content {
    padding: 20px 25px;
    background: #ffffff;
}

.classic-faq-content p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ====================================
   FLOATING ACTION BAR
==================================== */

.tier-floating-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.tier-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: #2563eb;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tier-featured {
        transform: scale(1); /* Removes scaling on small screens */
        order: -1; /* Forces the popular package to the top on mobile */
    }
    
    .tier-featured:hover {
        transform: translateY(-8px);
    }
}

/* about us */

/* =========================================
   CORE STYLING & FAILSAFES
   ========================================= */
.woa-premium-section {
  --woa-bg: #050505;
  --woa-text: #f5f5f7;
  --woa-muted: #a1a1a6;
  --woa-accent1: #00f2fe;
  --woa-accent2: #4facfe;
  
  /* The !important tags prevent your theme from making it white */
  background-color: var(--woa-bg) !important;
  color: var(--woa-text) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem;
  box-sizing: border-box;
}

.woa-premium-section * {
  box-sizing: border-box;
}

.woa-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Ambient Background Orbs */
.woa-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 0;
  animation: woaFloat 10s infinite alternate ease-in-out;
}
.woa-orb-1 {
  width: 400px; height: 400px;
  background: var(--woa-accent1);
  top: -100px; left: -100px;
}
.woa-orb-2 {
  width: 300px; height: 300px;
  background: var(--woa-accent2);
  bottom: 20%; right: -50px;
  animation-delay: -5s;
}
@keyframes woaFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Typography */
.woa-eyebrow {
  display: block; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 4px; color: var(--woa-accent1); margin-bottom: 1rem;
}
.woa-massive-title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1;
  margin: 0 0 1rem 0; letter-spacing: -1px; color: var(--woa-text) !important;
}
.woa-gradient-text {
  background: linear-gradient(135deg, var(--woa-accent1), var(--woa-accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.woa-tagline {
  font-size: 1.2rem; color: var(--woa-muted); max-width: 600px; line-height: 1.6;
}

/* Story Section */
.woa-story-wrapper {
  display: flex; flex-wrap: wrap; gap: 4rem; margin: 6rem 0; align-items: center;
}
.woa-story-content, .woa-story-visual { flex: 1; min-width: 300px; }
.woa-section-title { font-size: 2rem; margin-bottom: 1.5rem; color: var(--woa-text) !important; }
.woa-pro-text { font-size: 1.1rem; line-height: 1.8; color: var(--woa-muted); margin-bottom: 1.5rem; }
.woa-pro-text strong { color: var(--woa-text); }

/* Poetry Card */
.woa-poetry-card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px; padding: 3rem; position: relative;
  backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.woa-quote-mark {
  position: absolute; top: -20px; left: 20px; font-size: 6rem; line-height: 1;
  color: rgba(0, 242, 254, 0.2); font-family: serif;
}
.woa-poem { font-size: 1.25rem; font-style: italic; line-height: 1.8; color: #fff !important; position: relative; z-index: 2; }

/* Video */
.woa-video-showcase { margin: 6rem 0; }
.woa-video-frame {
  position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 24px;
  overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255, 255, 255, 0.1);
}
.woa-video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Locations */
.woa-locations-wrapper { margin: 6rem 0; }
.woa-text-center { text-align: center; }
.woa-location-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.woa-loc-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem; border-radius: 20px; transition: all 0.4s ease;
}
.woa-loc-card:hover {
  transform: translateY(-10px); background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 242, 254, 0.3); box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}
.woa-loc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.woa-loc-card h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--woa-text) !important; }
.woa-loc-card p { color: var(--woa-muted); line-height: 1.6; }

/* CTA Area */
.woa-cta-wrapper { text-align: center; padding: 4rem 0; }
.woa-cta-title { font-size: 2.5rem; margin-bottom: 3rem; color: var(--woa-text) !important; }
.woa-magnetic-btn {
  position: relative; background: linear-gradient(135deg, var(--woa-accent1), var(--woa-accent2));
  border: none; border-radius: 50px; padding: 1.2rem 3rem; cursor: pointer;
  outline: none; overflow: hidden; transition: transform 0.2s cubic-bezier(0.1, 0.7, 0.1, 1);
}
.woa-btn-text { position: relative; z-index: 2; color: #000; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.woa-btn-glare {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.5s; z-index: 1;
}
.woa-magnetic-btn:hover .woa-btn-glare { left: 150%; }

.woa-contact-links { margin-top: 2.5rem; color: var(--woa-muted); }
.woa-hover-underline { color: var(--woa-text); text-decoration: none; position: relative; padding-bottom: 2px; }
.woa-hover-underline::after {
  content: ''; position: absolute; width: 0; height: 1px; bottom: 0; left: 0;
  background-color: var(--woa-accent1); transition: width 0.3s ease;
}
.woa-hover-underline:hover::after { width: 100%; }
.woa-dot-divider { margin: 0 15px; color: var(--woa-muted); }

/* =========================================
   BULLETPROOF ANIMATIONS
   ========================================= */
/* By default, everything is VISIBLE. */
.woa-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Only hide them IF the JavaScript successfully fires */
.woa-js-active .woa-reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Show them when scrolled into view */
.woa-js-active .woa-reveal.woa-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media screen and (max-width: 768px) {
  .woa-premium-section { padding: 4rem 1rem; }
  .woa-story-wrapper, .woa-video-showcase, .woa-locations-wrapper, .woa-cta-wrapper { margin: 3rem 0; }
  .woa-story-wrapper { gap: 2rem; flex-direction: column; }
  .woa-poetry-card { padding: 2rem 1.5rem; }
  .woa-quote-mark { font-size: 4rem; top: -10px; left: 10px; }
  .woa-poem { font-size: 1.1rem; }
  .woa-location-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .woa-contact-links { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; margin-top: 2rem; }
  .woa-dot-divider { display: none; }
  .woa-orb-1 { width: 250px; height: 250px; }
  .woa-orb-2 { width: 200px; height: 200px; bottom: 5%; }
}
