/* ============================
   ROOT VARIABLES
============================ */
:root {
  --accent: #1f8f2f;
  --accent-light: #29ff63;
  --muted: #6b7280;
  --bg: #ffffff;
  --dark: #071428;
  --header-height: 76px;
}

/* ============================
   GLOBAL RESET
============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: Inter, system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   HEADER
============================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow:
    0 0 4px var(--accent),
    0 0 8px var(--accent),
    0 0 14px var(--accent-light);
  animation: logoGlow 2.4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    text-shadow:
      0 0 4px var(--accent),
      0 0 8px var(--accent),
      0 0 14px var(--accent-light);
  }
  to {
    text-shadow:
      0 0 10px #32ff73,
      0 0 18px #32ff73,
      0 0 26px #32ff73;
  }
}

/* Navigation */
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: #111;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-cta {
  display: none;
}

/* CTA Buttons */
.cta-top {
  display: flex;
  gap: 10px;
}

.btn-ghost,
.btn-green {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-ghost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-green {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 0 6px rgba(31, 143, 47, 0.65),
    0 0 14px rgba(31, 143, 47, 0.4);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(31, 143, 47, 0.85),
    0 0 22px rgba(31, 143, 47, 0.65),
    0 0 32px rgba(31, 143, 47, 0.45);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================
   HERO SECTION
============================ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.38);
  transform: scale(1.1);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.2); }
}

.hero-glass {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  animation: glassFadeUp 1.3s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

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

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 1.2px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.55);
  animation: fadeSlideUp 1.8s ease-out forwards;
  opacity: 0;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 2vw, 16px);
  animation: fadeSlideUp 2.3s ease-out forwards;
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 18px;
  border-radius: 30px;
  background: #26c94f;
  color: #fff;
  font-weight: 600;
  box-shadow:
    0 0 20px rgba(38, 201, 79, 0.9),
    0 0 45px rgba(38, 201, 79, 0.6),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
  animation: fadeSlideUp 2.7s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 28px rgba(38, 201, 79, 1),
    0 0 70px rgba(38, 201, 79, 0.85),
    inset 0 0 22px rgba(255, 255, 255, 0.32);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   SECTIONS
============================ */
section {
  padding: 60px 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 10px;
  color: var(--dark);
}

.section-head .small,
.sub {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
}

/* ============================
   GLOW BACKGROUNDS
============================ */
.dest-glow-bg,
.resort-glow-bg,
.activity-glow-bg,
.reviews-glow-bg {
  max-width: 1180px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 24px;
  background-size: 200% 200%;
}

.dest-glow-bg {
  background: linear-gradient(130deg, #20c24b, #48ff7b, #20c24b);
  animation: glowMove 6s linear infinite;
}

.resort-glow-bg {
  background: linear-gradient(130deg, #009444, #25ff78, #009444);
  animation: glowResort 7s linear infinite;
}

.activity-glow-bg {
  background: linear-gradient(140deg, #046bd6, #58d3ff, #046bd6);
  animation: activityGlow 7s linear infinite;
}

.reviews-glow-bg {
  background: linear-gradient(130deg, #009ce3, #2be4ff, #009ce3);
  animation: reviewsBG 6s linear infinite;
}

@keyframes glowMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowResort {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes activityGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes reviewsBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================
   CAROUSELS
============================ */
.carousel-wrap {
  overflow: hidden;
  border-radius: 20px;
}

.carousel,
.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 15px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar,
.review-slider::-webkit-scrollbar {
  display: none;
}

/* ============================
   CARDS - DESTINATIONS
============================ */
.card {
  flex: 0 0 280px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  background: linear-gradient(130deg, #1f8f2f, #36e56a, #1f8f2f);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.5;
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; }
  100% { opacity: 0.7; }
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card .body {
  padding: 16px;
  background: #fff;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: var(--dark);
}

.card .small {
  color: var(--muted);
  font-size: 13px;
}

/* ============================
   RESORT CARDS
============================ */
.resort-card {
  flex: 0 0 340px;
}

.resort-card img {
  height: 220px;
}

.btn-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.book-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 160, 60, 0.4);
  transition: all 0.3s ease;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 94, 0.8);
}

.explore-btn {
  padding: 10px 18px;
  background: #fff;
  color: var(--accent);
  border-radius: 22px;
  border: 2px solid var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 16px rgba(31, 255, 73, 0.6);
}

/* ============================
   ACTIVITY CARDS
============================ */
.activity-card {
  flex: 0 0 320px;
  background: #041124;
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(140deg, #0ba5ff, #4bf7ff, #0ba5ff);
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
  animation: actGlow 3s ease-in-out infinite alternate;
}

@keyframes actGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.activity-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.activity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.a-body {
  padding: 16px;
}

.a-body h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.a-body p {
  margin: 0;
  opacity: 0.85;
  font-size: 14px;
}

/* ============================
   ABOUT SECTION
============================ */
.about-section {
  padding: 80px 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  padding-right: 20px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text .sub {
  margin-bottom: 25px;
}

.about-btn-glass {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(31, 143, 47, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(31, 143, 47, 0.3);
  transition: all 0.3s ease;
}

.about-btn-glass:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 25px rgba(31, 255, 79, 0.8);
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: 16px;
  animation: floatImage 6s ease-in-out infinite alternate;
}

@keyframes floatImage {
  from { transform: translateY(-8px); }
  to { transform: translateY(8px); }
}

.img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(31, 255, 73, 0.5), transparent 70%);
  border-radius: 16px;
  filter: blur(30px);
  z-index: -1;
}

/* ============================
   REVIEWS
============================ */
.reviews-header {
  text-align: center;
  margin: 50px 0 20px;
}

.reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
}

.review-box {
  flex: 0 0 320px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #dfffe9;
  border: 1px solid rgba(31, 255, 73, 0.3);
  box-shadow: 0 0 20px rgba(31, 255, 73, 0.2);
  transition: transform 0.35s ease;
}

.review-box:hover {
  transform: translateY(-8px) scale(1.02);
}

.review-box p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.review-box .name {
  font-weight: 700;
  color: var(--accent-light);
}

/* ============================
   GALLERY POPUP
============================ */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.gallery-popup.active {
  display: flex;
}

.gallery-content {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.gallery-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 106, 0.5);
}

.gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.gallery-controls button {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--accent-light);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.gallery-controls button:hover {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-light);
}

