/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a3a5c;
    --primary-dark: #0f2840;
    --secondary-color: #c9a962;
    --accent-color: #2980b9;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1a3a5c 0%, #2980b9 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e6c885 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(26, 58, 92, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a.active-link {
    color: #e7c47b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--primary-color);
}

.dropdown-menu li a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100svh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #6a9fd4 0%, #2c5a8a 50%, #1a3a5c 100%);
    box-shadow:
        0 32px 80px rgba(15, 40, 64, 0.35),
        0 12px 32px rgba(0, 0, 0, 0.18);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 0 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.42),
        0 16px 48px rgba(15, 40, 64, 0.28),
        inset 0 -80px 120px rgba(15, 40, 64, 0.22);
}

.hero-media picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: brightness(1.02) saturate(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 0 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
    background:
        radial-gradient(ellipse 120% 55% at 50% 100%, rgba(15, 40, 64, 0.32) 0%, transparent 70%),
        linear-gradient(180deg, rgba(15, 40, 64, 0.06) 0%, rgba(15, 40, 64, 0.1) 50%, rgba(15, 40, 64, 0.28) 100%);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    color: var(--white);
    margin-bottom: 25px;
    text-shadow:
        0 2px 24px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(15, 40, 64, 0.35);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.8;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 2px 20px rgba(0, 0, 0, 0.55);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(6px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Animations ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== Section Styles ===== */
.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-text .btn {
    margin-top: 15px;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Offers Carousel ===== */
.offers {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

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

.offer-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.offer-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
    z-index: 2;
}

.offer-label {
    position: absolute;
    top: 25px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 2;
}

.offer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.offer-card:hover img {
    transform: scale(1.05);
}

.offer-content {
    padding: 30px;
}

.offer-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.offer-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

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

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 58, 92, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* ===== Vessel (Lučica) Section ===== */
.vessel {
    padding: 120px 0;
    background: var(--white);
}

.vessel-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.vessel-hero-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.vessel-hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vessel-hero-media:hover img {
    transform: scale(1.03);
}

.vessel-badges {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge i {
    font-size: 12px;
}

.badge-gold {
    background: rgba(201, 169, 98, 0.92);
    color: var(--primary-dark);
}

.badge-dark {
    background: rgba(15, 40, 64, 0.82);
    color: var(--white);
}

.vessel-hero-content {
    padding: 10px 0;
}

.vessel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--off-white);
    border: 1px solid rgba(26, 58, 92, 0.08);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.meta-chip i {
    color: var(--secondary-color);
}

.vessel-lead {
    color: var(--text-light);
    font-size: 16px;
    margin: 18px 0 24px;
}

.vessel-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.stat {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    border: 1px solid rgba(26, 58, 92, 0.10);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(44, 62, 80, 0.75);
}

.stat-sub {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.vessel-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.btn-ghost {
    background: transparent;
    border-color: rgba(26, 58, 92, 0.25);
    color: var(--primary-color);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.9);
    box-shadow: 0 10px 25px rgba(26, 58, 92, 0.12);
}

.vessel-note {
    margin-top: 16px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(41, 128, 185, 0.08);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
}

.vessel-note i {
    color: var(--accent-color);
}

.vessel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.vessel-card {
    background: var(--white);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 58, 92, 0.08);
}

.vessel-card.wide {
    grid-column: span 2;
}

.vessel-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 18px;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 10px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    font-size: 14px;
}

.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--secondary-color);
}

.price-box {
    background: var(--off-white);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(26, 58, 92, 0.08);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 8px;
}

.price-title {
    font-weight: 700;
    color: var(--primary-color);
}

.price-sub {
    font-size: 13px;
    color: var(--text-light);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-dark);
}

.divider {
    height: 1px;
    background: rgba(26, 58, 92, 0.12);
    margin: 6px 0;
}

.price-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.metric {
    background: rgba(255,255,255,0.8);
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(26, 58, 92, 0.07);
}

.metric-k {
    display: block;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 14px;
}

.metric-v {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 12px;
}

.pill i {
    color: var(--secondary-color);
}

.tour-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.tour-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid rgba(26, 58, 92, 0.10);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.tour-top {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

.tour-title {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.4;
}

.tour-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(26, 58, 92, 0.06);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.mini-badge.gold {
    background: rgba(201, 169, 98, 0.22);
}

.tour-desc {
    color: var(--text-light);
    font-size: 14px;
    margin: 10px 0 14px;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tour-highlights span {
    font-size: 12px;
    color: rgba(44, 62, 80, 0.8);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(26, 58, 92, 0.08);
    padding: 8px 10px;
    border-radius: 999px;
}

.tour-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding-top: 14px;
    border-top: 1px solid rgba(26, 58, 92, 0.10);
}

.tour-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-dark);
}

.tour-price-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.tour-cancel-title {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 13px;
}

