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

:root {
    --navy: #0B1D3A;
    --navy-mid: #142D56;
    --navy-light: #1E4080;
    --ocean: #1565C0;
    --wave: #0EA5E9;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --amber-light: #FEF3C7;
    --cream: #FAFAF7;
    --white: #FFFFFF;
    --text-dark: #0B1D3A;
    --text-mid: #374151;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --success: #059669;
    --danger: #DC2626;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --ff-head: 'Playfair Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ——— TOPBAR ——— */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 0;
    text-align: center;
}
.topbar strong { color: var(--amber); }

/* ——— NAV ——— */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.logo, .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon, .nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.logo-text, .nav-logo-text {
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.logo-text span, .nav-logo-text small {
    display: block;
    font-size: 10px;
    font-family: var(--ff-body);
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }

.nav-cta {
    background: var(--amber);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 14px;
    transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }

/* ——— URGENCY STRIP ——— */
.urgency-strip {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 5%;
    display: flex;
    justify-content: center;
    gap: 48px;
    overflow-x: auto;
}
.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.urgency-item strong { color: var(--amber); }

/* ——— HERO ——— */
.hero {
    position: relative;
    background: var(--navy);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 5% 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21,101,192,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(14,165,233,0.15) 0%, transparent 50%),
        var(--navy);
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.waves svg { display: block; width: calc(100% + 1.3px); height: 80px; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--amber);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--ff-head);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic;
    color: var(--amber);
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}
.hero-stat {
    text-align: center;
}
.hero-stat .num {
    display: block;
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--amber);
}
.hero-stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
}
.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
}

/* ——— BOOKING WIDGET ——— */
.booking-card {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    max-width: 520px;
    margin-left: auto;
    animation: slideUp 0.6s ease 0.2s both;
}

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

.booking-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--amber);
    border-radius: 4px;
}

.trip-type-tabs {
    display: flex;
    background: #F3F4F6;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px;
}
.trip-tab {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    border: none;
    background: transparent;
}
.trip-tab.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-row.full { grid-template-columns: 1fr; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.form-group select,
.form-group input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: var(--ff-body);
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--ocean);
}

.passengers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.pass-counter {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pass-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pass-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pass-btn {
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    transition: all 0.15s;
}
.pass-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

.search-btn {
    width: 100%;
    background: var(--amber);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--ff-body);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.01em;
}
.search-btn:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.search-btn:active { transform: translateY(0); }

.booking-footer {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}
.booking-footer strong { color: var(--success); }

/* ——— TRUST BAR ——— */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 5%;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-icon {
    font-size: 18px;
}

/* ——— SECTION LAYOUT ——— */
section {
    padding: 80px 5%;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ——— WHY SECTION ——— */
.why-section {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
    border-color: var(--ocean);
    transform: translateY(-4px);
}
.why-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.why-highlight {
    font-weight: 700;
    color: var(--success);
    font-size: 15px;
    margin-top: 14px;
    display: block;
}

/* ——— PRICE SECTION ——— */
.prices-section { background: var(--cream); }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}
.price-card:hover { border-color: var(--ocean); transform: translateY(-3px); }
.price-card.peak {
    border-color: var(--amber);
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}
.price-card.best-value {
    border-color: var(--success);
}
.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.badge-best { background: var(--success); color: white; }
.badge-peak { background: var(--amber); color: var(--navy); }

.price-month {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.price-season {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.price-amount {
    font-family: var(--ff-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.price-amount .currency { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-amount .per { font-size: 12px; font-weight: 400; color: var(--text-muted); display: block; margin-top: 4px; }

.price-ship {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.price-cta-btn {
    margin-top: 14px;
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    border: 1.5px solid var(--navy);
    background: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--ff-body);
}
.price-cta-btn:hover { background: var(--navy); color: white; }
.price-card.best-value .price-cta-btn {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.price-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Price cards – actual HTML class styles */
.price-value {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin: 12px 0 6px;
}
.price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.price-card:first-child .price-note { color: var(--success); font-weight: 600; }
.price-card-hot .price-note { color: var(--danger); font-weight: 600; }

.price-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.2s;
}
.price-btn:hover { background: var(--navy); color: var(--white); }
.price-card:first-child .price-btn {
    background: var(--success); border-color: var(--success); color: var(--white);
}
.price-card:first-child .price-btn:hover { background: #047857; }

.price-card-hot {
    border-color: var(--amber);
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}
.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    background: var(--amber);
    color: var(--navy);
}
.price-card { position: relative; }

.prices-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
}

/* ——— FLEET ——— */
.fleet-section { background: var(--navy); }
.fleet-section .section-title { color: var(--white); }
.fleet-section .section-label { color: var(--amber); }
.fleet-section .section-sub { color: rgba(255,255,255,0.6); }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.fleet-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}
.fleet-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}
.fleet-card-img {
    height: 140px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
    overflow: hidden;
}
.fleet-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.fleet-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--amber);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    z-index: 1;
}
.fleet-body {
    padding: 20px 22px;
}
.fleet-name {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.fleet-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.fleet-spec {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 10px;
}
.fleet-spec .s-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}
.fleet-spec .s-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.fleet-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
/* Fleet cards – actual HTML class styles */
.fleet-section .section-subtitle { color: rgba(255,255,255,0.6); }

.fleet-card h3 {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.fleet-img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}
.fleet-img-placeholder {
    font-size: 28px;
    margin-bottom: 8px;
}
.fleet-card .fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-bottom: 14px;
}
.fleet-card .fleet-specs span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.fleet-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 14px;
}
.fleet-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    transition: color 0.2s;
}
.fleet-btn:hover { color: var(--amber-dark); text-decoration: underline; }

