/* ==========================================
   BLUE SHADES DIVING - CUSTOM THEME CSS (UPDATED V5 FINAL)
   ========================================== */

/* 1. CSS VARIABLES & RESET */
:root {
    --primary-blue: #0091d2;      /* Bright sky/ocean blue */
    --primary-hover: #007bb5;
    --dark-navy: #091829;         /* Very dark blue/black for header & hero overlays */
    --ocean-blue: #004b87;        /* Saturated ocean blue for footer */
    --light-bg: #f4f5f8;          /* Light gray background matching reference */
    --white: #ffffff;
    --text-dark: #002540;         /* Dark navy for headings */
    --text-body: #4a5568;         /* Gray color for paragraphs */

    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 0px;       /* Set to 0 for sharp, square corners matching original */
    --border-radius-md: 0px;       /* Set to 0 for sharp, square corners matching original */
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Unified container width across all sections */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.section-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic; /* Match original italics style */
    color: var(--ocean-blue);
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0b0c0d; /* Solid extremely dark gray/black matching original navbar */
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: #0b0c0d;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    gap: 20px;
    box-sizing: border-box;
    overflow: visible;
}

/* Logo Design matching B symbol with stacked text */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
    border-radius: 4px; /* Rounded square icon matching screenshot */
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    margin-left: 2px;
}

