@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ocean-deep: #0a2235;
  --ocean-mid: #0d3b5c;
  --ocean-teal: #0e7c7b;
  --ocean-light: #2ec4b6;
  --sand: #f5e6c8;
  --coral: #ff6b6b;
  --gold: #f7c948;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #3a4a5c;
  --text-light: #7a8fa0;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ocean-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,34,53,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 5vw;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  color: var(--ocean-light); text-decoration: none;
  letter-spacing: -0.5px; line-height: 1.1;
}
.logo span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--white); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.3px; cursor: pointer;
  transition: color 0.2s;
  padding-bottom:11px;
}
.nav-links a:hover { color: var(--ocean-light); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--ocean-mid); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 0.5rem; min-width: 272px;
  opacity: 0; pointer-events: none;
  transition: all 0.2s; list-style: none; margin-top: 8px;
}
.nav-links li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown li a {
  display: block; padding: 0.65rem 1rem; border-radius: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.85rem;
}
.dropdown li a:hover { background: var(--glass); color: var(--ocean-light); }

.nav-cta {
  background: var(--ocean-teal) !important; color: var(--white) !important;
  padding: 0.55rem 1.3rem; border-radius: 40px;
  font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important;
  display: inline-block;
}
.nav-cta:hover { background: var(--ocean-light) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--ocean-deep); z-index: 999; overflow-y: auto; padding: 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 1rem 0; color: var(--white); text-decoration: none;
  font-size: 1.05rem; border-bottom: 1px solid var(--glass-border);
}
.mobile-menu a.sub { padding-left: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.mobile-menu .mob-label { color: var(--ocean-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; padding: 1.2rem 0 0.3rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--ocean-teal); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.25s; letter-spacing: 0.3px;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--ocean-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(46,196,182,0.3); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3); padding: 0.9rem 2.2rem;
  border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--ocean-light); color: var(--ocean-light); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section { padding: 90px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.alt-bg { background: linear-gradient(160deg, rgba(13,59,92,0.3), rgba(10,34,53,0.5)); }

.section-label-tag {
  display: inline-block; color: var(--ocean-light); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 1rem;
}
h2.section-title em { font-style: italic; color: var(--ocean-light); }
.section-sub { color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.65; max-width: 560px; font-weight: 300; margin-bottom: 3rem; }
.ocean-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--ocean-light), var(--ocean-teal)); border-radius: 3px; margin: 1rem 0 2.5rem; }
.text-center { text-align: center; }
.text-center .ocean-divider { margin: 1rem auto 2.5rem; }

