  :root {
    --ocean: #006B8F;
    --ocean-deep: #003F5C;
    --ocean-light: #4ABFDA;
    --coral: #E8624A;
    --sand: #F5EDD6;
    --sand-dark: #DDD4B8;
    --mint: #7ECBBC;
    --white: #FDFAF4;
    --ink: #1A1208;
    --gold: #C9A84C;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  transition: width .3s, height .3s, opacity .2s;
  mix-blend-mode: multiply;
  opacity: 1;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ocean);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  opacity: 1;
}

/* Pulse effect for mobile touch */
.cursor.cursor-pulse {
  animation: cursorPulse 0.2s ease-out;
}

@keyframes cursorPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Hide by default on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none !important;
  }
}


  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(0,30,45,0.92);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--coral);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: transparent !important;
    color: var(--white) !important;
    padding: 9px 24px !important;
    border: 1.5px solid rgba(255,255,255,0.55) !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    transition: all 0.3s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover {
    background: var(--coral) !important;
    border-color: var(--coral) !important;
  }
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }

/* MOBILE DROPDOWN */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(0, 30, 45, 0.92);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 90px 40px 48px;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu li {
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--coral); padding-left: 8px; }
.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--coral);
  color: var(--white) !important;
  padding: 16px 36px !important;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
  /* HERO */
  #home {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('./Assets/hero-shot.jpg') center 60%/cover no-repeat;
    animation: subtleZoom 22s ease-in-out infinite alternate;
  }
  /* Subtle darkening at top/bottom, keep midrange bright like the reference */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(0,20,35,0.45) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.05) 65%,
        rgba(0,20,35,0.55) 100%);
  }
  @keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
  }

  /* THE BIG BERMUDA TEXT — sits in the mid-layer */
  .hero-destination {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
  }
  .hero-destination-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(100px, 18vw, 224px);
    font-weight: 900;
    letter-spacing: 0.06em;
    padding-bottom: 7%;
    text-transform: uppercase;
    line-height: 1;
    /* Semi-transparent white, showing landscape through it */
    color: #ffffff17;
    -webkit-text-stroke: 1px rgba(255,255,255,0.25);
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.18) 60%,
      rgba(255,255,255,0.06) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
    animation: fadeIn 5.2s 0.2s both;
    white-space: nowrap;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Small content overlay at bottom center */
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 22%;
    padding: 0 40px 0;
  }
  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }
  /* Pill outline button — matches Tripster "Learn More" */
  .btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 40px;
    border: 1.5px solid rgba(255,255,255,0.75);
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.08);
  }
  .btn-hero-outline:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-2px);
  }
  .btn-hero-solid {
    background: var(--coral);
    color: var(--white);
    padding: 14px 40px;
    border: 1.5px solid var(--coral);
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-hero-solid:hover { background: var(--ocean-deep); border-color: var(--ocean-deep); transform: translateY(-2px); }


  .hero-dot:not(.active) { width: 28px; }
  .hero-dot:hover { background: rgba(255,255,255,0.75); }

  /* Floating stats — keep but reposition */
  .hero-stats {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeLeft 0.9s 1.0s forwards;
  }
  .stat-card {
    background: rgba(0,20,35,0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 16px 22px;
    text-align: center;
  }
  .stat-icon {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }
  .stat-number {
    color: rgba(255,255,255,0.55);
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
  }
  .trip-rating-logo {
    width: 20%;
  }
  .trip-rating-logo img {
    width: 5%;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* MARQUEE */
  .marquee-section {
    background: var(--ocean-deep);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.7);
  }
  .marquee-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION COMMON */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--ocean); }
  .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(26,18,8,0.6);
    line-height: 1.7;
    max-width: 580px;
  }

  /* ABOUT */
  #about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .about-image-stack {
    position: relative;
    height: 580px;
  }
  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 110%;
    height: 80%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 40px 40px 80px rgba(0,63,92,0.18);
  }
  .about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 52%;
    object-fit: cover;
    border-radius: 4px;
    border: 6px solid var(--white);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
  }
  .about-badge {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 110px; height: 110px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    z-index: 5;
    box-shadow: 0 8px 30px rgba(232,98,74,0.4);
  }
  .badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }
  .badge-text {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253,250,244,0.85);
    text-align: center;
  }
  .about-text .section-subtitle { max-width: 100%; }
  .about-features {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .feature-icon {
    width: 44px; height: 44px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .feature-desc {
    font-size: 13px;
    color: rgba(26,18,8,0.6);
    line-height: 1.5;
  }

  /* TOURS / BOOK */
  #book {
    background: var(--sand);
    position: relative;
    overflow: hidden;
  }
  #book::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,191,218,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .tour-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,63,92,0.18);
  }
  .tour-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .tour-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
  }
  .tour-card:first-child .tour-img-wrap {
    height: 100%;
  }
  .tour-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .tour-card:hover .tour-img-wrap img { transform: scale(1.05); }
  .tour-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--coral);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
  }
  .tour-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .tour-card:first-child .tour-body { padding: 40px; }
  .tour-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .tour-card:first-child .tour-name { font-size: 30px; }
  .tour-desc {
    font-size: 14px;
    color: rgba(26,18,8,0.6);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(26,18,8,0.55);
  }
  .meta-item span { font-size: 15px; }
  .tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--sand);
    padding-top: 20px;
    margin-top: auto;
  }
  .tour-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ocean);
  }
  .tour-price sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(26,18,8,0.5);
  }
  .tour-book-btn {
    background: var(--ocean-deep);
    color: var(--white);
    border: none;
    padding: 11px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  .tour-book-btn:hover { background: var(--coral); transform: scale(1.03); }

  /* PAYMENT MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.active { display: flex; }
  .modal {
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .modal-header {
    padding: 32px 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal-tour-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
  }
  .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(26,18,8,0.4);
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
  }
  .modal-close:hover { color: var(--coral); }
  .modal-body { padding: 24px 36px 36px; }
  .modal-price-bar {
    background: var(--sand);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal-price-label { font-size: 13px; color: rgba(26,18,8,0.6); }
  .modal-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ocean);
  }
  .form-group { margin-bottom: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,18,8,0.55);
    margin-bottom: 8px;
  }
  .form-input, .form-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--ocean);
  }
  .form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: rgba(26,18,8,0.35);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sand-dark);
  }
  .card-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }
  .card-icon {
    background: var(--sand);
    border: 1px solid var(--sand-dark);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ocean-deep);
  }
  .form-input.card { letter-spacing: 0.1em; }
  .submit-btn {
    width: 100%;
    background: var(--coral);
    color: var(--white);
    border: none;
    padding: 17px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s, transform 0.2s;
  }
  .submit-btn:hover { background: var(--ocean-deep); transform: translateY(-1px); }
  .secure-note {
    text-align: center;
    font-size: 11px;
    color: rgba(26,18,8,0.4);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  /* SUCCESS */
  .success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,0.75);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .success-overlay.active { display: flex; }
  .success-card {
    background: var(--white);
    border-radius: 8px;
    padding: 60px 50px;
    text-align: center;
    max-width: 420px;
    animation: modalIn 0.4s ease;
  }
  .success-icon {
    width: 80px; height: 80px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
  }
  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .success-msg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(26,18,8,0.65);
    line-height: 1.6;
    margin-bottom: 32px;
  }

  /* WHY BERMUDA / EXPERIENCE SECTION */
  .experience-section {
    background: var(--ocean-deep);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
  }
  .experience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./Assets/experience.jpg') center/cover;
    opacity: 0.12;
  }
  .exp-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .exp-left .section-label { color: var(--mint); }
  .exp-left .section-title { color: var(--white); }
  .exp-left .section-title em { color: var(--gold); }
  .exp-left .section-subtitle { color: rgba(253,250,244,0.65); }
  .exp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .exp-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 28px 24px;
    transition: background 0.3s, transform 0.3s;
  }
  .exp-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
  }
  .exp-icon {
    font-size: 32px;
    margin-bottom: 14px;
    width: 19%;
    }
    #icon-second-child {
        width: 23%;
    }
    #icon-second-last-child{
        width: 14%;
    }
    #icon-last-child{
        width: 12%;
    }
  .exp-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
  }
  .exp-desc {
    font-size: 13px;
    color: rgba(253,250,244,0.55);
    line-height: 1.6;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--white);
    padding: 120px 60px;
    text-align: center;
  }
  .testimonials .section-title { margin-bottom: 60px; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
  }
  .testi-card {
    background: var(--sand);
    border-radius: 6px;
    padding: 36px;
    position: relative;
  }
  .testi-quote {
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    line-height: 0.5;
    color: var(--coral);
    margin-bottom: 20px;
    display: block;
  }
  .testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  .testi-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .testi-location {
    font-size: 12px;
    color: rgba(26,18,8,0.45);
  }
  .testi-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* CONTACT */
  #contact {
    background: var(--sand);
    padding: 120px 60px;
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
  }
  .contact-info { }
  .contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand-dark);
  }
  .contact-detail:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
  .contact-icon {
    width: 48px; height: 48px;
    background: var(--ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .contact-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26,18,8,0.45);
    margin-bottom: 4px;
  }
  .contact-value {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
  }
  .contact-form {
    background: var(--white);
    border-radius: 6px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  }
  .contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    padding: 80px 60px 40px;
    color: rgba(253,250,244,0.6);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo {
    color: var(--white);
    font-size: 24px;
    display: block;
    margin-bottom: 16px;
    text-decoration: none;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(253,250,244,0.5);
    margin-bottom: 28px;
  }
  .social-links {
    display: flex;
    gap: 14px;
  }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(253,250,244,0.5);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--coral); color: var(--coral); }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(253,250,244,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--coral); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }

  @media (max-width: 1024px) {
    .vehicle-grid { grid-template-columns: 1fr; }
    .charter-form-wrap { grid-template-columns: 1fr; }
    .price-summary { position: static; }
  }
  @media (max-width: 600px) {
    .cf-section { padding: 24px 20px; }
    .cf-row { grid-template-columns: 1fr; }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* SCROLL TO TOP */
  .scroll-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 46px; height: 46px;
    background: var(--coral);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,98,74,0.4);
  }
  .scroll-top.visible { opacity: 1; transform: none; }
  .scroll-top:hover { background: var(--ocean-deep); transform: translateY(-2px); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    nav { padding: 24px 68px; }
    nav.scrolled { padding: 16px 68px; }
    section { padding: 80px 30px; }
    #about { grid-template-columns: 1fr; gap: 60px; padding: 80px 30px; }
    .about-image-stack { height: 420px; }
    .about-img-main { width: 100%; }
    .tours-grid { grid-template-columns: 1fr; }
    .tour-card:first-child { grid-column: 1; display: block; }
    .tour-card:first-child .tour-img-wrap { height: 260px; }
    .exp-inner { grid-template-columns: 1fr; gap: 50px; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stats { display: none; }
    .hero-content { padding: 0 30px 80px; }
    .tours-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .exp-cards { grid-template-columns: 1fr 1fr; }
    .hero-destination-text { font-size: clamp(72px, 18vw, 160px); }
  }

  @media (max-width: 600px) {
    nav { padding: 22px 24px; }
    nav.scrolled { padding: 16px 24px; }
    .nav-links { display: none; }
    .cursor { opacity: 0; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .footer-top { grid-template-columns: 1fr; }
    .exp-cards { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .experience-section, .testimonials, #contact { padding: 80px 20px; }
    .contact-form { padding: 30px 24px; }
    .hero-destination-text { font-size: clamp(52px, 18vw, 90px); letter-spacing: 0.02em; }
    .hero-dots { display: none; }
    .hero-content { padding: 0 20px 0; margin-top: 66%;}
  }