/* 
  BEHIKE CRUISE - PREMIUM DESIGN SYSTEM
  ========================================
  Organized by component with consolidated breakpoints at bottom.
*/

/* ===== DESIGN TOKENS ===== */

:root {
    --primary: #152245;
    --accent: #c9a050;
    --bg-white: #ffffff;
    --bg-ivory: #f5f1e6;
    --text-primary: #152245;
    --text-muted: rgba(0, 0, 0, 0.6);
    --button-black: #000000;
    --glass-border: rgba(0, 0, 0, 0.05);
    --white: #ffffff;
    --cream: #fdf8ef;

    --font-heading: 'Marcellus', serif;
    --font-body: 'Noto Sans', sans-serif;

    --section-padding: 80px;
    --container-width: 1280px;
}

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* ===== TYPOGRAPHY HELPERS ===== */

.text-center {
    text-align: center;
}

.text-navy {
    color: var(--primary);
}

.text-gold {
    color: var(--accent);
}

.bg-ivory {
    background-color: var(--bg-ivory);
}

.bg-white {
    background-color: var(--bg-white);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 40px;
}

/* ===== LAYOUT ===== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
}

/* ===== GLASS CARD UTILITY ===== */

.glass {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.overflow-hidden {
    overflow: hidden;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 4px;
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: var(--font-body);
}

.btn-block {
    width: 100%;
}

/* ===== NAVBAR ===== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

nav.scrolled .logo {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav.scrolled .nav-links a:not(.btn) {
    color: var(--primary);
}

.btn-book-nav {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book-nav:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

nav.scrolled .menu-toggle span {
    background: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SLIDER ===== */

.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slides {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content.text-left {
    text-align: left;
    max-width: 700px;
    padding-left: 60px;
}

.hero-title {
    font-size: 4.5rem;
    color: #ffffff;
    line-height: 1.1;
    opacity: 0;
    animation: revealUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    opacity: 0;
    animation: revealUp 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-container {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 5;
}

.hero-bottom-cta {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 16px 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== BOAT SPECS ===== */

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.spec-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spec-val {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.spec-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.spec-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--cream);
}

.specs-list {
    margin-top: 30px;
}

/* ===== PROMISE SECTION ===== */

.promise-section {
    padding: 40px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.promise-item h3 {
    font-size: 1.2rem;
    margin: 15px 0;
    color: var(--primary);
    font-family: var(--font-heading);
}

.promise-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.promise-icon {
    font-size: 2.5rem;
    display: block;
}

/* ===== VESSEL SECTION ===== */

.split-vessel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
}

.vessel-slider-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.vessel-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vessel-slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.vessel-slider-controls button {
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.vessel-slider-controls button:hover {
    background: #333;
}

/* ===== CABIN SECTION ===== */

.cabin-section {
    padding: 50px 0;
    overflow: hidden;
}

.cabin-grid.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cabin-grid .cabin-card {
    border-radius: 8px;
    overflow: hidden;
}

.cabin-grid .cabin-card .cabin-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Cabin Image Slider */
.cabin-image-slider {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.cabin-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.cabin-slide.active {
    opacity: 1;
    display: block !important;
    z-index: 2;
}

.slider-controls .prev-btn,
.slider-controls .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.slider-controls .prev-btn:hover,
.slider-controls .next-btn:hover {
    background: var(--primary);
    color: white;
}

.slider-controls .prev-btn {
    left: 15px;
}

.slider-controls .next-btn {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.slide-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* ===== DESTINATIONS CAROUSEL ===== */

.destinations-carousel {
    padding: 50px 0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.destination-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1.2;
}

.dest-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.6s ease;
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.dest-info h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.dest-explore {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}

.destination-card:hover .dest-explore {
    opacity: 1;
    transform: translateY(0);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== PRICING SECTION ===== */

.pricing-section {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card:hover {
    border-color: var(--accent);
}

/* Pricing Table */
.pricing-table-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
    border: 1px solid var(--glass-border);
}

.elegant-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.elegant-pricing-table th {
    background: var(--bg-ivory);
    color: var(--primary);
    text-align: left;
    padding: 24px 40px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
}

.elegant-pricing-table td {
    padding: 25px 40px;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}

.elegant-pricing-table tr:last-child td {
    border-bottom: none;
}

.elegant-pricing-table .cabin-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.elegant-pricing-table .cabin-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.elegant-pricing-table .cabin-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.elegant-pricing-table .btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.elegant-pricing-table .btn-text:hover {
    color: var(--accent);
    padding-left: 5px;
}

.elegant-pricing-table tr:hover td {
    background-color: #fafafa;
}

/* ===== BOOKING FORM ===== */

.booking-section {
    padding: 50px 0;
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    flex: 1;
}

.booking-form label {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
}

/* Payment Methods */
.payment-methods {
    margin: 30px 0;
}

.method-label {
    margin-bottom: 15px;
    font-weight: 600;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.method-item input {
    display: none;
}

.method-box {
    display: block;
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.method-item input:checked+.method-box {
    border-color: var(--accent);
    background: rgba(201, 160, 80, 0.1);
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.pay-icon svg {
    display: block;
}

.pay-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
    padding-bottom: 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 34, 69, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.instagram-icon {
    font-size: 2rem;
    color: #fff;
}

.gallery-cta {
    margin-top: 50px;
    text-align: center;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.instagram-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== REVIEWS SECTION ===== */

.reviews-section {
    padding: 50px 0;
    background: var(--bg-ivory);
}

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
    position: relative;
}

.review-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 25px;
}

.review-author strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.review-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ===== JOURNAL SECTION ===== */

.journal-preview {
    padding: 50px 0;
}

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 50px 0;
}

/* ===== FOOTER ===== */

.footer {
    padding: 80px 0 40px;
    background: #ffffff;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-info .logo {
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 350px;
}

.footer h4 {
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Social Links */
.social-icon {
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent) !important;
}

/* ===== FLOATING WHATSAPP ===== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.wa-icon {
    font-size: 1.3rem;
}

/* ===== DESTINATION DETAIL PAGES ===== */

.dest-detail-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.dest-hero-overlay {
    width: 100%;
    padding: 120px 0 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.dest-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    margin: 10px 0;
    letter-spacing: -1px;
}

.dest-hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--accent);
}

.dest-content-section {
    padding: 80px 0;
}

.dest-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.dest-main-copy h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
}

.dest-main-copy p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dest-main-copy strong {
    color: var(--primary);
}

.dest-highlights {
    background: var(--bg-ivory);
    border-radius: 12px;
    padding: 35px 30px;
    position: sticky;
    top: 120px;
}

.dest-highlights h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.dest-highlights ul {
    list-style: none;
    padding: 0;
}

.dest-highlights li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.dest-highlights li:last-child {
    border-bottom: none;
}

.dest-cta {
    margin-top: 30px;
    text-align: center;
}

.dest-cta .btn {
    width: 100%;
}

/* ===== SECTION SPACING OVERRIDES ===== */

#ai-summary {
    padding: 40px 0 !important;
}

#vessel {
    padding: 50px 0;
}

#itinerary {
    padding: 50px 0;
}


/* ================================================================
   RESPONSIVE BREAKPOINTS (consolidated - mobile first)
   ================================================================ */

/* ----- Tablet (max-width: 1024px) ----- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- Tablet/Small Desktop (max-width: 992px) ----- */
@media (max-width: 992px) {
    .split-vessel {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ----- Destination Pages (max-width: 900px) ----- */
@media (max-width: 900px) {
    .dest-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dest-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .dest-highlights {
        position: static;
        margin-top: 40px;
    }

    .dest-content-grid .dest-img-responsive {
        height: auto !important;
    }
}

/* ----- Mobile (max-width: 768px) ----- */
@media (max-width: 768px) {

    /* Typography */
    .section-title {
        font-size: 2rem !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
    }

    /* Layout */
    .container {
        padding: 0 20px;
    }

    /* Navigation - Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 40px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links a:not(.btn) {
        color: var(--primary) !important;
        font-size: 1rem;
    }

    .btn-book-nav {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero-content.text-left {
        padding-left: 0;
        text-align: center;
    }

    .hero-cta-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 60px;
    }

    /* Vessel */
    .split-vessel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vessel-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .vessel-actions .btn {
        width: 100%;
        text-align: center;
    }

    .vessel-slider-controls button,
    .slider-controls button {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    /* Cabins */
    .cabin-grid.pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cabin-grid .cabin-card .cabin-img {
        height: 200px;
    }

    .cabin-grid .cabin-card .cabin-card-body {
        padding: 20px;
    }

    .cabin-grid .cabin-card .cabin-card-body h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .cabin-grid .cabin-card .cabin-card-body p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Pricing Table */
    .elegant-pricing-table th,
    .elegant-pricing-table td {
        padding: 15px 20px;
        font-size: 0.8rem;
    }

    .elegant-pricing-table .cabin-name {
        font-size: 1rem;
    }

    .pricing-table-wrapper {
        margin: 0 -20px;
        width: calc(100% + 40px);
        border-radius: 0;
        border-left: none;
        border-right: none;
        position: relative;
    }

    .pricing-table-wrapper::after {
        content: 'Swipe ⟷';
        display: block;
        text-align: center;
        font-size: 0.7rem;
        color: var(--accent);
        padding: 10px;
        background: var(--bg-ivory);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* Promise Grid */
    .promise-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .promise-grid::-webkit-scrollbar {
        display: none;
    }

    .promise-item {
        flex: 0 0 200px;
        scroll-snap-align: start;
        background: #fff;
        padding: 25px 20px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid var(--glass-border);
    }

    /* Gallery */
    .gallery-grid {
        gap: 10px;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 280px;
        padding: 30px;
    }

    /* Form */
    .form-row {
        flex-direction: column;
    }

    /* Footer */
    .footer {
        padding-bottom: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Floating WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Section Spacing */
    #ai-summary {
        padding: 30px 0 !important;
    }

    .promise-section {
        padding: 30px 0;
    }

    #vessel,
    .cabin-section,
    .destinations-carousel,
    .pricing-section,
    .booking-section,
    .reviews-section,
    .journal-preview,
    .faq-section,
    #itinerary {
        padding: 35px 0;
    }

    .dest-hero-title {
        font-size: 2.5rem;
    }
}

/* ----- Small Mobile (max-width: 480px) ----- */
@media (max-width: 480px) {
    .hero-slide {
        background-position: 70% center;
    }

    .dest-info h3 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem !important;
    }
}