/* Island Ease DR — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

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

:root {
  --navy: #1B3F6E;
  --navy-dark: #122d50;
  --coral: #E8693A;
  --coral-dark: #c9541e;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --gold: #C9922A;
  --bg: #FAFAF8;
  --bg-blue: #EEF4FB;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #dde4ed;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(27,63,110,0.10);
  --shadow-lg: 0 8px 40px rgba(27,63,110,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAVIGATION ── */
.nav { background: var(--white); border-bottom: 2px solid var(--bg-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-weight: 900; font-size: 1.15rem; color: var(--navy); line-height: 1.2; }
.nav-logo span { display: block; font-size: 0.7rem; font-weight: 600; color: var(--coral); letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-weight: 700; font-size: 0.85rem; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--coral); }
.nav-wa { background: var(--whatsapp); color: var(--white) !important; padding: 8px 16px; border-radius: 50px; font-size: 0.8rem !important; display: flex; align-items: center; gap: 6px; }
.nav-wa:hover { background: var(--whatsapp-dark) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 20px; flex-direction: column; gap: 12px; }
.mobile-menu a { font-weight: 700; color: var(--navy); padding: 8px 0; border-bottom: 1px solid var(--bg-blue); font-size: 0.95rem; }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer; border: none; transition: all 0.2s; text-align: center; }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,105,58,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a5ca8 100%); color: var(--white); padding: 72px 20px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 50px; padding: 6px 16px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #f9d78a; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.15rem); opacity: 0.9; max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 40px; }
.hero-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 640px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.hero-photos img { width: 100%; height: 200px; object-fit: cover; }
.hero-photos img:first-child { grid-column: 1 / -1; height: 280px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; overflow-x: auto; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 0; min-width: max-content; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-right: 1px solid var(--border); font-size: 0.85rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.trust-item:last-child { border-right: none; }
.trust-item .ti { font-size: 1.1rem; }

/* ── SECTION BASICS ── */
.section { padding: 72px 20px; }
.section-sm { padding: 48px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; margin-bottom: 40px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--coral); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-top { background: var(--navy); color: var(--white); padding: 28px 24px 24px; }
.service-card-top .price { font-size: 0.8rem; font-weight: 700; background: var(--coral); display: inline-block; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.service-card-top h3 { font-size: 1.2rem; font-weight: 900; line-height: 1.25; margin-bottom: 8px; }
.service-card-top p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }
.service-card-body { padding: 24px; }
.service-includes { list-style: none; margin-bottom: 20px; }
.service-includes li { font-size: 0.9rem; color: var(--text); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.service-includes li::before { content: '✓'; color: var(--whatsapp); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ── MEET JONATHAN ── */
.jonathan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.jonathan-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.jonathan-photos img { border-radius: var(--radius); height: 220px; width: 100%; object-fit: cover; }
.jonathan-photos img:first-child { grid-column: 1 / -1; height: 300px; }
.jonathan-content .section-label { display: block; }
.jonathan-list { list-style: none; margin: 24px 0 32px; }
.jonathan-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.jonathan-list li span.ji { font-size: 1.2rem; }

/* ── HOW IT WORKS ── */
.bg-blue { background: var(--bg-blue); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { text-align: center; padding: 32px 20px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── CRUISE PROMISE ── */
.cruise-box { background: linear-gradient(135deg, var(--navy) 0%, #2a5ca8 100%); color: var(--white); border-radius: 16px; padding: 48px 40px; max-width: 860px; margin: 0 auto; text-align: center; }
.cruise-box h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 20px; }
.cruise-box p { font-size: 1rem; opacity: 0.9; line-height: 1.7; max-width: 640px; margin: 0 auto 16px; }
.cruise-lines { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.2); }
.cruise-lines p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.cruise-names { font-size: 0.95rem; opacity: 0.9; font-weight: 600; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-meta { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.review-name { font-weight: 800; font-size: 0.9rem; color: var(--navy); }
.review-source { font-size: 0.75rem; color: var(--text-muted); }
.review-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-blue); padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; color: var(--navy); margin-top: 3px; }

/* ── DINING ADD-ON ── */
.dining-box { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border-left: 5px solid var(--gold); max-width: 720px; margin: 0 auto; }
.dining-box h3 { font-size: 1.2rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.dining-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { color: var(--coral); }
.faq-q .arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--coral) 0%, #c9541e 100%); color: var(--white); text-align: center; padding: 72px 20px; }
.cta-banner h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 48px 20px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--whatsapp); color: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 0.8rem; opacity: 0.5; text-align: center; }

/* ── PAGE HERO (subpages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); padding: 60px 20px; text-align: center; }
.page-hero .breadcrumb { font-size: 0.8rem; opacity: 0.7; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 14px; line-height: 1.2; }
.page-hero p { font-size: 1rem; opacity: 0.88; max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.price-badge { display: inline-block; background: var(--coral); color: var(--white); font-size: 1.1rem; font-weight: 900; padding: 8px 24px; border-radius: 50px; margin-bottom: 20px; }

/* ── INCLUDES LIST (subpages) ── */
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 32px 0; }
.include-item { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.include-item .ic { font-size: 1.4rem; flex-shrink: 0; }
.include-item div { font-size: 0.9rem; }
.include-item strong { display: block; color: var(--navy); font-weight: 800; margin-bottom: 2px; }
.include-item span { color: var(--text-muted); }

/* ── POPULAR STOPS ── */
.stops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.stop-pill { background: var(--bg-blue); border: 1px solid var(--border); border-radius: 50px; padding: 10px 18px; text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* ── STICKY WA BUTTON ── */
/* ── Phone + Translate ── */
.nav-phone { color: var(--navy); font-weight: 800; font-size: 0.82rem; text-decoration: none; white-space: nowrap; }
.nav-phone:hover { color: var(--coral); }
.translate-btn { background: none; border: 2px solid var(--navy); border-radius: 20px; padding: 4px 12px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.78rem; color: var(--navy); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.translate-btn:hover { background: var(--navy); color: #fff; }
.goog-te-banner-frame, .skiptranslate > iframe { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
@media (max-width: 768px) { .nav-phone { display: none; } }

/* ── Photo Gallery ── */
.photo-gallery { columns: 2; column-gap: 14px; max-width: 980px; margin: 0 auto; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 16px rgba(27,63,110,0.12); }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gall