/* =====================================================
   WATER SPORTS – PIXEL-PERFECT CLONE
   Colors from original Astra/Elementor theme
   --ast-global-color-0: #2bbede  (primary cyan)
   --ast-global-color-2: #17272b  (dark)
   --ast-global-color-3: #5c6a6d  (text)
   --ast-global-color-4: #f4fafb  (light bg)
   --ast-global-color-7: #181921  (black bg)
===================================================== */

/* ── Google Fonts ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --primary: #2bbede;
  --primary-dark: #1f9cb8;
  --dark: #17272b;
  --text: #5c6a6d;
  --bg-light: #f4fafb;
  --white: #ffffff;
  --gray: #a9b5b8;
  --black-bg: #181921;
  --accent: #76c5d6;
  --border: #dddddd;

  /* Section backgrounds (from data-settings="background_background":"gradient") */
  --section-dark-1: #17272b;
  --section-dark-2: #0d1c1f;

  --font-hero: 'Anton', sans-serif;
  --font-ui: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --max-width: 1200px;
}

/* ── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* ── Scroll reveal helper ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: .1s;
}

[data-reveal-delay="2"] {
  transition-delay: .2s;
}

[data-reveal-delay="3"] {
  transition-delay: .3s;
}

[data-reveal-delay="4"] {
  transition-delay: .4s;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .1);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-light {
  display: block;
  width: 127px;
}

.logo-dark {
  display: none;
  width: 127px;
}

.site-header.scrolled .logo-light {
  display: none;
}

.site-header.scrolled .logo-dark {
  display: block;
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .01em;
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s;
}

.nav-menu a:hover::after,
.nav-menu a.current::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.current {
  color: var(--white);
}

.site-header.scrolled .nav-menu a {
  color: var(--dark);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.current {
  color: var(--primary);
}

/* Reservation CTA */
.btn-reservation {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid rgba(255, 255, 255, .7);
  color: var(--white);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: .02em;
  transition: background .25s, color .25s, border-color .25s;
}

.btn-reservation:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.site-header.scrolled .btn-reservation {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.site-header.scrolled .btn-reservation:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 4px;
  line-height: 0;
}

.site-header.scrolled .mobile-toggle {
  color: var(--primary);
}

.mobile-toggle .icon-close {
  display: none;
}

.mobile-toggle.open .icon-menu {
  display: none;
}

.mobile-toggle.open .icon-close {
  display: block;
}

/* =====================================================
   MOBILE POPUP DRAWER
===================================================== */
.mobile-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.mobile-popup.active {
  display: block;
}

.mobile-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.mobile-popup-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 90vw;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  animation: slideInRight .28s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-popup-header {
  padding: 18px 20px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border);
}

.close-popup {
  background: none;
  border: none;
  color: var(--dark);
  line-height: 0;
  padding: 4px;
}

.mobile-popup-content {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.current {
  color: var(--primary);
}

.btn-reservation-mobile {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background .25s, color .25s;
}

.btn-reservation-mobile:hover {
  background: var(--primary);
  color: var(--white);
}

/* =====================================================
   HERO SECTION
   Layered text-behind-image layout.
   Background: #5184B4 with cloud overlay image.
===================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  background-color: #000;
  --hero-fs: clamp(80px, 10vw, 180px);
}

@media (max-width: 1024px) {
  .hero-section {
    height: 90vh;
    --hero-fs: clamp(60px, 10vw, 120px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    --hero-fs: clamp(44px, 10vw, 80px);
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23, 39, 43, 0.45) 0%, rgba(23, 39, 43, 0.25) 50%, rgba(23, 39, 43, 0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-text-container {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-hero);
  font-size: var(--hero-fs);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-btn {
  min-width: 160px;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-ctas .btn-filled,
  .hero-ctas .btn-outline-white {
    width: 100%;
    text-align: center;
  }
}

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
}

.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* =====================================================
   SHARED SECTION PIECES
===================================================== */
.section-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 18px;
}

