    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       DESIGN SYSTEM â€” Tropical Editorial
       Aesthetic: Sun-Drenched Caribbean Editorial
       DFII: 17 (Excellent)
       Differentiation: Golden sun-to-ocean gradients,
       wave dividers, postcard photo stacks, gleam cards
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    :root {
      /* â€” Color Tokens â€” */
      --sun: #F9EB2A;
      --sun-deep: #E6D500;
      --ocean: #0077B6;
      --ocean-deep: #005A8C;
      --sky: #00B4D8;
      --coral: #E63946;
      --coral-soft: #FF6B6B;
      --palm: #2D6A4F;
      --palm-light: #40916C;
      --sand: #FFFCF2;
      --sand-warm: #FFF5E1;
      --night: #0B1D26;
      --drift: #264653;
      --white: #FFFFFF;
      --glass: rgba(255, 255, 255, 0.08);

      /* â€” Typography â€” */
      --font-display: 'Syne', sans-serif;
      --font-body: 'Outfit', sans-serif;

      /* â€” Spacing â€” */
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-2xl: 5rem;
      --space-3xl: 8rem;

      /* â€” Radii â€” */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;

      /* â€” Shadows â€” */
      --shadow-card: 0 8px 30px rgba(11, 29, 38, 0.12);
      --shadow-card-hover: 0 16px 50px rgba(11, 29, 38, 0.2);
      --shadow-modal: 0 25px 80px rgba(0, 0, 0, 0.4);

      /* â€” Transitions â€” */
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* â”€â”€ Reset & Base â”€â”€ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--night);
      background: var(--sand);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    /* â”€â”€ Typography â”€â”€ */
    h1, h2, h3, h4, h5 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.1;
    }

    .section-label {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sun);
      margin-bottom: var(--space-sm);
      display: inline-block;
    }

    .section-heading {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      margin-bottom: var(--space-md);
      color: var(--night);
    }

    .section-subtext {
      font-size: 1.125rem;
      color: var(--drift);
      max-width: 600px;
      line-height: 1.7;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       NAVIGATION
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
    }

    .nav.scrolled {
      background: rgba(11, 29, 38, 0.96);
      padding: 0.8rem 2.5rem;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      z-index: 1001;
    }

    .nav-logo img {
      height: 50px;
      width: auto;
      transition: height 0.3s ease;
    }

    .nav.scrolled .nav-logo img {
      height: 40px;
    }

    .nav-logo-text {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      line-height: 1.2;
    }

    .nav-logo-text span {
      color: var(--sun);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--white);
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--sun);
      transition: width 0.3s var(--ease-out);
    }

    .nav-links a:hover {
      color: var(--sun);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
      color: var(--night) !important;
      font-weight: 700 !important;
      padding: 0.7rem 1.8rem;
      border-radius: var(--radius-full);
      transition: all 0.4s var(--ease-spring) !important;
      box-shadow: 0 4px 15px rgba(249, 235, 42, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      display: inline-block;
      text-align: center;
    }

    .nav-cta::before {
      content: 'ðŸŒ´';
      position: absolute;
      left: -30px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      transition: all 0.5s var(--ease-spring);
      opacity: 0;
      pointer-events: none;
    }

    .nav-cta::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
      pointer-events: none;
    }

    .nav-cta:hover {
      background: linear-gradient(135deg, var(--sun-deep) 0%, var(--sun) 100%) !important;
      color: var(--night) !important;
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(249, 235, 42, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.15) !important;
      animation: wiggle 0.5s ease-in-out;
    }

    .nav-cta:hover::before {
      left: 10px;
      opacity: 1;
      animation: swing 1s ease-in-out infinite;
    }

    .nav-cta:hover::after {
      left: 100%;
    }

    @keyframes wiggle {
      0%, 100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
      25% { transform: translateY(-3px) scale(1.05) rotate(-3deg); }
      75% { transform: translateY(-3px) scale(1.05) rotate(3deg); }
    }

    @keyframes swing {
      0%, 100% { transform: translateY(-50%) rotate(0deg); }
      50% { transform: translateY(-50%) rotate(10deg); }
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
      color: var(--night) !important;
      font-weight: 700 !important;
      padding: 0.7rem 1.8rem;
      border-radius: var(--radius-full);
      transition: all 0.4s var(--ease-spring) !important;
      box-shadow: 0 4px 15px rgba(249, 235, 42, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      display: inline-block;
      text-align: center;
    }

    .nav-cta::before {
      content: '🌴';
      position: absolute;
      left: -30px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      transition: all 0.5s var(--ease-spring);
      opacity: 0;
      pointer-events: none;
    }

    .nav-cta::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
      pointer-events: none;
    }

    .nav-cta:hover {
      background: linear-gradient(135deg, var(--sun-deep) 0%, var(--sun) 100%) !important;
      color: var(--night) !important;
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(249, 235, 42, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.15) !important;
      animation: wiggle 0.5s ease-in-out;
    }

    .nav-cta:hover::before {
      left: 10px;
      opacity: 1;
      animation: swing 1s ease-in-out infinite;
    }

    .nav-cta:hover::after {
      left: 100%;
    }

    @keyframes wiggle {
      0%, 100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
      25% { transform: translateY(-3px) scale(1.05) rotate(-3deg); }
      75% { transform: translateY(-3px) scale(1.05) rotate(3deg); }
    }

    @keyframes swing {
      0%, 100% { transform: translateY(-50%) rotate(0deg); }
      50% { transform: translateY(-50%) rotate(10deg); }
    }

    /* Mobile Nav Toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      z-index: 1001;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2.5px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(11, 29, 38, 0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-menu.active {
      display: flex;
      opacity: 1;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: var(--sun);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HERO
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .hero {
      position: relative;
      height: 200vh;
    }

    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      min-height: 650px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover; /* use cover to stretch/zoom edge to edge without squishing, or change to fill if literal squishing is desired */
      z-index: 0;
      background: var(--night);
      pointer-events: none;
      border: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(11, 29, 38, 0.4) 0%,
        rgba(11, 29, 38, 0.15) 30%,
        rgba(11, 29, 38, 0.15) 70%,
        rgba(11, 29, 38, 0.5) 100%
      );
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 var(--space-lg);
      max-width: 850px;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    .hero-logo {
      width: 180px;
      height: auto;
      margin: 0 auto var(--space-lg);
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
      animation: heroFadeDown 1s var(--ease-out) 0.2s both;
    }

    .hero-heading {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      margin-bottom: var(--space-md);
      animation: heroFadeUp 1s var(--ease-out) 0.5s both;
      letter-spacing: -0.02em;
    }

    .hero-heading em {
      font-style: normal;
      color: var(--sun);
      position: relative;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.2vw, 1.35rem);
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: var(--space-xl);
      font-weight: 300;
      line-height: 1.7;
      animation: heroFadeUp 1s var(--ease-out) 0.7s both;
    }

    .hero-actions {
      display: flex;
      gap: var(--space-sm);
      justify-content: center;
      flex-wrap: wrap;
      animation: heroFadeUp 1s var(--ease-out) 0.9s both;
    }

    .btn-primary {
      outline: 0;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      background: var(--sun);
      color: var(--night);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.5px;
      padding: 1.1rem 2.5rem;
      border-radius: var(--radius-full);
      box-shadow: 0 6px 20px rgba(249, 235, 42, 0.3);
      transition: opacity 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
      overflow: hidden;
      position: relative;
    }

    .btn-primary:hover {
      opacity: 0.95;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(249, 235, 42, 0.5);
    }

    .btn-animation {
      width: 10px;
      height: 10px;
      border-radius: 100%;
      animation: ripple 0.6s linear infinite;
    }

    @keyframes ripple {
      0% {
        box-shadow: 0 0 0 0 rgba(11, 29, 38, 0.1), 
                    0 0 0 10px rgba(11, 29, 38, 0.1), 
                    0 0 0 20px rgba(11, 29, 38, 0.1), 
                    0 0 0 30px rgba(11, 29, 38, 0.1);
      }
      100% {
        box-shadow: 0 0 0 10px rgba(11, 29, 38, 0.1), 
                    0 0 0 20px rgba(11, 29, 38, 0.1), 
                    0 0 0 30px rgba(11, 29, 38, 0.1), 
                    0 0 0 40px rgba(11, 29, 38, 0);
      }
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1rem 2.2rem;
      border-radius: var(--radius-full);
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.4s var(--ease-spring);
      position: relative;
      overflow: hidden;
    }

    .btn-secondary:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

    .hero-scroll {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounceDown 2s ease-in-out infinite;
    }

    .hero-scroll svg {
      width: 28px;
      height: 28px;
      color: rgba(255, 255, 255, 0.6);
    }

    @keyframes bounceDown {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    @keyframes heroFadeDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Wave Divider */
    .wave-divider {
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      overflow: hidden;
      line-height: 0;
      z-index: 2;
    }

    .wave-divider svg {
      position: relative;
      display: block;
      width: calc(100% + 2px);
      height: 80px;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       ABOUT SECTION â€” Organic Editorial
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .about {
      position: relative;
      background: var(--sand);
      padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
      overflow: hidden;
    }

    .about-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: var(--space-xl);
      align-items: start;
    }

    .about-text {
      padding-right: var(--space-xl);
      padding-top: var(--space-xl);
      position: relative;
      z-index: 2;
    }

    .about-text .section-heading {
      color: var(--night);
    }

    .about-description {
      font-size: 1.1rem;
      color: var(--drift);
      line-height: 1.8;
      margin-bottom: var(--space-xl);
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }

    .stat-card {
      background: var(--white);
      padding: var(--space-md) var(--space-md);
      border-radius: 20px 8px 20px 8px;
      box-shadow: 0 4px 15px rgba(11, 29, 38, 0.06);
      transition: all 0.6s var(--ease-spring);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--sun);
      transition: all 0.5s var(--ease-spring);
    }

    .stat-card::after {
      content: '';
      position: absolute;
      right: -30px;
      bottom: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
      opacity: 0.1;
      transition: all 0.8s var(--ease-spring);
      z-index: 0;
    }

    .stat-card:nth-child(2)::after {
      background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
    }

    .stat-card:nth-child(3)::after {
      background: radial-gradient(circle, var(--palm-light) 0%, transparent 70%);
    }

    .stat-card:nth-child(4)::after {
      background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
    }

    .stat-card:hover {
      transform: translateY(-12px) rotate(-1deg) scale(1.03);
      box-shadow: 0 20px 50px rgba(11, 29, 38, 0.2);
      border-radius: 10px 30px 10px 30px;
      border-color: rgba(0, 119, 182, 0.1);
    }

    .stat-card:nth-child(even):hover {
      transform: translateY(-12px) rotate(1deg) scale(1.03);
    }

    .stat-card:hover::before {
      height: 10px;
      opacity: 0.8;
    }

    .stat-card:hover::after {
      opacity: 0.4;
      transform: scale(2.5);
      right: -10px;
      bottom: -10px;
    }

    .stat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
      transition: all 0.5s var(--ease-spring);
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    }

    .stat-card:hover .stat-icon {
      transform: translateY(-4px) scale(1.1) rotate(5deg);
      background: var(--white);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--ocean);
      line-height: 1;
      margin-bottom: 0.3rem;
      position: relative;
      z-index: 1;
      transition: all 0.5s var(--ease-spring);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .stat-card:hover .stat-number {
      transform: scale(1.1) translateY(-2px);
      transform-origin: left bottom;
      color: var(--night);
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--drift);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.3s;
      position: relative;
      z-index: 1;
    }

    .stat-card:hover .stat-label {
      color: var(--ocean-deep);
    }

    /* Photo Stack â€” Organic Overlap */
    .about-photos {
      position: relative;
      width: 100%;
      height: 520px;
      margin-top: -40px;
    }

    .photo-stack-img {
      position: absolute;
      width: 280px;
      height: 210px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 50px rgba(11, 29, 38, 0.22);
      transition: transform 0.6s var(--ease-spring), box-shadow 0.4s;
      border: 6px solid var(--white);
    }

    .photo-stack-img:nth-child(1) {
      top: 8%;
      left: 0;
      transform: rotate(-8deg) translateY(0px);
      z-index: 1;
    }

    .photo-stack-img:nth-child(2) {
      top: 38%;
      left: 25%;
      transform: rotate(5deg);
      z-index: 3;
      width: 300px;
      height: 220px;
    }

    .photo-stack-img:nth-child(3) {
      top: 2%;
      right: -5%;
      transform: rotate(10deg);
      z-index: 2;
    }

    .about-right-media {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      justify-content: flex-start;
      margin-top: -10px;
      width: 100%;
    }

    .mobile-feature-img {
      display: none !important;
    }
    .desktop-feature-img {
      display: flex !important;
    }

    .bottom-feature-image-container {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: -10px;
    }

    .bottom-feature-image {
      max-width: 90%;
      height: auto;
      object-fit: contain;
      background-color: transparent !important;
      border: none !important;
      box-shadow: none !important;
      mix-blend-mode: multiply; /* Removes any white background from the image file itself */
    }

    .photo-stack-img:hover {
      transform: rotate(0deg) scale(1.08) !important;
      z-index: 10 !important;
      box-shadow: 0 24px 70px rgba(11, 29, 38, 0.3);
    }

    .shake-effect {
      animation: island-shake 6s ease-in-out infinite;
    }

    .shake-effect:hover {
      animation: fast-shake 0.8s ease-in-out infinite;
    }

    @keyframes island-shake {
      0% { transform: translateY(0px) rotate(-3deg); }
      25% { transform: translateY(-12px) rotate(0deg); }
      50% { transform: translateY(0px) rotate(-3deg); }
      75% { transform: translateY(-12px) rotate(-6deg); }
      100% { transform: translateY(0px) rotate(-3deg); }
    }

    @keyframes fast-shake {
      0% { transform: translate(1px, 1px) rotate(0deg); }
      10% { transform: translate(-1px, -2px) rotate(-1deg); }
      20% { transform: translate(-3px, 0px) rotate(1deg); }
      30% { transform: translate(3px, 2px) rotate(0deg); }
      40% { transform: translate(1px, -1px) rotate(1deg); }
      50% { transform: translate(-1px, 2px) rotate(-1deg); }
      60% { transform: translate(-3px, 1px) rotate(0deg); }
      70% { transform: translate(3px, 1px) rotate(-1deg); }
      80% { transform: translate(-1px, -1px) rotate(1deg); }
      90% { transform: translate(1px, 2px) rotate(0deg); }
      100% { transform: translate(1px, -2px) rotate(-1deg); }
    }

    /* About floating accent */
    .about::before {
      content: '';
      position: absolute;
      top: 15%;
      right: -5%;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 183, 3, 0.07), transparent 70%);
      pointer-events: none;
    }

    .about::after {
      content: '';
      position: absolute;
      bottom: 10%;
      left: -8%;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 119, 182, 0.05), transparent 70%);
      pointer-events: none;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       TOURS SECTION
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .tours {
      position: relative;
      background: var(--white);
      padding: var(--space-3xl) var(--space-lg);
      overflow: hidden;
    }

    /* Organic accent blobs */
    .tours::before {
      content: '';
      position: absolute;
      top: 8%;
      left: -8%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.04), transparent 70%);
      pointer-events: none;
    }

    .tours::after {
      content: '';
      position: absolute;
      bottom: 5%;
      right: -5%;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 183, 3, 0.05), transparent 70%);
      pointer-events: none;
    }

    .tours-header {
      text-align: center;
      margin-bottom: var(--space-xl);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .tours-header .section-subtext {
      margin: 0 auto;
    }

    /* Filter Tabs */
    .filter-bar {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: var(--space-xl);
    }

    .filter-btn {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.6rem 1.4rem;
      border-radius: var(--radius-full);
      background: var(--sand);
      color: var(--drift);
      transition: background 0.3s, color 0.3s, transform 0.2s;
    }

    .filter-btn:hover {
      background: var(--sand-warm);
      transform: translateY(-1px);
    }

    .filter-btn.active {
      background: var(--ocean);
      color: var(--white);
    }

    /* Tour Grid */
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Tour Card */
    .tour-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4 / 3;
      box-shadow: var(--shadow-card);
      transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
    }

    .tour-card:hover {
      transform: translateY(-8px) rotate(-0.5deg);
      box-shadow: 0 20px 60px rgba(11, 29, 38, 0.25);
    }

    .tour-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-out);
    }

    .tour-card:hover .tour-card-img {
      transform: scale(1.1);
    }

    /* Card Shine Effect */
    .tour-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.12) 44%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.12) 56%,
        transparent 62%
      );
      transform: translateX(-150%);
      transition: transform 0.7s var(--ease-out);
      pointer-events: none;
    }

    .tour-card:hover::before {
      transform: translateX(150%);
    }

    .tour-card-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        0deg,
        rgba(11, 29, 38, 0.85) 0%,
        rgba(11, 29, 38, 0.3) 45%,
        transparent 100%
      );
      padding: var(--space-md);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .tour-card-badge {
      position: absolute;
      top: var(--space-sm);
      right: var(--space-sm);
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-full);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--white);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .badge-land { background: rgba(45, 106, 79, 0.85); }
    .badge-water { background: rgba(0, 180, 216, 0.85); }
    .badge-adventure { background: rgba(230, 57, 70, 0.85); }
    .badge-cultural { background: rgba(255, 183, 3, 0.85); color: var(--night); }
    .badge-service { background: rgba(38, 70, 83, 0.85); }

    .tour-card-price {
      position: absolute;
      top: var(--space-sm);
      left: var(--space-sm);
      background: var(--sun);
      color: var(--night);
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .tour-card-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .tour-card-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0.75rem;
    }

    .tour-card-meta svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .tour-card-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .tour-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--sun);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
    }

    .tour-card:hover .tour-card-cta {
      opacity: 1;
      transform: translateY(0);
    }

    /* Card hidden state for filter */
    .tour-card.hidden {
      display: none;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HIGHLIGHTS STRIP â€” Diagonal Band
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .highlights {
      background: linear-gradient(135deg, var(--night) 0%, var(--drift) 100%);
      padding: var(--space-2xl) var(--space-lg);
      overflow: hidden;
      position: relative;
    }

    .highlights::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(249, 235, 42, 0.02) 40px,
        rgba(249, 235, 42, 0.02) 80px
      );
      pointer-events: none;
    }

    .highlights::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(249, 235, 42, 0.08), transparent 70%);
      pointer-events: none;
    }

    .highlights-track {
      display: flex;
      gap: var(--space-2xl);
      justify-content: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .highlight-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.4s var(--ease-spring);
      padding: var(--space-md);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-width: 160px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .highlight-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(249, 235, 42, 0.15), transparent);
      transition: left 0.6s;
    }

    .highlight-item:hover {
      color: var(--white);
      transform: translateY(-8px) scale(1.05);
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--sun);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .highlight-item:hover::before {
      left: 100%;
    }

    .highlight-item svg {
      width: 32px;
      height: 32px;
      color: var(--sun);
      flex-shrink: 0;
      transition: all 0.5s var(--ease-spring);
      filter: drop-shadow(0 4px 8px rgba(249, 235, 42, 0.3));
    }

    .highlight-item:hover svg {
      transform: scale(1.3) rotate(360deg);
      color: var(--white);
      filter: drop-shadow(0 6px 12px rgba(249, 235, 42, 0.6));
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CONTACT SECTION
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .tripadvisor-section {
      background: var(--sand);
      padding: var(--space-2xl) var(--space-lg);
    }

    .tripadvisor-section .section-heading {
      color: var(--night);
    }

    .contact {
      position: relative;
      background: linear-gradient(135deg, var(--ocean) 0%, var(--sky) 50%, var(--ocean-deep) 100%);
      padding: var(--space-3xl) var(--space-lg);
      text-align: center;
      overflow: hidden;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255, 183, 3, 0.08);
      pointer-events: none;
      animation: floatBlob 15s ease-in-out infinite alternate;
    }

    .contact::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -15%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
      animation: floatBlob 18s ease-in-out infinite alternate-reverse;
    }

    @keyframes floatBlob {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(20px, -20px) scale(1.05); }
      100% { transform: translate(-10px, 10px) scale(0.98); }
    }

    .contact .section-label {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact .section-heading {
      color: var(--white);
    }

    .contact .section-subtext {
      color: rgba(255, 255, 255, 0.8);
      margin: 0 auto var(--space-xl);
    }

    .contact-grid {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-lg);
      padding: var(--space-lg) var(--space-xl);
      min-width: 250px;
      transition: transform 0.4s var(--ease-spring), background 0.3s, box-shadow 0.4s;
    }

    .contact-card:hover {
      transform: translateY(-8px) rotate(-1deg);
      background: rgba(255, 255, 255, 0.18);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .contact-card svg {
      width: 32px;
      height: 32px;
      color: var(--sun);
      margin-bottom: var(--space-sm);
    }

    .contact-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .contact-card p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .contact-card a {
      color: var(--sun);
      font-weight: 600;
      transition: color 0.3s;
    }

    .contact-card a:hover {
      color: var(--white);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       FOOTER
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .footer {
      background: var(--night);
      padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: var(--space-xl);
      padding-bottom: var(--space-xl);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .footer-brand img {
      width: 80px;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--white);
    }

    .footer-brand-name span {
      color: var(--sun);
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
      max-width: 320px;
      line-height: 1.7;
    }

    .footer-col h5 {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--sun);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: var(--space-md);
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s;
    }

    .footer-col a:hover {
      color: var(--sun);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: var(--space-md) auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.35);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       TOUR MODAL
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(11, 29, 38, 0.88);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 850px;
      width: 92%;
      max-height: 92vh;
      overflow-y: auto;
      transform: translateY(40px) scale(0.96);
      transition: transform 0.45s var(--ease-out);
      box-shadow: var(--shadow-modal);
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: var(--space-sm);
      right: var(--space-sm);
      z-index: 10;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(11, 29, 38, 0.7);
      color: var(--white);
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, transform 0.3s;
    }

    .modal-close:hover {
      background: var(--coral);
      transform: rotate(90deg);
    }

    /* Gallery */
    .modal-gallery {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-gallery img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .modal-gallery img.gallery-active {
      opacity: 1;
    }

    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: var(--white);
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .gallery-nav:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    .gallery-prev { left: var(--space-sm); }
    .gallery-next { right: var(--space-sm); }

    .gallery-dots {
      position: absolute;
      bottom: var(--space-sm);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.4rem;
      z-index: 5;
    }

    .gallery-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transition: background 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .gallery-dot.dot-active {
      background: var(--sun);
      transform: scale(1.3);
    }

    /* Modal Body */
    .modal-body {
      padding: var(--space-xl);
    }

    .modal-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--night);
      margin-bottom: var(--space-xs);
    }

    .modal-subtitle {
      font-size: 0.95rem;
      color: var(--ocean);
      font-weight: 600;
      margin-bottom: var(--space-md);
    }

    .modal-meta-bar {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      margin-bottom: var(--space-lg);
      padding-bottom: var(--space-lg);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .modal-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--drift);
    }

    .modal-meta-item svg {
      width: 18px;
      height: 18px;
      color: var(--ocean);
    }

    .modal-meta-item strong {
      color: var(--night);
      font-weight: 700;
    }

    .modal-description {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--drift);
      margin-bottom: var(--space-lg);
    }

    .modal-includes {
      margin-bottom: var(--space-lg);
    }

    .modal-includes h4 {
      font-size: 1rem;
      color: var(--night);
      margin-bottom: var(--space-sm);
    }

    .modal-includes ul {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .modal-includes li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.92rem;
      color: var(--drift);
    }

    .modal-includes li::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sun);
      margin-top: 0.5rem;
      flex-shrink: 0;
    }

    .modal-book-btn {
      outline: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
      color: var(--night);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      padding: 1.2rem 2.5rem;
      border-radius: var(--radius-full);
      box-shadow: 0 6px 20px rgba(249, 235, 42, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
      transition: all 0.4s var(--ease-spring);
      width: 100%;
      text-align: center;
      overflow: hidden;
      position: relative;
      border: 3px solid transparent;
    }

    .modal-book-btn::before {
      content: 'ðŸŒŠ';
      position: absolute;
      bottom: -40px;
      left: 0;
      right: 0;
      font-size: 2rem;
      text-align: center;
      transition: all 0.5s var(--ease-spring);
      opacity: 0;
    }

    .modal-book-btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .modal-book-btn:hover {
      background: linear-gradient(135deg, var(--sun-deep) 0%, var(--sun) 100%);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 35px rgba(249, 235, 42, 0.5), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      animation: pulse 0.8s ease-in-out infinite;
    }

    .modal-book-btn:hover::before {
      bottom: 5px;
      opacity: 1;
      animation: wave 1s ease-in-out infinite;
    }

    .modal-book-btn:hover::after {
      width: 300px;
      height: 300px;
    }

    .modal-book-btn:active {
      transform: translateY(-2px) scale(0.98);
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 12px 35px rgba(249, 235, 42, 0.5), inset 0 -3px 0 rgba(0, 0, 0, 0.15); }
      50% { box-shadow: 0 12px 40px rgba(249, 235, 42, 0.7), inset 0 -3px 0 rgba(0, 0, 0, 0.15); }
    }

    @keyframes wave {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-10px); }
      75% { transform: translateX(10px); }
    }

    .modal-book-btn svg {
      width: 20px;
      height: 20px;
      position: relative;
      z-index: 1;
      transition: transform 0.3s var(--ease-spring);
    }

    .modal-book-btn:hover svg {
      transform: scale(1.2) rotate(10deg);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       WHATSAPP FLOAT
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .whatsapp-float {
      position: fixed;
      bottom: var(--space-lg);
      right: var(--space-lg);
      z-index: 900;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
      animation: whatsappPulse 2s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
      animation: none;
    }

    .whatsapp-float svg {
      width: 30px;
      height: 30px;
      color: var(--white);
    }

    @keyframes whatsappPulse {
      0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       SCROLL REVEAL & MOTION SYSTEM
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0) rotate(0deg) scale(1) !important;
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }
    .reveal-delay-5 { transition-delay: 0.75s; }

    /* Slide from left */
    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .reveal-left.revealed {
      opacity: 1;
      transform: translateX(0);
    }

    /* Slide from right */
    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .reveal-right.revealed {
      opacity: 1;
      transform: translateX(0);
    }

    /* Scale up */
    .reveal-scale {
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .reveal-scale.revealed {
      opacity: 1;
      transform: scale(1);
    }

    /* Rotate in */
    .reveal-rotate {
      opacity: 0;
      transform: translateY(30px) rotate(3deg);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .reveal-rotate.revealed {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }

    /* Clip reveal (cinematic wipe) */
    .reveal-clip {
      clip-path: inset(0 0 100% 0);
      transition: clip-path 1.1s var(--ease-out);
    }
    .reveal-clip.revealed {
      clip-path: inset(0 0 0 0);
    }

    /* Stagger children animation */
    .stagger-children > * {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }
    .stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
    .stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
    .stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
    .stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
    .stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PARALLAX LAYERS
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .parallax-bg {
      will-change: transform;
      transition: transform 0.1s linear;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       ORGANIC DECORATIVE ELEMENTS
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .organic-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.12;
    }

    .organic-blob-1 {
      width: 400px;
      height: 400px;
      background: var(--sun);
      top: -100px;
      right: -100px;
    }

    .organic-blob-2 {
      width: 300px;
      height: 300px;
      background: var(--ocean);
      bottom: -80px;
      left: -80px;
    }

    /* Curved Section Dividers */
    .curve-divider {
      position: relative;
      height: 80px;
      overflow: hidden;
      margin-top: -1px;
    }

    .curve-divider svg {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
    }

    /* Diagonal accent line */
    .diagonal-accent {
      position: absolute;
      width: 200px;
      height: 2px;
      background: linear-gradient(90deg, var(--sun), transparent);
      transform: rotate(-12deg);
      pointer-events: none;
      opacity: 0.4;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       RESPONSIVE
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    @media (max-width: 1024px) {
      .tours-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-sticky {
        min-height: 650px;
      }

      .hero-content {
        padding-top: 80px;
      }

      .hero-logo {
        width: 150px;
      }

      .hero-heading {
        font-size: clamp(2.5rem, 6vw, 4rem);
      }

      .btn-primary,
      .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
      }

      .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
      }

      .about-text {
        padding-right: 0;
        text-align: center;
      }

      .about-text .section-label,
      .about-text .section-heading {
        text-align: center;
      }

      .about-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
      }

      .about-photos {
        height: 360px;
        margin: 0 auto;
        max-width: 550px;
      }

      .photo-stack-img {
        width: 220px;
        height: 160px;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .tours-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
      }

      .hero-sticky {
        min-height: 600px;
      }

      .hero-content {
        padding-top: 100px;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
      }

      .hero-heading {
        font-size: clamp(2.6rem, 8vw, 4.55rem);
        margin-bottom: var(--space-sm);
      }

      .hero-sub {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        margin-bottom: var(--space-lg);
      }

      .hero-logo {
        width: 170px;
        margin-bottom: var(--space-md);
      }

      .hero-actions {
        gap: var(--space-xs);
      }

      .btn-primary,
      .btn-secondary {
        padding: 0.6rem 1.12rem;
        font-size: 0.67rem;
        white-space: nowrap;
      }

      .btn-primary svg,
      .btn-secondary svg {
        width: 16px;
        height: 16px;
      }

      .modal-gallery {
        height: 260px;
      }

      .modal-body {
        padding: var(--space-md);
      }

      .modal-includes ul {
        grid-template-columns: 1fr;
      }

      .modal-meta-bar {
        flex-direction: column;
        gap: var(--space-sm);
      }

      .about-photos {
        height: 220px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
        padding: 0 10px; /* safety padding */
      }
      
      .about {
        padding-top: 4rem !important;
      }
      
      .about-container {
        position: relative;
      }
      
      .about-text {
        position: relative;
        z-index: 1;
      }
      
      .desktop-feature-img {
        display: none !important;
      }
      
      .mobile-feature-img {
        display: flex !important;
      }

      .bottom-feature-image-container {
        position: relative;
        margin: 1.5rem auto;
        justify-content: center;
        align-items: center;
        width: 100%;
      }

      .photo-stack-img {
        width: 130px;
        height: 95px;
      }
      .photo-stack-img:nth-child(1) { left: 5%; top: 0; }
      .photo-stack-img:nth-child(2) { left: 50%; top: 15%; transform: translateX(-50%) rotate(-2deg); }
      .photo-stack-img:nth-child(3) { right: 5%; top: 5%; left: auto; }

      .about-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: 100%;
        margin: 0 auto;
      }
      .stat-card {
        padding: 0.8rem;
        align-items: center;
        text-align: center;
      }
      .stat-number {
        font-size: 1.6rem;
      }
      .stat-label {
        font-size: 0.65rem;
      }

      .contact-grid {
        flex-direction: column;
        align-items: center;
      }

      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-brand {
        align-items: center;
      }

      .footer-brand p {
        text-align: center;
      }

      .footer-col ul {
        align-items: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
      }

      .highlights-track {
        gap: var(--space-lg);
      }

      .section-heading {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
      }

      .wave-divider svg {
        height: 50px;
      }

      .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: var(--space-sm);
        right: var(--space-sm);
      }

      .whatsapp-float svg {
        width: 26px;
        height: 26px;
      }
    }

    @media (max-width: 480px) {
      .tour-listing-bottom {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
      }
      .tour-listing-bottom > div:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .tour-listing-buttons {
        width: 100%;
        display: flex;
        gap: 0.5rem;
      }
      .tour-listing-buttons a,
      .tour-listing-buttons button {
        flex: 1;
        text-align: center;
        padding: 0.7rem 0.5rem !important;
        min-width: 0;
      }

      .about-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--space-xs);
        width: 100%;
        margin: 0 auto;
      }
      .stat-card {
        padding: 0.6rem !important;
        align-items: center !important;
        text-align: center !important;
      }
      .stat-number {
        font-size: 1.4rem !important;
      }
      .stat-label {
        font-size: 0.6rem !important;
      }

      .filter-bar {
        gap: 0.4rem;
      }

      .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
      }

      .hero-sticky {
        min-height: 550px;
      }

      .hero-content {
        padding-top: 90px;
      }

      .hero-logo {
        width: 150px;
        margin-bottom: var(--space-sm);
      }

      .hero-heading {
        font-size: clamp(2.275rem, 7vw, 3.64rem);
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 260px;
        padding: 0.53rem 0.98rem;
        font-size: 0.63rem;
        white-space: nowrap;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       SCROLLBAR
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--night);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ocean);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--sky);
    }

    /* Modal scrollbar */
    .modal-content::-webkit-scrollbar {
      width: 6px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: transparent;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 3px;
    }

    /* Lock body scroll when modal open */
    body.modal-open {
      overflow: hidden;
    }