.logo-line {
    font-size: 1.05rem; /* Increased logo text height */
    font-weight: 800; /* Bold styling */
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.logo-blue {
    color: #00abec; /* Bright neon sky blue */
}

.logo-white {
    color: #ffffff; /* Solid white */
}

.logo-darkblue {
    color: #0060b6; /* Rich medium-dark blue */
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 10px 0;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #00abec;
}

.nav-menu a.active {
    color: #00abec; /* Active item color matching cyan */
}

/* BOOK A TOUR Button */
.btn-book {
    border: 1px solid rgba(255, 255, 255, 0.35); /* Thin, soft border */
    color: #ffffff;
    padding: 11px 26px; /* Scaled button padding */
    font-family: var(--font-heading);
    font-size: 0.9rem; /* Scaled button font size */
    font-weight: 700;
    border-radius: 0px; /* Completely sharp square corners matching screenshot */
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-book:hover {
    background-color: #ffffff;
    color: #0b0c0d;
    border-color: #ffffff;
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-switcher select {
    padding: 8px 28px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 65px;
}

.language-switcher select:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

.language-switcher select:focus {
    outline: none;
    border-color: #00abec;
    background-color: rgba(255, 255, 255, 0.2);
}

.language-switcher select option {
    background-color: #0b0c0d;
    color: #ffffff;
    padding: 8px;
}

.language-switcher::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 8px;
    pointer-events: none;
    opacity: 0.7;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================
   3. HERO SECTION (SLIDER)
   ========================================== */
.hero-slider {
    height: 80vh;
    min-height: 500px;
    position: relative;
    margin-top: 90px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 5;
}

/* Animations for slide elements */
.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-style: italic; /* Match original typography */
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-content .btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active states triggering cascading transitions */
.hero-slider .slide.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slider .slide.active .hero-content .btn-outline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

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

/* Slider Controls */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px 20px;
    transition: var(--transition-smooth);
}

.slide-arrow:hover {
    color: var(--white);
    scale: 1.1;
}

.slide-arrow.prev { left: 10px; }
.slide-arrow.next { right: 10px; }

/* ==========================================
   4. SPLIT BANNER
   ========================================== */
.split-banner {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.split-col {
    flex: 1 1 50%;
    min-height: 350px;
}

.split-col.text-col {
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px; /* Fallback padding */
}

.split-col.text-col h2 {
    color: var(--white);
    font-size: 2.3rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.15;
}

.split-col.text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.about-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--white);
    padding-bottom: 2px;
    align-self: flex-start;
}

.about-link:hover {
    color: var(--dark-navy);
    border-color: var(--dark-navy);
}

.split-col.img-col {
    background-size: cover;
    background-position: center;
}

.full-row-bar {
    width: 100%;
    display: flex;
    background-color: #09131c; /* Very dark navy/black matching the screenshot */
}

.bar-col {
    flex: 1 1 50%;
}

.bar-col.text-bar-col {
    display: flex;
    align-items: center;
    padding: 20px 40px; /* Fallback padding */
}

/* Mathematically aligns split column text and bottom link to the container starting grid */
@media screen and (min-width: 1320px) {
    .split-col.text-col {
        padding-left: calc((100vw - 1320px) / 2 + 20px);
        padding-right: 8%;
    }
    .bar-col.text-bar-col {
        padding-left: calc((100vw - 1320px) / 2 + 20px);
    }
}

.bar-link {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.bar-link:hover {
    color: var(--primary-blue);
}

/* ==========================================
   5. FLEET SECTION
   ========================================== */
.fleet-section {
    padding: 100px 0;
    background-color: var(--white); /* White background matching screenshot */
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; /* Small gap for a thin divider line between cards */
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hover Zoom Cards Utility */
.card-hover-zoom {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm); /* Sharp borders */
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.card-hover-zoom .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.card-hover-zoom:hover .card-bg {
    transform: scale(1.06);
}

/* Fleet Cards Specific Styling */
.fleet-card {
    height: 580px; /* Taller height matching screenshot aspect ratio */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.fleet-card .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.fleet-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 900;
    font-style: italic; /* Force Italic design styling */
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin: 0;
}

/* ==========================================
   6. WRECK BANNER
   ========================================== */
.wreck-banner {
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    position: relative;
}

.wreck-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wreck-content {
    max-width: 600px;
    color: var(--white);
}

.wreck-content h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-outline-white {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

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

/* ==========================================
   7. ACTIVITIES SECTION
   ========================================== */
.activities-section {
    padding: 100px 0;
    background-color: var(--white); /* Swapped background to white */
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; /* Matching the clean thin divider of the fleet grid */
    width: 100%;
    margin: 0;
    padding: 0;
}

.activity-card {
    height: 480px; /* Increased card height to suit full-width proportion */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.activity-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 900;
    font-style: italic; /* Text style is italic */
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin: 0;
}

/* ==========================================
   8. DIVING LOCATIONS
   ========================================== */
.locations-section {
    padding: 100px 0;
    background-color: var(--light-bg); /* Swapped background to light gray */
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* Matching the clean thin divider of the fleet grid */
    width: 100%;
    margin: 0 0 50px 0; /* Keeps the bottom margin for spacing before button */
    padding: 0;
}

.location-card {
    height: 380px; /* Increased height to suit full-width grid proportion */
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.location-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 800;
    font-style: italic; /* Locations are italic */
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.btn-solid-blue {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--ocean-blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.btn-solid-blue:hover {
    background-color: var(--primary-blue);
    transform: translateY(-1px);
}

/* ==========================================
   9. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white); /* Swapped background to white */
}

.testimonials-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Rating Panel */
.testimonial-summary {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.testimonial-summary h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.stars-row {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.testimonial-summary p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 25px;
}

.btn-write-review {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.5px;
}

.btn-write-review:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Right reviews slider */
.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 45px; /* Added padding to allow slider arrows to display on the sides without clipping */
}

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

.testimonial-card {
    flex: 0 0 calc(50% - 15px); /* Show two cards at a time */
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviewer-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.location-pin {
    display: inline-block;
}

.reviewer-details p {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-top: 2px;
}

.card-stars {
    color: #ffc107;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.testimonial-card .read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    align-self: flex-start;
}

/* Absolute Testimonial Arrows */
.slider-arrow-testimonial {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow-testimonial:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.slider-arrow-testimonial.prev-btn {
    left: 0;
}

.slider-arrow-testimonial.next-btn {
    right: 0;
}

/* ==========================================
   10. FOOTER SECTION
   ========================================== */
.main-footer {
    background-color: #00458a; /* Deep saturated royal/ocean blue matching the screenshot exactly */
    color: #ffffff;
    padding: 80px 0 60px 0; /* Clear spacing at top and bottom */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.1fr; /* Exact width ratios of the three columns */
    gap: 75px; /* Large column spacing matching the visual layout */
}

/* Heading Typography */
.footer-col .footer-title {
    color: #ffffff;
    font-size: 3rem; /* Large italicized 'Stay in touch' */
    font-weight: 800;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.footer-col .footer-title-small {
    color: #ffffff;
    font-size: 1.75rem; /* Slightly smaller italic 'Quick Links' */
    font-weight: 800;
    font-style: italic;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

/* Left Column Description */
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Newsletter Form Styling */
.newsletter-label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-form {
    max-width: 100%;
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    border-radius: 0px; /* Sharp corners */
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group button {
    padding: 0 35px;
    background-color: #ffffff;
    color: #00458a; /* Deep blue matching footer background */
    font-family: var(--font-primary);
    font-weight: 800;
    font-style: italic; /* Italic send text */
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    border-radius: 0px; /* Sharp corners */
    transition: var(--transition-smooth);
}

.newsletter-input-group button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.consent-text {
    font-size: 0.76rem;
    color: #ffffff;
    line-height: 1.45;
    margin-top: 15px;
    max-width: 95%;
}

.form-feedback {
    font-size: 0.85rem;
    margin-top: 10px;
}

.success-message {
    color: #a3e635;
}

.error-message {
    color: #fca5a5;
}

/* Middle Column: Links */
.links-col {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Stack Social Media and Quick Links vertically */
    padding-top: 5px;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 15px;
}

.social-links ul li {
    margin-bottom: 8px;
}

.social-links ul a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}

.social-links ul a:hover,
.quick-links ul a:hover {
    text-decoration: underline;
}

.quick-links ul li {
    margin-bottom: 8px;
}

.quick-links ul a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

/* Right Column: Contact info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item-new {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    font-style: normal;
}

.contact-value {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Footer Bottom (blended seamlessly) */
.footer-bottom {
    background-color: transparent;
    padding: 40px 0 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================
   11. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Large Desktops: 1200px - 1400px */
@media screen and (max-width: 1400px) {
    .nav-menu ul {
        gap: 22px;
    }
    .nav-menu a {
        font-size: 0.8rem;
    }
    .btn-book {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
}

/* Medium Desktops: 1100px - 1200px */
@media screen and (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }
    .nav-menu ul {
        gap: 16px;
    }
    .nav-menu a {
        font-size: 0.77rem;
        letter-spacing: 0.4px;
    }
    .btn-book {
        padding: 9px 16px;
        font-size: 0.78rem;
        letter-spacing: 0.6px;
    }
    .language-switcher select {
        min-width: 58px;
        font-size: 0.78rem;
        padding: 7px 24px 7px 10px;
    }
}

/* Tablets & Small Desktops: up to 1100px → switch to hamburger */
@media screen and (max-width: 1100px) {
    .header-container {
        height: 65px;
        padding: 0 20px;
    }

    .hero-slider {
        margin-top: 65px;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: #0b0c0d;
        padding: 50px 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .nav-menu a {
        font-size: 1.05rem;
        letter-spacing: 0.8px;
        padding: 8px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-actions {
        gap: 12px;
    }

    .btn-book {
        display: none;
    }

    .language-switcher select {
        padding: 7px 26px 7px 10px;
        font-size: 0.78rem;
        min-width: 58px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .split-col {
        flex: 1 1 100%;
    }

    .fleet-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* Tablets: 768px */
@media screen and (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 16px;
    }

    .hero-slider {
        margin-top: 60px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 40px 20px;
    }

    .logo-line {
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .header-actions {
        gap: 10px;
    }

    .language-switcher select {
        padding: 6px 24px 6px 9px;
        font-size: 0.75rem;
        min-width: 54px;
    }

    .language-switcher::after {
        right: 8px;
        font-size: 7px;
    }

    .menu-toggle .bar {
        width: 22px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices: 576px */
@media screen and (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .header-container {
        height: 58px;
        padding: 0 14px;
    }

    .hero-slider {
        margin-top: 58px;
    }

    .nav-menu {
        top: 58px;
        height: calc(100vh - 58px);
        padding: 35px 20px;
    }

    .logo-line {
        font-size: 0.88rem;
        letter-spacing: 1px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .header-actions {
        gap: 8px;
    }

    .language-switcher select {
        padding: 5px 22px 5px 8px;
        font-size: 0.72rem;
        min-width: 50px;
    }

    .language-switcher::after {
        right: 7px;
        font-size: 6px;
    }

    .menu-toggle .bar {
        width: 20px;
        height: 2.5px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .wreck-content h2 {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .links-col {
        flex-direction: column;
        gap: 30px;
    }

    .fleet-card {
        height: 300px;
    }
    .activity-card {
        height: 320px;
    }
    .location-card {
        height: 260px;
    }
}


/* ── Contact Page Styles ── */
.contact-hero {
    height: 340px;
    background-image: linear-gradient(to bottom, rgba(0,10,25,0.65), rgba(0,10,25,0.82)),
                      url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}
@media (max-width: 1100px) { .contact-hero { margin-top: 65px; } }
@media (max-width: 768px)  { .contact-hero { margin-top: 60px; height: 260px; } }
@media (max-width: 576px)  { .contact-hero { margin-top: 58px; height: 220px; } }

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}
.contact-hero p {
    color: rgba(255,255,255,0.75);
    margin-top: 12px;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.45s;
}
@media (max-width: 576px) {
    .contact-hero h1 { font-size: 1.9rem; }
}

/* ── Info Cards Row ── */
.contact-info-section {
    background: #f4f5f8;
    padding: 70px 0 50px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) { .contact-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .contact-cards-grid { grid-template-columns: 1fr; } }

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
    opacity: 0;
    transform: translateY(40px);
}
.contact-info-card.visible {
    animation: fadeUp 0.65s ease forwards;
}
.contact-info-card:hover {
    border-color: #00abec;
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,171,236,0.12);
}
.contact-info-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00abec, #0060b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.35s;
}
.contact-info-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}
.contact-info-card .card-icon svg {
    fill: #fff;
    width: 26px;
    height: 26px;
}
.contact-info-card h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00abec;
    margin-bottom: 10px;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    display: block;
}
.contact-info-card a:hover {
    color: #00abec;
}

/* ── Map + Form Section ── */
.contact-main-section {
    padding: 80px 0 90px;
    background: #fff;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-main-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ── Map ── */
.contact-map-col h3 {
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #002540;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateX(-30px);
}
.contact-map-col h3.visible {
    animation: slideRight 0.7s ease forwards;
}
.contact-map-col .map-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00abec;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: block;
    opacity: 0;
    transform: translateX(-20px);
}
.contact-map-col .map-subtitle.visible {
    animation: slideRight 0.7s ease forwards 0.15s;
}
.map-embed {
    width: 100%;
    height: 360px;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.map-embed.visible {
    opacity: 1;
    transform: translateY(0);
}
.social-row {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid #e2e8f0;
    color: #002540;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(15px);
}
.social-btn.visible {
    animation: fadeUp 0.5s ease forwards;
}
.social-btn:hover { background: #002540; color: #fff; border-color: #002540; }
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Form ── */
.contact-form-col h3 {
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #002540;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateX(30px);
}
.contact-form-col h3.visible {
    animation: slideLeft 0.7s ease forwards;
}
.contact-form-col .form-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00abec;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    display: block;
    opacity: 0;
    transform: translateX(20px);
}
.contact-form-col .form-subtitle.visible {
    animation: slideLeft 0.7s ease forwards 0.15s;
}

/* Alert Messages */
.alert-msg {
    padding: 14px 20px;
    margin-bottom: 22px;
    font-size: 0.88rem;
    font-weight: 600;
    border-left: 4px solid;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}
.alert-success { background: #e6f9f0; border-color: #00b865; color: #007a3d; }
.alert-error   { background: #fdf0f0; border-color: #e74c3c; color: #c0392b; }

/* Form Fields */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 500px) { .form-grid-2 { grid-template-columns: 1fr; } }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(18px);
}
.form-group.visible {
    animation: fadeUp 0.5s ease forwards;
}
.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #002540;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #002540;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    border-radius: 0;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #00abec;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,171,236,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* Honeypot */
.hp-field { display: none !important; }

/* Submit Button */
.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #002540;
    color: #fff;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}
.btn-contact-submit:hover {
    background: #00abec;
    transform: translateY(-2px);
}
.btn-contact-submit svg {
    width: 18px; height: 18px;
    transition: transform 0.3s;
}
.btn-contact-submit:hover svg { transform: translateX(4px); }

/* ── Keyframes ── */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* ── Gallery Hero ── */
.gallery-hero {
    height: 300px;
    background-image: linear-gradient(to bottom, rgba(0,10,25,0.6), rgba(0,10,25,0.85)),
                      url('../images/hero2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}
@media (max-width: 1100px) { .gallery-hero { margin-top: 65px; } }
@media (max-width: 768px)  { .gallery-hero { margin-top: 60px; height: 230px; } }
@media (max-width: 576px)  { .gallery-hero { margin-top: 58px; height: 200px; } }

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: gFadeUp 0.8s ease forwards 0.2s;
}
.gallery-hero p {
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: gFadeUp 0.8s ease forwards 0.42s;
}
@media (max-width: 576px) { .gallery-hero h1 { font-size: 1.9rem; } }

/* ── Gallery Section ── */
.gallery-section {
    padding: 80px 0 90px;
    background: #f4f5f8;
}

/* Uniform grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 1100px) { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .gallery-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-masonry { grid-template-columns: 1fr; } }

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    aspect-ratio: 4 / 3;
    opacity: 0;
    transform: scale(0.96) translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,18,38,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-zoom-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}
.gallery-zoom-icon svg {
    width: 18px; height: 18px;
    fill: #fff;
}

/* Empty state */
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}
.gallery-empty svg {
    width: 64px; height: 64px;
    fill: #cbd5e1;
    margin: 0 auto 20px;
    display: block;
}
.gallery-empty p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ── Pagination ── */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.gallery-pagination a,
.gallery-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    font-size: 0.82rem;
    font-weight: 700;
    color: #002540;
    background: #fff;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    text-decoration: none;
}
.gallery-pagination a:hover {
    background: #00abec;
    color: #fff;
    border-color: #00abec;
}
.gallery-pagination span.active-page {
    background: #002540;
    color: #fff;
    border-color: #002540;
}
.gallery-pagination span.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ── Lightbox ── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}
.lightbox-overlay.open {
    display: flex;
}
.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-inner img {
    max-width: 88vw;
    max-height: 86vh;
    object-fit: contain;
    border: 2px solid rgba(255,255,255,0.08);
    animation: lbZoomIn 0.3s ease;
    display: block;
}
.lightbox-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #fff;
    font-size: 1.2rem;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }
.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    letter-spacing: 1px;
}

@keyframes gFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* ==========================================
   FAQ PAGE
   ========================================== */

/* ── FAQ Hero ── */
.faq-hero {
    height: 320px;
    background-image: linear-gradient(135deg, rgba(0,10,30,0.78) 40%, rgba(0,80,150,0.55)),
                      url('../images/hero3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}
.faq-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #f4f5f8);
}
@media (max-width: 1100px) { .faq-hero { margin-top: 65px; } }
@media (max-width: 768px)  { .faq-hero { margin-top: 60px; height: 240px; } }
@media (max-width: 576px)  { .faq-hero { margin-top: 58px; height: 210px; } }

.faq-hero-content {
    position: relative;
    z-index: 1;
}
.faq-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: faqFadeUp 0.8s ease forwards 0.2s;
}
.faq-hero p {
    color: rgba(255,255,255,0.72);
    margin-top: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    opacity: 0;
    transform: translateY(18px);
    animation: faqFadeUp 0.8s ease forwards 0.42s;
}
@media (max-width: 576px) { .faq-hero h1 { font-size: 1.9rem; } }

/* ── FAQ Section ── */
.faq-section {
    background: #f4f5f8;
    padding: 70px 0 90px;
}

/* ── Search Bar ── */
.faq-search-wrap {
    max-width: 560px;
    margin: 0 auto 55px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-search-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-search-wrap input {
    width: 100%;
    padding: 15px 52px 15px 22px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: #002540;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-search-wrap input:focus {
    border-color: #00abec;
    box-shadow: 0 0 0 3px rgba(0,171,236,0.1);
}
.faq-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    fill: #94a3b8;
    pointer-events: none;
}

/* ── FAQ Grid (2 columns) ── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 0; } }

/* ── Single FAQ Item ── */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-item.faq-hidden {
    display: none;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s;
}
.faq-question:hover {
    color: #00abec;
}
.faq-question h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.5;
    flex: 1;
    transition: color 0.25s;
}
.faq-question:hover h3 { color: #00abec; }
.faq-item.open .faq-question h3 { color: #00abec; }

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.4s;
}
.faq-item.open .faq-icon {
    background: #00abec;
    border-color: #00abec;
    transform: rotate(45deg);
}
.faq-icon svg {
    width: 14px; height: 14px;
    fill: #94a3b8;
    transition: fill 0.3s;
}
.faq-item.open .faq-icon svg { fill: #fff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease,
                opacity 0.35s ease;
    opacity: 0;
    padding: 0 4px;
}
.faq-item.open .faq-answer {
    max-height: 600px;
    opacity: 1;
    padding: 0 4px 22px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.8;
}

/* ── No Results ── */
.faq-no-results {
    display: none;
    text-align: center;
    padding: 50px 20px;
    color: #94a3b8;
    grid-column: 1 / -1;
}
.faq-no-results svg {
    width: 52px; height: 52px;
    fill: #cbd5e1;
    margin: 0 auto 14px;
    display: block;
}
.faq-no-results p {
    font-size: 1rem;
    font-weight: 600;
}

/* ── FAQ Pagination ── */
.faq-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 55px;
    flex-wrap: wrap;
}
.faq-pagination a,
.faq-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    font-size: 0.82rem;
    font-weight: 700;
    color: #002540;
    background: #fff;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.faq-pagination a:hover { background: #00abec; color: #fff; border-color: #00abec; }
.faq-pagination span.active-page { background: #002540; color: #fff; border-color: #002540; }
.faq-pagination span.disabled { opacity: 0.4; pointer-events: none; }

/* ── CTA Banner ── */
.faq-cta {
    background: linear-gradient(135deg, #002540 60%, #005080);
    padding: 70px 20px;
    text-align: center;
}
.faq-cta h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
}
.faq-cta h2.visible { animation: faqFadeUp 0.7s ease forwards; }
.faq-cta p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(14px);
}
.faq-cta p.visible { animation: faqFadeUp 0.7s ease forwards 0.15s; }
.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00abec;
    color: #fff;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(14px);
}
.btn-faq-contact.visible { animation: faqFadeUp 0.7s ease forwards 0.3s; }
.btn-faq-contact:hover { background: #fff; color: #002540; transform: translateY(-2px); }
.btn-faq-contact svg { width: 17px; height: 17px; transition: transform 0.3s; }
.btn-faq-contact:hover svg { transform: translateX(4px); }

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

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* ── About Hero ── */
.about-hero {
    height: 420px;
    background-image: linear-gradient(to right, rgba(0,10,28,0.88) 45%, rgba(0,60,120,0.45)),
                      url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
}
@media (max-width: 1100px) { .about-hero { margin-top: 65px; } }
@media (max-width: 768px)  { .about-hero { margin-top: 60px; height: 320px; } }
@media (max-width: 576px)  { .about-hero { margin-top: 58px; height: 280px; } }

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}
.about-hero-content .hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(16px);
    animation: abFadeUp 0.7s ease forwards 0.1s;
}
.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
    animation: abFadeUp 0.8s ease forwards 0.25s;
}
.about-hero-content h1 span { color: #00abec; }
.about-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(18px);
    animation: abFadeUp 0.8s ease forwards 0.42s;
}
@media (max-width: 576px) {
    .about-hero-content h1 { font-size: 2rem; }
}

/* ── Story Section ── */
.about-story {
    padding: 90px 0;
    background: #fff;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
}
.story-images {
    position: relative;
}
.story-img-main {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.story-img-main.visible { opacity: 1; transform: translateX(0); }

.story-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #00abec, #0060b6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.story-img-badge.visible { opacity: 1; transform: scale(1); }
.story-img-badge strong {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}
.story-img-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    opacity: 0.85;
}
@media (max-width: 576px) {
    .story-img-badge { width: 120px; height: 120px; right: -8px; bottom: -8px; }
    .story-img-badge strong { font-size: 1.8rem; }
}

.story-text .section-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    display: block;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateX(20px);
}
.story-text .section-label.visible { animation: abSlideLeft 0.7s ease forwards; }
.story-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #002540;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
}
.story-text h2.visible { animation: abSlideLeft 0.7s ease forwards 0.1s; }
.story-text p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(14px);
}
.story-text p.visible { animation: abFadeUp 0.7s ease forwards 0.2s; }

/* Checkmarks */
.about-checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 480px) { .about-checks { grid-template-columns: 1fr; } }
.about-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #002540;
    opacity: 0;
    transform: translateY(12px);
}
.about-checks li.visible { animation: abFadeUp 0.5s ease forwards; }
.about-checks li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00abec, #0060b6);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── Stats Bar ── */
.about-stats {
    background: linear-gradient(135deg, #002540 60%, #004070);
    padding: 60px 0;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 768px) { .about-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item .stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}
.stat-item .stat-num span { color: #00abec; }
.stat-item .stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-top: 8px;
}

/* ── Values Section ── */
.about-values {
    background: #f4f5f8;
    padding: 90px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 55px;
}
.section-header .section-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    display: block;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(14px);
}
.section-header .section-label.visible { animation: abFadeUp 0.6s ease forwards; }
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #002540;
    opacity: 0;
    transform: translateY(16px);
}
.section-header h2.visible { animation: abFadeUp 0.6s ease forwards 0.1s; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
    opacity: 0;
    transform: translateY(30px);
}
.value-card.visible { animation: abFadeUp 0.6s ease forwards; }
.value-card:hover {
    border-color: #00abec;
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,171,236,0.1);
}
.value-card .val-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00abec, #0060b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.35s;
}
.value-card:hover .val-icon { transform: rotate(10deg) scale(1.1); }
.value-card .val-icon svg { fill: #fff; width: 28px; height: 28px; }
.value-card h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #002540;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.value-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.8;
}