/* ─── TOUR CARDS ─── */
.tour-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.tour-card {
  background: linear-gradient(135deg, rgba(13,59,92,0.6), rgba(10,34,53,0.8));
  border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden;
  transition: all 0.3s; text-decoration: none; color: var(--white); display: block;
}
.tour-card:hover { transform: translateY(-6px); border-color: rgba(46,196,182,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.card-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-teal));
  display: flex; align-items: center; justify-content: center;
}
.card-emoji { font-size: 5rem; opacity: 0.5; }
.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--coral); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem;
  border-radius: 40px;
}
.card-body { padding: 1.5rem; }
.card-price-tag { color: var(--ocean-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.2; }
.card-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; font-weight: 300; }
.card-meta { display: flex; gap: 0.6rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.meta-pill { background: rgba(46,196,182,0.12); border: 1px solid rgba(46,196,182,0.2); color: var(--ocean-light); font-size: 0.78rem; padding: 0.3rem 0.7rem; border-radius: 20px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.card-price small { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.card-price s { font-size: 1rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-right: 0.3rem; }
.card-cta { background: var(--ocean-teal); color: var(--white); border: none; padding: 0.6rem 1.3rem; border-radius: 40px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.card-cta:hover { background: var(--ocean-light); }

/* ─── FEATURES ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-box {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.8rem; transition: all 0.25s;
}
.feature-box:hover { background: rgba(14,124,123,0.15); border-color: rgba(46,196,182,0.3); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-text { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

/* ─── BLOG CARDS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.3s; text-decoration: none; color: var(--white); display: block;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(46,196,182,0.3); }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, var(--ocean-mid), rgba(14,124,123,0.4)); }
.blog-card-body { padding: 1.5rem; }
.blog-tag { color: var(--ocean-light); font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.3; }
.blog-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }
.blog-card-footer { padding: 0 1.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 130px 5vw 60px;
  background: linear-gradient(160deg, #0a1e30, #0d3b5c);
  position: relative; overflow: hidden;
}
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--ocean-teal), transparent); }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 0.7rem; }
.page-header h1 em { font-style: italic; color: var(--ocean-light); }
.page-header p { color: rgba(255,255,255,0.65); max-width: 540px; line-height: 1.65; font-weight: 300; }

/* ─── TOUR PAGE HERO ─── */
.tour-hero {
  min-height: 60vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden; padding: 120px 5vw 60px;
  background: linear-gradient(160deg, #0a1e30, #0d3b5c);
}
.tour-hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,34,53,0.4) 0%, rgba(10,34,53,0.85) 100%); z-index: 1; }
.tour-hero-emoji { position: absolute; right: 5vw; top: 50%; transform: translateY(-50%); font-size: clamp(6rem, 15vw, 14rem); opacity: 0.12; z-index: 0; }
.tour-hero-content { position: relative; z-index: 2; max-width: 680px; }
.rating-badge { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.tour-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.tour-hero-sub { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.6; font-weight: 300; margin-bottom: 2rem; }
.tour-hero-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tour-meta-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 0.83rem; padding: 0.45rem 1rem; border-radius: 40px; }

/* ─── TOUR BODY ─── */
.tour-body { padding: 60px 5vw; background: #0a1628; }
.tour-body-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.tour-section { margin-bottom: 3rem; }
.tour-section h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; margin-bottom: 1.2rem; }
.tour-section h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--ocean-light); text-transform: uppercase; letter-spacing: 1px; }
.tour-section p { color: rgba(255,255,255,0.72); line-height: 1.75; font-weight: 300; margin-bottom: 1rem; font-size: 0.97rem; }

.highlights-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.highlights-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.highlights-list li::before { content: '✦'; color: var(--ocean-light); flex-shrink: 0; font-size: 0.75rem; margin-top: 3px; }

.schedule-list { list-style: none; }
.schedule-item { display: flex; gap: 1.2rem; padding: 0.9rem 0; border-bottom: 1px solid var(--glass-border); }
.schedule-time { color: var(--ocean-light); font-size: 0.82rem; font-weight: 600; min-width: 105px; padding-top: 2px; }
.schedule-event { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* ─── BOOKING SIDEBAR ─── */
.booking-card {
  background: linear-gradient(135deg, rgba(13,59,92,0.7), rgba(10,34,53,0.9));
  border: 1px solid rgba(46,196,182,0.25); border-radius: 20px;
  padding: 17px; position: sticky; top: 90px;
}
.booking-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.booking-price { font-size: 2.2rem; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--gold); line-height: 1; }
.booking-price .old-price { font-size: 1.1rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-right: 0.4rem; }
.booking-price .per { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; font-weight: 300; }
.booking-divider { border: none; border-top: 1px solid var(--glass-border); margin: 1.3rem 0; }
.booking-detail { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; font-size: 0.9rem; }
.booking-detail-label { color: rgba(255,255,255,0.55); }
.promo-box { background: rgba(247,201,72,0.1); border: 1px solid rgba(247,201,72,0.25); border-radius: 10px; padding: 0.8rem 1rem; margin-bottom: 1.3rem; }
.promo-box p { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin: 0; }
.promo-box small { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.btn-book { width: 100%; background: var(--ocean-teal); color: var(--white); border: none; padding: 1rem; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
.btn-book:hover { background: var(--ocean-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(46,196,182,0.3); }
.booking-guarantee { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 1rem; }
.calendar-placeholder { background: rgb(14, 124, 123);; border: 1px dashed rgba(255,255,255,0.2); border-radius: 10px; padding: 6px; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.83rem; margin-bottom: 0.8rem; }

/* ─── BRING GRID ─── */
.bring-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.8rem; }
.bring-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 0.9rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.bring-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 0.8rem 1rem; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--ocean-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--ocean-deep); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-info-item h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--ocean-light); letter-spacing: 1px; text-transform: uppercase; }
.contact-info-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.5; font-weight: 300; }