.tour-cancel-sub {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 4px;
}

.crew {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--off-white);
    border: 1px solid rgba(26, 58, 92, 0.08);
    padding: 16px;
    border-radius: 18px;
}

.crew-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crew-name {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
}

.crew-role {
    color: rgba(44, 62, 80, 0.75);
    font-size: 13px;
    margin-top: 2px;
}

.crew-feedback {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 6px;
}

.review {
    background: var(--off-white);
    border: 1px solid rgba(26, 58, 92, 0.08);
    padding: 18px;
    border-radius: 18px;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.reviewer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.25);
    color: var(--primary-dark);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 14px;
}

.reviewer-username {
    color: rgba(44, 62, 80, 0.65);
    font-weight: 700;
    font-size: 12px;
    margin-left: 8px;
}

.reviewer-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.review-stars {
    color: var(--secondary-color);
    letter-spacing: 2px;
    white-space: nowrap;
    margin-top: 4px;
}

.review-stars i {
    display: inline-block;
    transform-origin: center;
    animation: reviewStarPop 2.4s ease-in-out infinite;
}

.review-stars i:nth-child(1) { animation-delay: 0s; }
.review-stars i:nth-child(2) { animation-delay: 0.2s; }
.review-stars i:nth-child(3) { animation-delay: 0.4s; }
.review-stars i:nth-child(4) { animation-delay: 0.6s; }
.review-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes reviewStarPop {
    0%, 18%, 100% {
        transform: scale(1);
    }
    9% {
        transform: scale(1.45);
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-stars i {
        animation: none;
    }
}

.review-title {
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.review-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 14px;
}

.review-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-points span {
    font-size: 12px;
    color: rgba(44, 62, 80, 0.82);
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(26, 58, 92, 0.08);
    padding: 8px 10px;
    border-radius: 999px;
}

.vessel-footnote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.06) 0%, rgba(201, 169, 98, 0.10) 100%);
    border: 1px solid rgba(26, 58, 92, 0.08);
}

/* Better readability for laptop widths */
@media (max-width: 1366px) and (min-width: 1025px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 13px;
        letter-spacing: 0.7px;
    }

    .vessel-hero {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .vessel-hero-media img {
        height: 380px;
    }

    .vessel-meta {
        gap: 8px;
    }

    .meta-chip {
        font-size: 12px;
        padding: 8px 11px;
    }

    .vessel-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vessel-card.wide {
        grid-column: span 1;
    }

    .tour-cards {
        grid-template-columns: 1fr;
    }

    .vessel-card {
        padding: 26px;
    }
}

.source {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(44, 62, 80, 0.85);
    font-size: 13px;
    font-weight: 700;
}

.source i {
    color: var(--secondary-color);
}

.link {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* ===== Simplified Booking Section ===== */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 58, 92, 0.12);
    margin-bottom: 40px;
}

.booking-image {
    position: relative;
    min-height: 400px;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.b-badge {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    backdrop-filter: blur(10px);
}

.b-badge.gold {
    background: var(--secondary-color);
    color: white;
}

.b-badge i {
    margin-right: 4px;
}

.booking-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.booking-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

.booking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.booking-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.booking-features i {
    color: #27ae60;
    font-size: 16px;
}

.booking-price-box {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.booking-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
}

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

.cta-btn.tripadvisor:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 92, 0.3);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn.whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn i {
    font-size: 18px;
}

.booking-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.booking-urgency i {
    color: #f39c12;
}

/* Tour Options */
.tour-options {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(26, 58, 92, 0.08);
    margin-bottom: 40px;
}

.options-heading {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.options-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.option-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(26, 58, 92, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.option-box:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 58, 92, 0.12);
}

.option-box.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(180deg, #fffdf8 0%, #fff9ed 100%);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.option-box h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.option-duration {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px !important;
}

.option-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px !important;
    line-height: 1.6;
}

.option-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.option-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #27ae60;
    font-weight: 500;
}

.option-cancel i {
    font-size: 14px;
}

/* Clickable Option Box */
a.option-box.clickable {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

a.option-box.clickable:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.15);
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

a.option-box.clickable:hover .view-details {
    background: var(--secondary-color);
    gap: 12px;
}

.view-details i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

a.option-box.clickable:hover .view-details i {
    transform: translateX(4px);
}

/* Vessel Divider */
.vessel-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    padding: 20px 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(26, 58, 92, 0.15), transparent);
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.divider-text i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* Simple Review */
.simple-review {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 58, 92, 0.08);
}

.review-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.review-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.author-stars {
    color: var(--secondary-color);
}

.author-stars i {
    font-size: 14px;
}