/* ── Team Section ── */
.about-team {
    background: #fff;
    padding: 90px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }

.team-member-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.team-member-card.visible { opacity: 1; transform: translateY(0); }

.team-member-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.team-member-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}
.team-member-card:hover .team-member-img-wrap img {
    transform: scale(1.06);
    filter: grayscale(0%);
}
.team-member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,18,50,0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.team-member-card:hover .team-member-overlay { opacity: 1; }
.team-social-link {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    transform: translateY(10px);
}
.team-member-card:hover .team-social-link { transform: translateY(0); }
.team-social-link:hover { background: #00abec; border-color: #00abec; }
.team-social-link svg { fill: #fff; width: 15px; height: 15px; }

.team-member-name {
    font-size: 1rem;
    font-weight: 800;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.team-member-job {
    font-size: 0.78rem;
    font-weight: 600;
    color: #00abec;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Ships Section ── */
.about-ships {
    background: #f4f5f8;
    padding: 90px 0;
}
.ships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1100px) { .ships-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .ships-grid { grid-template-columns: 1fr; } }

.ship-card {
    background: #fff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.ship-card.visible { opacity: 1; transform: translateY(0); }
.ship-card:hover { box-shadow: 0 16px 45px rgba(0,37,64,0.12); }

.ship-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.ship-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    filter: brightness(0.95);
}
.ship-card:hover .ship-card-img img { transform: scale(1.07); filter: brightness(1); }

.ship-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,18,50,0.65) 0%, transparent 55%);
}