/* ─── ABOUT ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-box { border-radius: 20px; background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-teal)); height: 380px; display: flex; align-items: center; justify-content: center; font-size: 8rem; }
.about-content p { color: rgba(255,255,255,0.68); line-height: 1.75; font-weight: 300; margin-bottom: 1rem; }

/* ─── LEGAL ─── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 2rem 0 0.7rem; color: var(--ocean-light); }
.legal-content p { color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 300; margin-bottom: 0.8rem; font-size: 0.95rem; }
.legal-content ul { padding-left: 1.5rem; color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }

/* ─── SITEMAP ─── */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.sitemap-section h3 { color: var(--ocean-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.sitemap-section ul { list-style: none; }
.sitemap-section ul li { margin-bottom: 0.5rem; }
.sitemap-section ul li a { color: rgba(255,255,255,0.65); font-size: 0.92rem; text-decoration: none; transition: color 0.2s; }
.sitemap-section ul li a:hover { color: var(--ocean-light); }

/* ─── BLOG POST ─── */
.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--ocean-light); }
.blog-post h3 { font-size: 1.05rem; margin: 1.5rem 0 0.6rem; font-weight: 600; }
.blog-post p { color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }
.blog-post ul { padding-left: 1.5rem; color: rgba(255,255,255,0.7); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.post-meta { display: flex; gap: 1.5rem; color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 2rem; flex-wrap: wrap; }
.spot-card { background: var(--glass); border: 1px solid rgba(46,196,182,0.2); border-radius: 16px; padding: 1.8rem; margin: 2rem 0; }
.spot-card h3 { color: var(--ocean-light); margin-top: 0; font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.blog-cta-box { margin-top: 3rem; padding: 1.5rem; background: var(--glass); border: 1px solid rgba(46,196,182,0.2); border-radius: 16px; text-align: center; }
.blog-cta-box p.cta-headline { color: var(--ocean-light); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-cta-box p { font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ─── FOOTER ─── */
footer { background: #061320; border-top: 1px solid var(--glass-border); padding: 60px 5vw 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; font-weight: 300; margin-top: 0.8rem; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--ocean-light); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ─── HERO (home only) ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a1e30 0%, #0d3b5c 45%, #0a2235 100%);
  background-image: url(/images/HeroBG.jpg);
  background-size: cover;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-circles::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(14,124,123,0.18) 0%, transparent 70%); top: -100px; right: -100px; }
.hero-bg-circles::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%); bottom: 100px; left: -50px; }
.hero-content { text-align: center; z-index: 2; padding: 120px 20px 80px; max-width: 860px; }
.hero-eyebrow { display: inline-block; background: rgba(46,196,182,0.15); border: 1px solid rgba(46,196,182,0.3); color: var(--ocean-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 40px; margin-bottom: 1.8rem; animation: fadeUp 0.6s ease both; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.4rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero h1 em { color: var(--ocean-light); font-style: italic; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.65; font-weight: 300; animation: fadeUp 0.7s 0.2s ease both; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--ocean-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 0.3rem; }
.hero-waves { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; overflow: hidden; }
.hero-waves svg { width: 100%; height: 100%; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── RESPONSIVE ─── */
@media(max-width: 900px) {
  .tour-body-inner { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .highlights-list { grid-template-columns: 1fr; }
}
@media(max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}