.close-gallery {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10001;
}

.close-gallery:hover {
  color: var(--accent-light);
}

/* ============================
   FOOTER
============================ */
footer {
  background: #092012;
  color: #dfeee2;
  padding: 50px 20px 20px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #1f8f2f, #3cff75, #1f8f2f);
  animation: footerGlow 5s linear infinite;
}

@keyframes footerGlow {
  0% { filter: blur(6px); opacity: 0.6; }
  50% { filter: blur(12px); opacity: 1; }
  100% { filter: blur(6px); opacity: 0.6; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  opacity: 0.85;
}

.footer-menu strong,
.footer-contact strong,
.footer-social strong {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 14px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-btn.instagram:hover {
  background: #e1306c;
  box-shadow: 0 0 15px #ff4da6;
}

.social-btn.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 15px #3a8bff;
}

.social-btn.whatsapp:hover {
  background: #25d366;
  box-shadow: 0 0 15px #2cff7a;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}

/* ============================
   ANIMATIONS
============================ */
.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 1s forwards;
}

.fadeIn {
  opacity: 0;
  animation: fadeInAnim 1.2s forwards;
}

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

@keyframes fadeInAnim {
  to {
    opacity: 1;
  }
}

/* ============================
   RESPONSIVE - EXTRA LARGE (1400px+)
============================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .card {
    flex: 0 0 300px;
  }

  .resort-card {
    flex: 0 0 380px;
  }

  .activity-card {
    flex: 0 0 360px;
  }
}

/* ============================
   RESPONSIVE - LARGE (1200px - 1399px)
============================ */
@media (max-width: 1399px) and (min-width: 1200px) {
  .resort-card {
    flex: 0 0 350px;
  }
}

/* ============================
   RESPONSIVE - MEDIUM (992px - 1199px)
============================ */
@media (max-width: 1199px) {
  .header-inner {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 24px;
  }

  nav {
    gap: 20px;
  }

  .about-container {
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ============================
   RESPONSIVE - TABLET (768px - 991px)
============================ */
@media (max-width: 991px) {
  :root {
    --header-height: 70px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
  }

  nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  nav a::after {
    display: none;
  }

  .mobile-cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
  }

  .cta-top {
    display: none;
  }

  .hero {
    height: calc(100vh - var(--header-height));
    min-height: 500px;
  }

  .hero-glass {
    padding: 40px 30px;
  }

  .card {
    flex: 0 0 260px;
  }

  .resort-card {
    flex: 0 0 300px;
  }

  .activity-card {
    flex: 0 0 280px;
  }

  .review-box {
    flex: 0 0 280px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
    order: 1;
  }

  .about-img-wrapper {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================
   RESPONSIVE - MOBILE LARGE (576px - 767px)
============================ */
@media (max-width: 767px) {
  :root {
    --header-height: 65px;
  }

  .logo-text {
    font-size: 20px;
  }

  section {
    padding: 50px 15px;
  }

  .hero-glass {
    width: 95%;
    padding: 35px 25px;
    border-radius: 20px;
  }

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

  .hero-desc {
    font-size: 14px;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 16px;
  }

  .dest-glow-bg,
  .resort-glow-bg,
  .activity-glow-bg,
  .reviews-glow-bg {
    padding: 15px;
    margin: 15px;
    border-radius: 18px;
  }

  .card {
    flex: 0 0 240px;
  }

  .card img {
    height: 170px;
  }

  .resort-card {
    flex: 0 0 280px;
  }

  .resort-card img {
    height: 180px;
  }

  .activity-card {
    flex: 0 0 260px;
  }

  .activity-card img {
    height: 160px;
  }

  .review-box {
    flex: 0 0 260px;
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .social-icons {
    justify-content: center;
  }

  .gallery-controls button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .close-gallery {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }
}

/* ============================
   RESPONSIVE - MOBILE (480px - 575px)
============================ */
@media (max-width: 575px) {
  :root {
    --header-height: 60px;
  }

  .header-inner {
    padding: 0 12px;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .hamburger {
    width: 26px;
    height: 20px;
  }

  section {
    padding: 40px 12px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .hero {
    min-height: 450px;
  }

  .hero-glass {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 15px;
  }

  .card {
    flex: 0 0 220px;
  }

  .card img {
    height: 150px;
  }

  .card h3 {
    font-size: 16px;
  }

  .resort-card {
    flex: 0 0 260px;
  }

  .resort-card img {
    height: 160px;
  }

  .btn-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .book-btn,
  .explore-btn {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }

  .activity-card {
    flex: 0 0 240px;
  }

  .activity-card img {
    height: 140px;
  }

  .a-body h4 {
    font-size: 16px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-section {
    padding: 50px 15px;
  }

  .review-box {
    flex: 0 0 240px;
    padding: 18px;
  }

  .review-box p {
    font-size: 14px;
  }

}

/* ============================
   RESPONSIVE - EXTRA SMALL (below 480px)
============================ */
@media (max-width: 479px) {
  .logo-text {
    font-size: 16px;
  }

  .hero-glass {
    padding: 25px 15px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 12px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .card {
    flex: 0 0 200px;
  }

  .card img {
    height: 130px;
  }

  .resort-card {
    flex: 0 0 230px;
  }

  .activity-card {
    flex: 0 0 210px;
  }

  .review-box {
    flex: 0 0 220px;
  }

  .about-title {
    font-size: 22px;
  }

  .gallery-controls button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================
   ACCESSIBILITY - REDUCED MOTION
============================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================
   PRINT STYLES
============================ */
@media print {
  header,
  .gallery-popup {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 50px 0;
  }
}

/* ============================
   FLOATING BUTTONS CONTAINER
============================ */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* ============================
   FLOATING BUTTON BASE STYLES
============================ */
.floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: floatBounce 2s infinite ease-in-out;
}

/* Staggered Animation */
.floating-call {
  animation-delay: 0s;
}

.floating-whatsapp {
  animation-delay: 0.3s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================
   CALL BUTTON STYLES
============================ */
.floating-call {
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  box-shadow:
    0 0 15px rgba(0, 102, 255, 0.7),
    0 0 30px rgba(0, 102, 255, 0.5),
    0 0 45px rgba(0, 102, 255, 0.3);
}

.floating-call:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow:
    0 0 25px rgba(0, 102, 255, 1),
    0 0 50px rgba(0, 102, 255, 0.8),
    0 0 75px rgba(0, 102, 255, 0.5);
}

/* Ringing Animation on Hover */
.floating-call:hover i {
  animation: phoneRing 0.5s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
}

/* ============================
   WHATSAPP BUTTON STYLES
============================ */
.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow:
    0 0 15px rgba(37, 211, 102, 0.7),
    0 0 30px rgba(37, 211, 102, 0.5),
    0 0 45px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 25px rgba(37, 211, 102, 1),
    0 0 50px rgba(37, 211, 102, 0.8),
    0 0 75px rgba(37, 211, 102, 0.5);
}

/* ============================
   TOOLTIP STYLES
============================ */
.btn-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Tooltip Arrow */
.btn-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

/* Show Tooltip on Hover */
.floating-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ============================
   PULSE RING EFFECT
============================ */
.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}

.floating-call::before {
  box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
}

.floating-whatsapp::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ============================
   RESPONSIVE - FLOATING BUTTONS
============================ */
@media (max-width: 767px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .btn-tooltip {
    display: none;
  }
}

@media (max-width: 479px) {
  .floating-buttons {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}