.ship-card-body {
    padding: 24px 26px 28px;
}
.ship-card-name {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #002540;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: color 0.25s;
}
.ship-card:hover .ship-card-name { color: #00abec; }

.ship-card-desc {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ship-card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}
.ship-spec {
    text-align: center;
}
.ship-spec .spec-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: #002540;
    line-height: 1;
}
.ship-spec .spec-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-top: 4px;
}

/* ── Keyframes ── */
@keyframes abFadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes abSlideLeft { to { opacity: 1; transform: translateX(0); } }

/* ==========================================
   DESTINATIONS PAGE
   ========================================== */
.dest-page {
    padding: 80px 0 100px;
    background: #fff;
    margin-top: 90px;
}
@media (max-width: 1100px) { .dest-page { margin-top: 65px; } }
@media (max-width: 768px)  { .dest-page { margin-top: 60px; padding: 60px 0 80px; } }
@media (max-width: 576px)  { .dest-page { margin-top: 58px; padding: 50px 0 70px; } }

.dest-page-header {
    text-align: center;
    margin-bottom: 50px;
}
.dest-page-header .dest-enjoy {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(14px);
    animation: abFadeUp 0.6s ease forwards 0.1s;
}
.dest-page-header h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #002540;
    opacity: 0;
    transform: translateY(18px);
    animation: abFadeUp 0.7s ease forwards 0.25s;
}
.dest-page-header h1 em {
    font-style: normal;
    color: #00abec;
}
@media (max-width: 576px) { .dest-page-header h1 { font-size: 1.8rem; } }

/* Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 3;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.dest-card.visible { opacity: 1; transform: scale(1); }

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.85);
}
.dest-card:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,10,30,0.82) 0%, rgba(0,10,30,0.1) 55%, transparent 100%);
    transition: background 0.4s ease;
}
.dest-card:hover .dest-card-overlay {
    background: linear-gradient(to top, rgba(0,30,80,0.88) 0%, rgba(0,30,80,0.25) 60%, transparent 100%);
}

.dest-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    transform: translateY(6px);
    transition: transform 0.35s ease;
}
.dest-card:hover .dest-card-body { transform: translateY(0); }

.dest-card-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
}
.dest-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00abec;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.dest-card:hover .dest-card-arrow { opacity: 1; transform: translateY(0); }
.dest-card-arrow svg { width: 14px; height: 14px; fill: #00abec; transition: transform 0.25s; }
.dest-card:hover .dest-card-arrow svg { transform: translateX(4px); }

/* ==========================================
   DESTINATION DETAILS PAGE
   ========================================== */

/* Hero */
.dest-detail-hero {
    position: relative;
    height: 500px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 768px) { .dest-detail-hero { height: 350px; margin-top: 60px; } }
@media (max-width: 576px) { .dest-detail-hero { height: 280px; margin-top: 58px; } }