.amenity-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
}

/* ——— COMPARISON ——— */
.compare-section { background: var(--white); }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table th {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.compare-table th:first-child { border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }
.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.highlight td {
    background: rgba(245,158,11,0.06);
    font-weight: 600;
}
.compare-table tr.highlight td:first-child {
    border-left: 3px solid var(--amber);
}
.badge-winner {
    background: var(--amber-light);
    color: var(--amber-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ——— TIPS ——— */
.tips-section { background: var(--cream); }
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.tip-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto 1fr;
    gap: 4px 14px;
    align-items: start;
    transition: border-color 0.2s;
}
.tip-card:hover { border-color: var(--amber); }
.tip-num, .tip-number {
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}
.tip-card h3, .tip-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
    align-self: end;
}
.tip-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ——— CTA BANNER ——— */
.cta-banner {
    background: var(--amber);
    padding: 60px 5%;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--ff-head);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
}
.cta-banner p {
    font-size: 17px;
    color: rgba(11,29,58,0.7);
    margin-bottom: 32px;
}
.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--ff-body);
    transition: all 0.2s;
}
.cta-banner-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ——— FOOTER ——— */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: 60px 5% 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
    max-width: 260px;
}
footer h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
footer ul a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- SUBPAGE HERO (smaller) ---- */
.subpage-hero {
    background: var(--navy);
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
}
.subpage-hero .hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.subpage-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,29,58,0.9) 0%, rgba(11,29,58,0.8) 100%);
    z-index: 1;
}
.subpage-hero h1 {
    font-family: var(--ff-head); font-size: clamp(28px, 4vw, 48px); font-weight: 900;
    color: var(--white); line-height: 1.1; position: relative; z-index: 2;
}
.subpage-hero p {
    font-size: 17px; color: rgba(255,255,255,0.65); margin-top: 12px;
    max-width: 600px; position: relative; z-index: 2;
}

/* Content images */
.content-img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    object-fit: cover;
}
.content-img-caption {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -16px;
    margin-bottom: 24px;
}

/* ---- BREADCRUMBS ---- */
.breadcrumb {
    padding: 16px 5%;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--ocean); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ---- CONTENT AREA ---- */
.content-section, .content-page { padding: 60px 5%; max-width: 960px; margin: 0 auto; }
.content-section h2, .content-page h2 { font-family: var(--ff-head); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.content-section h3, .content-page h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.content-section p, .content-page p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.content-section ul, .content-section ol, .content-page ul, .content-page ol { margin: 16px 0; padding-left: 24px; }
.content-section li, .content-page li { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }

/* ---- INFO CARDS GRID ---- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 32px 0; }
.info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; }
.info-card:hover { border-color: var(--ocean); transform: translateY(-3px); }
.info-card h3 { font-size: 18px; margin: 0 0 10px; }
.info-card p { font-size: 14px; margin: 0; }

/* ---- DATA TABLE ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }
.data-table th { background: var(--navy); color: rgba(255,255,255,0.85); padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.data-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-dark); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(21,101,192,0.04); }

/* ---- FAQ ACCORDION ---- */
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); background: var(--white); border: none; width: 100%; text-align: left; font-family: var(--ff-body); transition: background 0.2s; }
.faq-question:hover { background: var(--cream); }
.faq-question .arrow { font-size: 20px; transition: transform 0.3s; color: var(--ocean); }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 18px; font-size: 15px; color: var(--text-mid); line-height: 1.7; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ---- SEARCH RESULTS ---- */
.search-results { margin-top: 24px; }
.result-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 12px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 20px; transition: border-color 0.2s; }
.result-card:hover { border-color: var(--ocean); }
.result-card.cheapest { border-color: var(--success); background: linear-gradient(135deg, #F0FDF4 0%, var(--white) 100%); }
.result-operator { font-size: 14px; font-weight: 700; color: var(--navy); }
.result-vessel { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.result-times { display: flex; align-items: center; gap: 12px; }
.result-time { font-size: 20px; font-weight: 700; color: var(--navy); }
.result-arrow { font-size: 18px; color: var(--text-muted); }
.result-duration { font-size: 12px; color: var(--text-muted); text-align: center; }
.result-price { text-align: right; }
.result-price .amount { font-family: var(--ff-head); font-size: 24px; font-weight: 900; color: var(--navy); }
.result-price .per { font-size: 11px; color: var(--text-muted); }
.result-price .book-btn { display: inline-block; margin-top: 8px; padding: 8px 20px; background: var(--amber); color: var(--navy); font-size: 13px; font-weight: 700; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.result-price .book-btn:hover { background: var(--amber-dark); transform: translateY(-1px); }

.loading-spinner { text-align: center; padding: 40px; }
.loading-spinner .spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--ocean); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

.no-results { text-align: center; padding: 40px; color: var(--text-muted); font-size: 16px; }

/* ---- MOBILE MENU ---- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 99; padding: 24px 5%; }
.mobile-menu.active { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a { display: block; padding: 14px 16px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 500; border-radius: 8px; transition: background 0.2s; }
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--amber); }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
    .hero { flex-direction: column; align-items: flex-start; gap: 40px; padding-bottom: 80px; }
    .booking-card { max-width: 100%; margin-left: 0; }
    .hero-stats { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .urgency-strip { gap: 24px; }
    .result-card { grid-template-columns: 1fr; text-align: center; }
    .result-price { text-align: center; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .passengers-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .trust-bar { gap: 20px; }
    .content-section { padding: 40px 5%; }
}