/* Booking Section Responsive */
@media (max-width: 900px) {
    .booking-card {
        grid-template-columns: 1fr;
    }

    .booking-image {
        min-height: 300px;
    }

    .booking-info {
        padding: 30px;
    }

    .booking-title {
        font-size: 26px;
    }

    .options-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .option-box.featured {
        order: -1;
    }

    .review-quote {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .booking-section {
        padding: 50px 0;
    }

    .booking-card {
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .booking-info {
        padding: 24px;
    }

    .booking-title {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .cta-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .tour-options {
        padding: 24px;
        border-radius: 16px;
    }

    .options-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .option-box {
        padding: 24px;
    }

    .option-price {
        font-size: 26px;
    }

    .simple-review {
        padding: 24px;
        border-radius: 16px;
    }

    .review-quote {
        font-size: 16px;
    }
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    font-size: 32px;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition-bounce);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

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

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 18px;
}

.info-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-location {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(26, 58, 92, 0.1);
}

.contact-location-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 200px;
}

.contact-form-container .map-open-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-form-container .map-open-link:hover {
    color: var(--primary-dark);
}

.info-item p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-item p a:hover {
    text-decoration: underline;
}

.contact-form-container h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-smooth);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--off-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.social-links a i {
    font-size: 16px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-accent {
        display: none;
    }

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

    .offer-card {
        min-width: calc(50% - 15px);
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0 0 20px;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .offer-card {
        min-width: 100%;
    }

    .carousel-btn {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* ===== Clean Dalmatia Refresh ===== */
body {
    background: #f4f9ff;
}

.section-title {
    letter-spacing: 0.2px;
}

.hero-title {
    font-size: clamp(38px, 7vw, 64px);
}

.hero-subtitle {
    max-width: 760px;
    margin-inline: auto;
}

.about,
.vessel,
.gallery {
    padding: 90px 0;
}

.features,
.offers,
.contact {
    padding: 90px 0;
}

.feature-card,
.offer-card,
.vessel-card,
.contact-form-container {
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 90, 0.09);
}

.feature-card:hover,
.offer-card:hover,
.tour-card:hover {
    transform: translateY(-6px);
}

.vessel-hero-media img {
    height: 430px;
}

.gallery-grid {
    grid-auto-rows: 220px;
}

.gallery-item img {
    filter: saturate(1.04) contrast(1.03);
}

.btn {
    border-radius: 999px;
}

.btn-primary {
    background: linear-gradient(135deg, #d5b572 0%, #e8cd91 100%);
}

.btn-ghost {
    border-color: rgba(14, 72, 119, 0.2);
    color: #0e4877;
}

@media (max-width: 1024px) {
    .vessel-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .vessel-card.wide {
        grid-column: span 1;
    }

    .tour-cards {
        grid-template-columns: 1fr;
    }

    .price-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about,
    .vessel,
    .gallery,
    .features,
    .offers,
    .contact {
        padding: 70px 0;
    }

    .vessel-hero-media img {
        height: 300px;
    }

    .vessel-card {
        padding: 22px;
    }

    .vessel-footnote {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Final UI Polish ===== */
body {
    color: #2a3d52;
}

.container {
    max-width: 1140px;
}

.navbar {
    padding: 14px 0;
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    min-height: 56px;
}

.logo {
    font-size: clamp(24px, 3vw, 30px);
    letter-spacing: 0.5px;
}

.nav-menu {
    gap: 28px;
}

.hero-content {
    max-width: 980px;
}

.hero-title {
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 21px);
    line-height: 1.65;
    margin-bottom: 28px;
}

.section-header {
    margin-bottom: 42px;
}

.section-title {
    margin-bottom: 14px;
}

.about-text p,
.contact-info > p,
.review-text {
    line-height: 1.75;
}

.vessel-card,
.contact-form-container,
.tour-card,
.review,
.price-box {
    border: 1px solid rgba(16, 63, 102, 0.08);
    box-shadow: 0 10px 24px rgba(13, 53, 87, 0.08);
}

.vessel-cta {
    gap: 10px;
}

.vessel-cta .btn {
    min-width: 220px;
    text-align: center;
}

.gallery-grid {
    gap: 14px;
}

.contact-wrapper {
    gap: 44px;
}

.footer-content {
    gap: 34px;
}

/* Laptop */
@media (max-width: 1280px) {
    .nav-menu {
        gap: 20px;
    }

    .vessel-hero {
        gap: 34px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 18px;
    }

    .hero-subtitle {
        max-width: 680px;
    }

    .contact-wrapper {
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 46px);
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .vessel-cta .btn {
        min-width: 100%;
    }

    .about-content,
    .contact-wrapper {
        gap: 24px;
    }

    .section-title {
        font-size: clamp(27px, 8vw, 34px);
    }

    .vessel-note,
    .pill,
    .meta-chip {
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .vessel-card,
    .contact-form-container {
        padding: 18px;
        border-radius: 14px;
    }

    .reviewer {
        gap: 8px;
    }
}