.dest-detail-hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: ddHeroZoom 8s ease forwards;
}
@keyframes ddHeroZoom { to { transform: scale(1); } }

.dest-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,8,28,0.85) 0%, rgba(0,8,28,0.25) 55%, transparent 100%);
}

.dest-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 44px;
    width: 100%;
}
.dest-detail-hero-content .container { }
.dest-detail-breadcrumb {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    opacity: 0;
    animation: ddFadeUp 0.6s ease forwards 0.3s;
}
.dest-detail-breadcrumb a { color: #00abec; text-decoration: none; }
.dest-detail-breadcrumb a:hover { text-decoration: underline; }
.dest-detail-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    opacity: 0;
    animation: ddFadeUp 0.7s ease forwards 0.45s;
}
@media (max-width: 576px) { .dest-detail-hero-title { font-size: 1.9rem; } }

/* Body */
.dest-detail-body {
    padding: 70px 0 90px;
    background: #fff;
}
.dest-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}
@media (max-width: 1024px) { .dest-detail-layout { grid-template-columns: 1fr; gap: 40px; } }

/* Main content */
.dest-detail-main {}
.dest-detail-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.dest-detail-label.visible { opacity: 1; transform: translateY(0); }
.dest-detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: #002540;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
.dest-detail-title.visible { opacity: 1; transform: translateY(0); }
.dest-detail-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}
.dest-detail-desc.visible { opacity: 1; transform: translateY(0); }