.section-h2 {
  font-family: var(--font-hero);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Light variant (on dark bg) */
.on-dark .section-h2,
.on-dark p {
  color: var(--white);
}

.on-dark p {
  color: rgba(255, 255, 255, .78);
}

/* ── Buttons ───────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: .01em;
  transition: background .25s, color .25s;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background .25s, color .25s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-filled {
  display: inline-block;
  padding: 14px 22px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background .25s, color .25s, border-color .25s;
}

.btn-filled:hover {
  background: transparent;
  color: var(--primary);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  transition: background .25s, color .25s;
}

.btn-arrow:hover {
  background: var(--primary);
  color: var(--white);
}

/* =====================================================
   EXPLORE SECTION
   Original BG: dark gradient (dark navy/teal)
===================================================== */
.explore-section {
  background: linear-gradient(165deg, #17272b 0%, #0e2226 60%, #17272b 100%);
  padding: 90px 0;
}

.explore-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.explore-text {}

.explore-text p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.explore-text .btn-outline-white {
  margin-top: 28px;
}

/* ── Kitesurfing Photo Gallery ────────── */
.gallery-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-grid-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-card:nth-child(6) {
  grid-column: span 2;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 29, 0.85) 0%, rgba(13, 26, 29, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item-card:hover::after {
  opacity: 1;
}

.gallery-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(43, 190, 222, 0.18);
}

.gallery-item-card:hover img {
  transform: scale(1.05);
}

.gallery-icon-plus {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 2;
}

.gallery-item-card:hover .gallery-icon-plus {
  opacity: 1;
  transform: scale(1);
}

.gallery-icon-plus:hover {
  background: var(--primary);
}


@media (max-width: 1024px) {
  .gallery-grid-flex {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item-card:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 544px) {
  .gallery-grid-flex {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-card:nth-child(6) {
    grid-column: span 1;
  }
}

/* Activities grid – right column
   Layout: [jet-ski wide top-left] [surfing tall right]
           [parasailing wide bottom-left]
*/
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.act-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.act-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.act-card:hover img {
  transform: scale(1.05);
}

.act-card-body {
  padding: 20px 22px 22px;
}

.act-card h3 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.act-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Jet Ski: top-left, wide */
.act-jetski {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.act-jetski img {
  height: 200px;
}

/* Surfing: right column spanning both rows */
.act-surfing {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.act-surfing img {
  height: 280px;
  flex-shrink: 0;
}

.act-surfing .act-card-body {
  flex: 1;
}

/* Parasailing: bottom-left */
.act-parasailing {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.act-parasailing img {
  height: 180px;
}

/* =====================================================
   GET THE MOST SECTION
===================================================== */
.getmost-section {
  background: linear-gradient(165deg, #0e2226 0%, #17272b 100%);
  padding: 90px 0;
}

.getmost-inner {
  max-width: 680px;
}

.getmost-inner .section-h2 {
  color: var(--white);
}

.getmost-inner p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.feature-list li i {
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-section {
  background: var(--white);
  padding: 90px 0;
}

.why-section .section-h2 {
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

.why-num {
  font-family: var(--font-hero);
  font-size: 36px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  opacity: .25;
}

.why-item h4 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* =====================================================
   COUPLE PARASAILING PROMO BANNER
===================================================== */
.promo-section {
  background: linear-gradient(165deg, #17272b 0%, #0d1a1d 100%);
  padding: 90px 0;
}

.promo-inner {
  max-width: 620px;
}

.promo-inner h3 {
  font-family: var(--font-ui);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.promo-inner p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.7;
}

.promo-inner .btn-outline-white {
  margin-top: 28px;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section {
  background: var(--white);
  padding: 90px 0;
}

.testimonials-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonials-top .section-h2 {
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-light);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .3s;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary);
}

.testi-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-card h6 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* =====================================================
   NEWSLETTER / SUBSCRIBE
===================================================== */
.newsletter-section {
  background: linear-gradient(165deg, #0e2226 0%, #17272b 100%);
  padding: 72px 0;
}

.newsletter-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.newsletter-input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
}

.newsletter-input::placeholder {
  color: var(--gray);
}

.newsletter-btn {
  flex-shrink: 0;
  padding: 16px 30px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: background .25s;
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

.newsletter-sub {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

/* =====================================================
   FOOTER MAIN (light bg, 4 columns)
===================================================== */
.footer-main {
  background: var(--bg-light);
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-wrap {
  margin-bottom: 26px;
}

.footer-logo-wrap img {
  width: 127px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.footer-contacts li i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.footer-col-h {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-link-list a:hover {
  color: var(--primary);
}

.footer-link-list a i {
  color: var(--primary);
  width: 14px;
}

/* ── Footer Bottom Bar ─────────────────────────────── */
.footer-bottom {
  background: var(--dark);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy,
.footer-powered {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.footer-powered {
  text-align: right;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .explore-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .activities-grid {
    max-width: 560px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {

  /* Header */
  .main-nav,
  .btn-reservation {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero is styled in the main hero section with responsive media queries */

  /* Sections */
  .explore-section,
  .getmost-section,
  .why-section,
  .promo-section,
  .testimonials-section,
  .newsletter-section {
    padding: 64px 0;
  }

  /* Activities – single column */
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .act-jetski,
  .act-surfing,
  .act-parasailing {
    grid-column: 1;
    grid-row: auto;
  }

  .act-surfing img {
    height: 220px;
  }

  .act-jetski img {
    height: 200px;
  }

  .act-parasailing img {
    height: 200px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-top {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-input {
    border-radius: 8px 8px 0 0;
  }

  .newsletter-btn {
    border-radius: 0 0 8px 8px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-powered {
    text-align: center;
  }
}

@media (max-width: 544px) {
  .hero-title {
    font-size: clamp(28px, 9vw, 60px);
  }

  .section-h2 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 18px;
  }
}


/* =====================================================
   ADDITIONAL STYLES FOR FANADIR WATER SPORTS
===================================================== */



/* ── Welcome Section ────────── */
.intro-section {
  padding: 80px 0 40px;
  background: var(--white);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 24px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-5 {
  margin-bottom: 40px;
}

.py-5 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.subtitle-h3 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.intro-text {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.intro-text p {
  margin-bottom: 16px;
}

/* ── About Section Grid ────────── */
.about-section {
  padding: 60px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-slideshow {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.fade-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-slider img.active {
  opacity: 1;
}

.bullet-list-poppins {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-list-poppins li {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-list-poppins li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.bullet-list-poppins li i.text-success {
  color: #2ecc71;
}

.bullet-list-poppins li i.text-danger {
  color: #e74c3c;
}

.about-price-tag {
  font-size: 18px;
  color: var(--dark);
  margin-top: 15px;
}

.about-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Location Spot Section ────────── */
.location-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.location-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Premium Services Cards ────────── */
.activities-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.act-card-premium {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.act-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.act-media-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.act-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.act-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-card-body h3 {
  font-family: var(--font-ui);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-chip {
  align-self: flex-start;
  background: rgba(43, 190, 222, 0.12);
  color: var(--primary-dark);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.act-card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.act-card-body .btn-arrow {
  align-self: flex-start;
  margin-top: auto;
}

/* ── Yacht Safari Section ────────── */
.safari-yacht-section {
  background: linear-gradient(165deg, #17272b 0%, #0d1a1d 100%);
  padding: 90px 0;
}

.safari-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.safari-video-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.safari-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-yacht {
  font-family: var(--font-ui);
  font-size: 20px;
  color: var(--white);
  margin: 16px 0;
}

.price-yacht strong {
  color: var(--primary);
  font-size: 28px;
}

.calendar-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-dates-scroll {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 16px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dates-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dates-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.dates-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge.available {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.badge.sold-out {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.badge.spec-price {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

/* ── Lessons Pricing Tables ────────── */
.pricing-section {
  padding: 90px 0;
  background: var(--white);
}

.pricing-header {
  margin-bottom: 48px;
}

.pricing-tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-table-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.price-table-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.price-table-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(43, 190, 222, 0.1);
  position: relative;
}

.popular-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 30px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-head {
  padding: 32px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.card-head i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-head h3 {
  font-family: var(--font-ui);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
}

.card-head p {
  font-size: 13px;
  color: var(--text);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-price-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.package-price-wrap .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  vertical-align: top;
}

.package-price-wrap .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.package-price-wrap .period {
  font-size: 14px;
  color: var(--text);
}

.card-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.card-body th,
.card-body td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.card-body th {
  font-family: var(--font-ui);
  color: var(--dark);
  font-weight: 600;
}

.card-body td {
  color: var(--text);
}

.bold-price {
  font-weight: 700;
  color: var(--dark) !important;
  text-align: right !important;
}

.includes-text {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 20px;
}

.includes-text i {
  color: var(--primary);
  margin-right: 4px;
}

.card-body .btn-filled,
.card-body .btn-outline {
  width: 100%;
  text-align: center;
  margin-top: auto;
}



/* ── Inner Details Pages Styling ────────── */
.inner-hero-section {
  background: linear-gradient(165deg, #17272b 0%, #0d1a1d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inner-h1 {
  font-family: var(--font-hero);
  font-size: clamp(32px, 5.5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.inner-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.7;
}

.inner-badges-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inner-badges-wrap .badge {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 9999px;
}

.inner-badges-wrap .badge.available {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Timeline / Itinerary */
.timeline-wrap {
  padding-right: 20px;
}

.timeline-container {
  position: relative;
  margin-top: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 190, 222, 0.15);
}

.time-stamp {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 2px;
}

.timeline-content h4 {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* Side overview cards */
.details-overview-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.details-overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.details-overview-card.highlight {
  background: var(--bg-light);
  border-color: var(--primary);
}

.details-overview-card h4 {
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.details-overview-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.float-right {
  float: right;
}

/* FAQ Accodions */
.accordion-faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-question i {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid var(--border);
  background: rgba(43, 190, 222, 0.03);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 20px 24px;
  max-height: 250px;
  /* perfect height to prevent animation closing delay */
}

.faq-answer p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}



/* ── Contact Section Updates ────────── */
.contact-section {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-details-list li i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
}

.contact-details-list h5 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-details-list p,
.contact-details-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-details-list a:hover {
  color: var(--primary);
}

.contact-social-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.social-h3 {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.social-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.qr-code-wrap {
  width: 180px;
  height: 180px;
  background: var(--white);
  border-radius: 6px;
  padding: 8px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Chat Float Widget ────────── */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-toggle {
  background: #4f6aca;
  color: var(--white);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
}

.chat-toggle:hover {
  transform: scale(1.05);
  background: #3e56a8;
}

.chat-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.chat-widget.active .chat-icons {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-icons a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: right;
  align-self: flex-end;
}

.chat-icons a i {
  font-size: 16px;
}

.chat-icons .whatsappp {
  background: #2ecc71;
}

.chat-icons .messenger {
  background: #3498db;
}

.chat-icons .instagramm {
  background: #e1306c;
}

.chat-icons .telegram {
  background: #229ED9;
}

/* ── Scrolled / Fixed Header Tweaks ────────── */
.site-header.scrolled {
  background: var(--white);
}

.mobile-toggle.open-dark {
  color: var(--primary) !important;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
===================================================== */
@media (max-width: 1024px) {

  .about-grid,
  .location-grid,
  .contact-grid,
  .safari-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-slideshow {
    height: 380px;
  }

  .activities-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .safari-video-wrap {
    height: 380px;
  }

  .pricing-tables-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid-flex {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-slideshow {
    height: 300px;
  }

  .location-video-wrapper {
    height: 300px;
  }

  .activities-grid-three {
    grid-template-columns: 1fr;
  }

  .pricing-tables-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-flex {
    grid-template-columns: repeat(2, 1fr);
  }

  .safari-video-wrap {
    height: 280px;
  }
}

@media (max-width: 544px) {
  .gallery-grid-flex {
    grid-template-columns: 1fr;
  }

  .inner-h1 {
    font-size: 32px;
  }
}


/* =====================================================
   IMMERSIVE BACKGROUNDS & GLASSMORPHIC STYLING
===================================================== */

/* Video Background Section */
.video-bg-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 25, 27, 0.75) 0%, rgba(13, 26, 29, 0.88) 100%);
  z-index: 2;
}

.relative-z-index {
  position: relative;
  z-index: 3;
  width: 100%;
}

.safari-glass-card {
  background: rgba(23, 39, 43, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 50px 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.safari-glass-card .section-h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.safari-glass-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
}

.justify-center {
  justify-content: center;
}

/* Parallax Image Background Section */
.parallax-bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .parallax-bg-section {
    background-attachment: fixed;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 25, 27, 0.8) 0%, rgba(13, 26, 29, 0.92) 100%);
  z-index: 1;
}

.parallax-bg-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .safari-glass-card {
    padding: 32px 24px;
  }

  .video-bg-section,
  .parallax-bg-section {
    padding: 60px 0;
  }
}

/* ── Full Width Gallery Grid Overrides ── */
.gallery-grid-flex.full-width-gallery {
  max-width: 100%;
  width: 100%;
  gap: 0;
}

.gallery-grid-flex.full-width-gallery .gallery-item-card {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ======================================================
   FULL SCREEN PROMO SLIDER (Swiper)
====================================================== */
.promo-slider-section.full-screen-slider {
  width: 100%;
  max-width: 756px;
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  background-color: transparent;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.promo-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.promo-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-swiper .swiper-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

/* Floating overlay for WhatsApp action button */
.promo-slide-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.promo-whatsapp-btn {
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
  background: #2ecc71;
  border-color: #2ecc71;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.promo-whatsapp-btn:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.6);
}

/* Custom Swiper Navigation and Buttons styling */
.promo-swiper .swiper-nav-btn {
  color: var(--white) !important;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.promo-swiper .swiper-nav-btn:after {
  font-size: 18px;
  font-weight: bold;
}

.promo-swiper .swiper-nav-btn:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.promo-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: background 0.3s, transform 0.3s;
}

.promo-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.3);
}