/* Gallery strip */
.dest-gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}
.dest-gallery-strip.visible { opacity: 1; transform: translateY(0); }
.dest-gallery-strip a {
    display: block;
    overflow: hidden;
    border-radius: 0;
}
.dest-gallery-strip a:first-child { grid-row: span 2; }
.dest-gallery-strip img {
    width: 100%; height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.dest-gallery-strip a:first-child img { height: 100%; }
.dest-gallery-strip a:hover img { transform: scale(1.07); }
@media (max-width: 576px) {
    .dest-gallery-strip { grid-template-columns: 1fr 1fr; }
    .dest-gallery-strip a:first-child { grid-row: span 1; }
    .dest-gallery-strip img { height: 130px; }
    .dest-gallery-strip a:first-child img { height: 130px; }
}

/* Tours in this destination */
.dest-tours-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.dest-tours-title.visible { opacity: 1; transform: translateY(0); }

.dest-tour-card {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-decoration: none;
}
.dest-tour-card.visible { opacity: 1; transform: translateX(0); }
.dest-tour-card:hover .dest-tour-name { color: #00abec; }

.dest-tour-thumb {
    width: 90px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
}
.dest-tour-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.dest-tour-card:hover .dest-tour-thumb img { transform: scale(1.08); }

.dest-tour-info { flex: 1; min-width: 0; }
.dest-tour-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.25s;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dest-tour-meta {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.dest-tour-meta span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dest-tour-meta .tour-price {
    color: #00abec;
    font-weight: 900;
    font-size: 0.85rem;
}
.dest-tour-arrow {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #f0f9ff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
}
.dest-tour-card:hover .dest-tour-arrow { background: #00abec; }
.dest-tour-arrow svg {
    width: 16px; height: 16px;
    fill: #00abec;
    transition: fill 0.25s, transform 0.25s;
}
.dest-tour-card:hover .dest-tour-arrow svg { fill: #fff; transform: translateX(2px); }

.dest-no-tours {
    padding: 30px 0;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

/* Sidebar */
.dest-detail-sidebar {}

.dest-sidebar-widget {
    background: #f8fafc;
    padding: 24px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.dest-sidebar-widget.visible { opacity: 1; transform: translateY(0); }
.dest-sidebar-widget-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

/* Other destinations */
.dest-other-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: opacity 0.25s;
}
.dest-other-item:last-child { border-bottom: none; }
.dest-other-item:hover { opacity: 0.75; }
.dest-other-thumb {
    width: 62px; height: 46px;
    flex-shrink: 0;
    overflow: hidden;
}
.dest-other-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.dest-other-item:hover .dest-other-thumb img { transform: scale(1.08); }
.dest-other-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}
.dest-other-item:hover .dest-other-name { color: #00abec; }

/* Keyframe */
@keyframes ddFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   SHIPS (LIVEABOARD) LIST PAGE
   ========================================== */
.ships-page {
    padding: 0 0 100px;
    background: #fff;
    margin-top: 90px;
}
@media (max-width: 768px) { .ships-page { margin-top: 60px; } }
@media (max-width: 576px) { .ships-page { margin-top: 58px; } }

/* Hero banner */
.ships-hero {
    height: 380px;
    background-image: linear-gradient(to right, rgba(0,10,28,0.88) 40%, rgba(0,60,120,0.42)),
                      url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}
.ships-hero-content .sh-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00abec;
    margin-bottom: 12px;
    opacity: 0;
    animation: abFadeUp 0.55s ease forwards 0.2s;
}
.ships-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
    animation: abFadeUp 0.65s ease forwards 0.38s;
}
.ships-hero-content h1 span { color: #00abec; }
.ships-hero-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-top: 14px;
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    animation: abFadeUp 0.65s ease forwards 0.52s;
}
@media (max-width: 576px) { .ships-hero { height: 280px; margin-bottom: 50px; } .ships-hero-content h1 { font-size: 2rem; } }

/* Grid */
.ships-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.ship-list-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s;
}
.ship-list-card.visible { opacity: 1; transform: translateY(0); }
.js-ship-reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.ship-list-card:hover { box-shadow: 0 18px 50px rgba(0,37,64,0.13); }

.ship-list-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.ship-list-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s;
    filter: brightness(0.9);
}
.ship-list-card:hover .ship-list-img img { transform: scale(1.07); filter: brightness(1.02); }

.ship-list-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,12,35,0.75) 0%, transparent 55%);
}
.ship-list-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #00abec;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
}

.ship-list-body {
    padding: 22px 22px 26px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-top: none;
}
.ship-list-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    transition: color 0.25s;
}
.ship-list-card:hover .ship-list-name { color: #00abec; }
.ship-list-desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ship-list-specs {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}
.ship-list-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ship-list-spec .sv { font-size: 1rem; font-weight: 900; color: #002540; line-height: 1; }
.ship-list-spec .sl { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #94a3b8; margin-top: 3px; }

/* ==========================================
   SHIP DETAILS PAGE
   ========================================== */
.ship-detail-hero {
    position: relative;
    height: 520px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 768px) { .ship-detail-hero { height: 360px; margin-top: 60px; } }
@media (max-width: 576px) { .ship-detail-hero { height: 290px; margin-top: 58px; } }

.ship-detail-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: ddHeroZoom 8s ease forwards;
}
.ship-detail-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,8,28,0.88) 0%, rgba(0,8,28,0.2) 55%, transparent 100%);
}
.ship-detail-hero-content {
    position: relative; z-index: 2;
    padding: 0 0 44px; width: 100%;
}
.ship-detail-breadcrumb {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 12px;
    opacity: 0; animation: ddFadeUp 0.6s ease forwards 0.3s;
}
.ship-detail-breadcrumb a { color: #00abec; text-decoration: none; }
.ship-detail-hero-title {
    font-size: 3rem; font-weight: 900;
    color: #fff; text-transform: uppercase;
    letter-spacing: 1px; line-height: 1.1;
    opacity: 0; animation: ddFadeUp 0.7s ease forwards 0.45s;
}
@media (max-width: 576px) { .ship-detail-hero-title { font-size: 1.9rem; } }

/* specs bar below hero */
.ship-specs-bar {
    background: #002540;
    padding: 0;
}
.ship-specs-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.ship-spec-item {
    padding: 30px 50px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.ship-spec-item:last-child { border-right: none; }
.ship-spec-item.visible { opacity: 1; transform: translateY(0); }
.ship-spec-item .ssv {
    display: block; font-size: 2.2rem;
    font-weight: 900; color: #fff; line-height: 1;
}
.ship-spec-item .ssv span { color: #00abec; }
.ship-spec-item .ssl {
    display: block; font-size: 0.75rem;
    font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: rgba(255,255,255,0.5);
    margin-top: 6px;
}
@media (max-width: 576px) { .ship-spec-item { padding: 20px 30px; } .ship-spec-item .ssv { font-size: 1.6rem; } }

/* body layout */
.ship-detail-body { padding: 70px 0 90px; background: #fff; }
.ship-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.ship-detail-label {
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px;
    color: #00abec; margin-bottom: 8px;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.ship-detail-label.visible { opacity: 1; transform: translateY(0); }

.ship-detail-title {
    font-size: 2rem; font-weight: 900; color: #002540;
    margin-bottom: 22px;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
.ship-detail-title.visible { opacity: 1; transform: translateY(0); }

.ship-detail-desc {
    font-size: 0.95rem; color: #475569;
    line-height: 1.9; margin-bottom: 40px;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}
.ship-detail-desc.visible { opacity: 1; transform: translateY(0); }

/* Features Section */
.ship-features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
}
.ship-features-header {
    text-align: center;
    margin-bottom: 36px;
}
.ship-features-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00abec;
    margin-bottom: 10px;
}
.ship-features-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #002540;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ship-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .ship-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ship-features-grid { grid-template-columns: 1fr; } }

.ship-feature-item {
    background: #fff;
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,37,64,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ship-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,37,64,0.12);
}
.ship-feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.ship-feature-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #002540;
    line-height: 1;
    margin-bottom: 6px;
}
.ship-feature-key {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

/* Gallery Header */
.ship-gallery-header {
    margin-bottom: 28px;
    text-align: center;
}
.ship-gallery-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    color: #00abec;
    margin-bottom: 10px;
}
.ship-gallery-title {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    color: #002540;
    letter-spacing: 0px;
    line-height: 1.2;
    text-transform: none;
}
@media (max-width: 576px) { .ship-gallery-title { font-size: 1.8rem; } }

/* gallery grid */
.ship-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 50px;
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.ship-gallery-grid.visible { opacity: 1; transform: translateY(0); }
.ship-gallery-grid a { display: block; overflow: hidden; aspect-ratio: 4/3; }
.ship-gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.ship-gallery-grid a:hover img { transform: scale(1.08); }
@media (max-width: 576px) { .ship-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Tours on this ship */
.ship-tours-title {
    font-size: 1.3rem; font-weight: 900; color: #002540;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.ship-tours-title.visible { opacity: 1; transform: translateY(0); }

/* reuse dest-tour-card styles */

/* sidebar widget */
.ship-sidebar-widget {
    background: #f8fafc; padding: 24px; margin-bottom: 24px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.ship-sidebar-widget.visible { opacity: 1; transform: translateY(0); }
.ship-sidebar-widget-title {
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px;
    color: #00abec; margin-bottom: 18px;
    padding-bottom: 10px; border-bottom: 1px solid #e2e8f0;
}
.ship-other-item {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f1f5f9;
    text-decoration: none; transition: opacity 0.25s;
}
.ship-other-item:last-child { border-bottom: none; }
.ship-other-item:hover { opacity: 0.75; }
.ship-other-thumb { width: 70px; height: 52px; flex-shrink: 0; overflow: hidden; }
.ship-other-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.ship-other-item:hover .ship-other-thumb img { transform: scale(1.08); }
.ship-other-name {
    font-size: 0.82rem; font-weight: 800; color: #002540;
    text-transform: uppercase; letter-spacing: 0.3px; transition: color 0.25s;
}
.ship-other-item:hover .ship-other-name { color: #00abec; }

.lightbox-arrow {
    z-index: 9999;
}