/* ==========================================================================
   Moscow Charter - Premium CSS Stylesheet
   ========================================================================== */

/* Design Variables */
:root {
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
    
    --color-primary: #0B192C;
    --color-primary-light: #1E2A38;
    --color-primary-rgb: 11, 25, 44;
    
    --color-gold: #C5A880;
    --color-gold-hover: #E3C59A;
    --color-gold-dark: #9F835E;
    --color-gold-light: #F5EFE4;
    --color-gold-rgb: 197, 168, 128;
    
    --color-cream: #FAF7F2;
    --color-white: #FFFFFF;
    --color-light-gray: #F1F5F9;
    
    --color-text-dark: #1E293B;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-text-white: #FAF9F6;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-premium: 0 10px 40px rgba(11, 25, 44, 0.04);
    --shadow-premium-hover: 0 20px 50px rgba(11, 25, 44, 0.1);
    --shadow-gold: 0 8px 24px rgba(197, 168, 128, 0.2);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
    
    --container-max-width: 1240px;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Typography & Global Components */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
}

p {
    font-weight: 300;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-gold {
    background-color: transparent;
    color: var(--color-gold-dark);
    border-color: var(--color-gold);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--color-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    outline: none;
}

.btn-gold-filled {
    background-color: var(--color-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold-filled:hover, .btn-gold-filled:focus {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    outline: none;
}

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

.btn-outline-white:hover, .btn-outline-white:focus {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
    outline: none;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Section Common Elements */
.section-eyebrow {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.section-intro {
    margin-bottom: 60px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 16px 0;
    background-color: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-header .logo-img {
    height: 48px;
}

.logo-compass {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateCompass 20s linear infinite;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-white);
    outline: none;
}

.nav-link:hover::after, .nav-link:focus::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.phone-link:hover, .phone-link:focus {
    color: var(--color-gold);
    outline: none;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn-header-mobile {
    display: none !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-color: var(--color-primary);
    min-height: 100vh;
    display: block;
    color: var(--color-white);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.94) 20%, rgba(11, 25, 44, 0.5) 100%);
    z-index: 1;
}

/* Slider Controls */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 3.2rem;
    cursor: pointer;
    z-index: 15;
    transition: var(--transition-fast);
    outline: none;
    padding: 10px 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    color: var(--color-gold);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    background-color: var(--color-gold);
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        display: none;
    }
    .hero-slide {
        padding-top: 110px;
        padding-bottom: 60px;
    }
    .hero-slider-dots {
        bottom: 50px;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: calc(100vh - 220px);
}

.hero-content {
    max-width: 760px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.play-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.badge-icon i {
    width: 24px;
    height: 24px;
}

.badge-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.badge-info p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

/* Welcome Section Styles */
.welcome-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Collage System */
.collage-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 520px;
}

.collage-main-wrapper {
    grid-column: 1 / 9;
    grid-row: 1 / 11;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
}

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

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

.collage-sub-wrapper {
    grid-column: 7 / 13;
    grid-row: 5 / 13;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.collage-sub-wrapper .collage-img-2 {
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-premium-hover);
}

.collage-sub-wrapper .collage-img-3 {
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-premium-hover);
}

.collage-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
}

.decor-compass-card {
    background-color: var(--color-primary);
    border: 1px solid var(--color-gold);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium-hover);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.decor-coord {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.decor-coord-sec {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.welcome-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-stats {
    display: flex;
    gap: 48px;
    margin: 32px 0 40px 0;
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    padding: 24px 0;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Fleet Showcase Section Styles */
.fleet-section {
    background-color: var(--color-cream);
    padding: 120px 0;
}

.fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
}

.filter-tabs {
    display: inline-flex;
    background-color: var(--color-white);
    padding: 6px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-premium);
}

.filter-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.filter-tab:hover:not(.active), .filter-tab:focus:not(.active) {
    color: var(--color-primary);
    outline: none;
}

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

/* Boat Card Styling */
.boat-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(11, 25, 44, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.boat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(197, 168, 128, 0.4);
}

.boat-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-primary);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.boat-img {
    width: calc(100% + 2.5px);
    left: -1px;
    position: relative;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.boat-card:hover .boat-img {
    transform: scale(1.06);
}

.boat-badge-container {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.boat-badge {
    background-color: rgba(11, 25, 44, 0.85);
    color: var(--color-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge-premium {
    background-color: rgba(197, 168, 128, 0.95);
    color: var(--color-primary);
    border-color: rgba(197, 168, 128, 0.3);
}

.badge-blue {
    background-color: rgba(0, 136, 204, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}


/* Boat Image Slider CSS */
.boat-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.slider-slide-link {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    margin-right: -1px;
    overflow: hidden;
}
.boat-image-slider .boat-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.65) !important;
    border: none !important;
    font-size: 2rem !important;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease, color 0.2s ease;
    outline: none !important;
    padding: 8px 12px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}
.boat-image-slider .boat-slider-arrow:hover {
    background: none !important;
    color: rgba(255, 255, 255, 0.95) !important;
}
.boat-image-slider .prev-arrow {
    left: 4px;
}
.boat-image-slider .next-arrow {
    right: 4px;
}

/* Hover-based display for arrows on desktop, always visible on touch */
@media (hover: hover) {
    .boat-image-slider .boat-slider-arrow {
        opacity: 0;
        visibility: hidden;
    }
    .boat-card:hover .boat-slider-arrow {
        opacity: 1;
        visibility: visible;
    }
}
@media (hover: none) {
    .boat-image-slider .boat-slider-arrow {
        opacity: 1;
        visibility: visible;
    }
}
.boat-image-slider .slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.boat-image-slider .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}
.boat-image-slider .slider-dot.active {
    background-color: var(--color-gold);
    width: 12px;
    border-radius: 3px;
}

.boat-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.boat-type {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 6px;
}

.boat-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-gold-text {
    font-size: 0.6875rem;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.boat-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.boat-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--color-light-gray);
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold-dark);
}

.spec-item span {
    font-size: 0.8125rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.boat-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    width: 100%;
}

.boat-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-unit {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.boat-card-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.boat-card-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 11px 8px;
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Featured Yacht Monaco Card */
.featured-card {
    border: 1px solid rgba(197, 168, 128, 0.4);
    box-shadow: 0 15px 45px rgba(197, 168, 128, 0.1);
}

.featured-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 25px 60px rgba(197, 168, 128, 0.18);
}

/* Video Section Styles */
.video-section {
    position: relative;
    background-color: var(--color-primary);
    background-image: url('../images/video_bg.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0;
    text-align: center;
    color: var(--color-white);
}

.video-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 25, 44, 0.85);
    z-index: 1;
}

.video-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.video-eyebrow {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}

.video-play-btn {
    position: relative;
    width: 88px;
    height: 88px;
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 40px rgba(197, 168, 128, 0.4);
}

.video-play-btn:hover, .video-play-btn:focus {
    background-color: var(--color-gold-hover);
    transform: scale(1.08);
    outline: none;
}

.video-play-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
    margin-left: 4px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-full);
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Services Section Styles */
.services-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

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

.service-card {
    background-color: var(--color-cream);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(197, 168, 128, 0.4);
    transform: translateY(-4px);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-gold);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 400;
}

/* Team Section Styles */
.team-section {
    background-color: var(--color-cream);
    padding: 120px 0;
}

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

.team-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(11, 25, 44, 0.04);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium-hover);
}

.team-img-wrapper {
    height: 320px;
    overflow: hidden;
    background-color: var(--color-primary);
}

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

.team-card:hover .team-img {
    transform: scale(1.04);
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--color-gold-dark);
    margin-bottom: 14px;
}

.team-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
    font-weight: 400;
}

/* Reviews Section Styles */
.reviews-section {
    background-color: var(--color-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-slider-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    position: relative;
}

.reviews-slider {
    position: relative;
    min-height: 320px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.review-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.review-card {
    background-color: var(--color-cream);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 24px;
    left: 40px;
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: rgba(197, 168, 128, 0.15);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

.star-icon.active {
    color: var(--color-gold);
    fill: var(--color-gold);
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.author-meta h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
}

.author-meta span {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    background: none;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-dark);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover, .slider-btn:focus {
    background-color: var(--color-gold);
    color: var(--color-primary);
    outline: none;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(197, 168, 128, 0.4);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    background-color: var(--color-gold-dark);
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--color-cream);
    padding: 120px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.btn-faq-phone {
    margin-top: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.5);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.faq-question:focus {
    outline: none;
    color: var(--color-gold-dark);
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 400;
}

/* Booking Section Styles */
.booking-section {
    background-color: var(--color-white);
    padding: 120px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold-dark);
    background-color: var(--color-cream);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-gold-dark);
}

/* Booking Form Wrapper Styling */
.booking-form-wrapper {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: 0 20px 50px rgba(11, 25, 44, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--color-white);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    color: var(--color-white);
}

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

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

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
    cursor: pointer;
}

.policy-link {
    color: var(--color-gold);
    text-decoration: underline;
}

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

/* Modals System (Video & Success) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 550px;
    width: 100%;
    padding: 48px;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.35);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

/* Success Card */
.success-card {
    max-width: 480px;
}

.success-icon-container {
    width: 72px;
    height: 72px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-check-icon {
    width: 38px;
    height: 38px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Video Modal */
.video-modal-content {
    max-width: 900px;
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.video-modal-content .modal-close {
    color: var(--color-white);
    top: -40px;
    right: 0;
}

.video-modal-content .modal-close:hover {
    color: var(--color-gold);
}

/* Footer Styles */
.main-footer {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-bottom: 40px;
}

.footer-top-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: var(--color-white); /* seamless blend with content section */
    z-index: 2;
}

/* Animated Liquid Waves Styling */
.waves {
    position: relative;
    width: 100%;
    height: 60px;
    min-height: 45px;
    max-height: 80px;
    display: block;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.footer-container {
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    justify-content: flex-start;
}

.footer-about-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link i {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links h3, .footer-contacts h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-info i {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

.nav-menu-contacts {
    display: none;
}

/* ==========================================================================
   Responsive Media Queries (1440px, 1024px, 768px, 375px)
   ========================================================================== */

/* Large screens and Desktops (up to 1200px) */
@media (max-width: 1200px) {
    .section-grid, .booking-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
    .main-header {
        padding: 16px 0;
        background-color: rgba(11, 25, 44, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header-container {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        margin: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--color-primary);
        padding: 48px 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 99;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .btn-header {
        display: none;
    }
    
    .btn-header-mobile {
        display: inline-flex !important;
        margin-top: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .fleet-grid, .services-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .featured-card {
        grid-column: span 2;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .welcome-text-content {
        align-items: center;
        text-align: center;
    }
    
    .welcome-stats {
        justify-content: center;
    }
    
    .collage-container {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .faq-container, .booking-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-intro {
        text-align: center;
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .main-header .phone-link {
        display: none !important;
    }
    
    .nav-menu-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .menu-phone {
        font-family: var(--font-sans);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-white);
        text-decoration: none;
        transition: var(--transition-fast);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .menu-phone i {
        color: var(--color-gold);
        width: 20px;
        height: 20px;
    }
    
    .menu-phone:hover {
        color: var(--color-gold);
    }
    
    .menu-socials {
        display: flex;
        gap: 16px;
        justify-content: center;
        width: 100%;
    }
    
    .menu-social-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--color-white);
        padding: 10px 20px;
        border-radius: 8px;
        transition: var(--transition-fast);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background-color: rgba(255, 255, 255, 0.03);
    }
    
    .menu-social-link i {
        width: 16px;
        height: 16px;
    }
    
    .menu-social-link.tg i {
        color: #0088cc;
    }
    
    .menu-social-link.wa i {
        color: #25d366;
    }
    
    .menu-social-link:hover {
        border-color: var(--color-gold);
        color: var(--color-gold);
        background-color: rgba(255, 255, 255, 0.08);
    }
}

/* Portrait Tablets / Large Mobile (up to 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fleet-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .fleet-grid, .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-column: span 1;
    }
    
    .review-card {
        padding: 32px 24px;
    }
    
    .review-card::before {
        display: none;
    }
    
    .booking-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Screens (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .phone-link span {
        display: none;
    }
    
    .phone-link {
        width: 36px;
        height: 36px;
        border-radius: var(--border-radius-full);
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .phone-icon {
        margin: 0;
    }
    
    .collage-container {
        height: 380px;
    }
    
    .collage-sub-wrapper .collage-img-2, 
    .collage-sub-wrapper .collage-img-3 {
        height: 120px;
    }
    
    .decor-compass-card {
        padding: 10px 16px;
    }
}

/* ==========================================================================
   Booking Modal Custom Styling (White/Teal theme) - Compact refinement
   ========================================================================== */
.booking-modal-card {
    max-width: 580px !important;
    background-color: #ffffff;
    border: none;
    color: #1e293b;
    padding: 24px 32px 30px 32px !important;
    text-align: left;
    border-radius: var(--border-radius-lg);
}
.booking-modal-card .form-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b192c;
    margin-bottom: 18px;
    margin-top: 0;
    text-align: left;
}
.booking-modal-card .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
    border: none;
    transition: var(--transition-fast);
}
.booking-modal-card .modal-close:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    margin-bottom: 0;
}
.booking-modal-card form > .form-group-new {
    margin-top: 4px;
    margin-bottom: 12px;
}
.form-group-new label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #0ea5e9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 10px 14px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #0f172a;
    transition: var(--transition-fast);
    outline: none;
}
.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    border-color: #0ea5e9;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}
.custom-selector {
    display: flex;
    gap: 8px;
}
.selector-btn {
    flex: 1;
    padding: 8px 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    outline: none;
}
.selector-btn:hover {
    border-color: #94a3b8;
    color: #0f172a;
}
.selector-btn.active {
    border-color: #0ea5e9;
    color: #0ea5e9;
    background-color: #f0f9ff;
    box-shadow: 0 0 0 1px #0ea5e9;
}
.price-card-box {
    margin: 14px 0 12px 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.price-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-banner {
    background-color: #0b192c;
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
}
.total-banner span:last-child {
    font-size: 1.25rem;
    color: #0ea5e9;
    font-weight: 700;
}
.prepayment-banner {
    background-color: #f8fafc;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    padding: 10px 16px;
    font-size: 0.85rem;
    color: #64748b;
}
.prepayment-banner span:last-child {
    font-weight: 700;
    color: #0ea5e9;
    font-size: 0.95rem;
}
.form-checkbox-new {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 16px;
    text-align: left;
}
.form-checkbox-new input[type="checkbox"] {
    margin-top: 1px;
    width: 15px;
    height: 15px;
    accent-color: #0ea5e9;
    cursor: pointer;
}
.form-checkbox-new label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    display: inline;
    line-height: 1.3;
}
.agreement-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
}
.agreement-link:hover {
    text-decoration: underline;
}
.btn-pay-action {
    width: 100%;
    padding: 14px 0;
    background-color: #cbd5e1;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: not-allowed;
    transition: var(--transition-smooth);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
}
.btn-pay-action.active-btn {
    background-color: #0ea5e9;
    color: #ffffff;
    cursor: pointer;
}
.btn-pay-action.active-btn:hover {
    background-color: #0284c7;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}
.form-footer-note {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}
@media (max-width: 580px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-modal-card {
        padding: 30px 20px !important;
    }
}

/* ==========================================================================
   Boat Detail Page Custom Styling
   ========================================================================== */
.boat-detail-hero {
    background-color: var(--color-primary);
    padding: 160px 0 65px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--color-white);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.back-link:hover {
    color: var(--color-gold-hover);
    transform: translateX(-4px);
}
.back-icon {
    width: 16px;
    height: 16px;
}
.boat-detail-title-block {
    display: flex;
    flex-direction: column;
}
.boat-detail-eyebrow {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold-hover);
    margin-bottom: 8px;
    display: block;
}
.boat-detail-title {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.boat-detail-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.boat-detail-badges .boat-badge {
    position: static;
    display: inline-block;
    padding: 6px 14px;
}
.boat-detail-content-section {
    padding: 80px 0 120px 0;
    background-color: var(--color-white);
}
.boat-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}
/* Premium Slider Gallery */
.boat-gallery-slider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    background-color: var(--color-primary);
    border: none; /* Removed border */
}

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

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.1) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateZ(0);
    pointer-events: auto;
    z-index: 2;
}

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

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    background-color: rgba(11, 25, 44, 0.6);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
}

.slider-arrow:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(11, 25, 44, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    width: 20px;
}

/* Responsive height adjustment */
@media (max-width: 768px) {
    .boat-gallery-slider {
        height: 320px;
    }
    .slider-arrow {
        width: 38px;
        height: 38px;
    }
    .slider-arrow-prev {
        left: 10px;
    }
    .slider-arrow-next {
        right: 10px;
    }
}
.boat-detail-info-block {
    margin-bottom: 48px;
}
.detail-section-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--color-gold);
    padding-left: 14px;
}
.boat-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-weight: 400;
}
.specs-table-wrapper {
    background-color: var(--color-cream);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: var(--border-radius-md);
    padding: 10px 24px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr {
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}
.specs-table tr:last-child {
    border-bottom: none;
}
.specs-table td {
    padding: 16px 0;
    font-size: 0.9375rem;
}
.specs-table td:first-child {
    font-weight: 700;
    color: var(--color-primary);
    width: 40%;
}
.specs-table td:last-child {
    color: var(--color-text-light);
    font-weight: 500;
}
.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.amenity-check {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}
.amenity-item span {
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    font-weight: 500;
}
.booking-card-sticky {
    position: sticky;
    top: 120px;
}
.price-calculator-card {
    background-color: var(--color-cream);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-premium);
}
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}
.price-value {
    display: flex;
    align-items: baseline;
}
.price-num {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}
.price-period {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-left: 4px;
    font-weight: 500;
}
.price-note {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.5;
    font-weight: 400;
}

/* Boat Detail Page Gallery Container */
.boat-detail-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.slider-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.05);
}

.slider-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.slider-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-full);
}
.slider-thumbnails::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--border-radius-full);
}

.slider-thumb {
    flex: 0 0 100px;
    height: 66px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

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

.slider-thumb:hover {
    opacity: 0.9;
}

.slider-thumb.active {
    border-color: var(--color-gold);
    opacity: 1;
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.4);
}

/* Sidebar Info Cards */
.sidebar-info-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-top: 20px;
    border: 1px solid rgba(11, 25, 44, 0.05);
    box-shadow: var(--shadow-premium);
}

.sidebar-info-card .card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-light-gray);
    padding-bottom: 10px;
}

.card-title-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold-dark);
}

.included-services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.included-services-list li {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: #2ec4b6; /* emerald check */
    flex-shrink: 0;
}

.location-card {
    border-left: 3px solid var(--color-gold);
}

.location-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.location-metro {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.metro-icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold-dark);
}

.location-address {
    background-color: var(--color-light-gray);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
}

.safety-features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-features-list li {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.safety-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

/* Photo Gallery Block */
.photo-grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.photo-grid-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    border: 1px solid rgba(11, 25, 44, 0.05);
}

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

.photo-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 25, 44, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.photo-grid-overlay i {
    width: 24px;
    height: 24px;
    color: var(--color-white);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.photo-grid-item:hover img {
    transform: scale(1.08);
}

.photo-grid-item:hover .photo-grid-overlay {
    opacity: 1;
}

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

/* Vertical Reels Carousel Section */
.boat-reels-section {
    background-color: var(--color-light-gray);
    padding: 80px 0;
    border-top: 1px solid rgba(11, 25, 44, 0.05);
    border-bottom: 1px solid rgba(11, 25, 44, 0.05);
}

.centered-title {
    text-align: center;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
}

.centered-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reels-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.reels-carousel-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 10px 0;
    scrollbar-width: none;
}

.reels-carousel-container::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 250px;
    aspect-ratio: 9/16;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-gold);
}

.reel-cover-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.reel-card:hover .reel-cover {
    transform: scale(1.05);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.95);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.3);
    transition: var(--transition-smooth);
    z-index: 2;
}

.reel-card:hover .reel-play-btn {
    background-color: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-play-btn i {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0) 100%);
    z-index: 2;
}

.reel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.reels-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid rgba(11, 25, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    z-index: 5;
}

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

.reels-arrow-prev {
    left: -22px;
}

.reels-arrow-next {
    right: -22px;
}

/* Reels Vertical Video Player Modal */
.reels-modal-content {
    max-width: 380px;
    aspect-ratio: 9/16;
    background-color: #000;
    padding: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reels-player-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.reels-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.reels-modal .modal-close {
    color: var(--color-white);
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(11, 25, 44, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Boat Detail CSS */
@media (max-width: 1024px) {
    .boat-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .booking-card-sticky {
        position: static;
    }
}
@media (max-width: 768px) {
    .boat-detail-title {
        font-size: 2.25rem;
    }
    .amenities-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .specs-table td:first-child {
        width: 50%;
    }
    .photo-grid-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .reels-arrow {
        display: none;
    }
}

/* Recommended Routes Timeline Styles */
.routes-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 20px;
    margin-top: 24px;
}

.routes-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--color-gold-light);
}

.route-item {
    position: relative;
}

.route-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: 2px solid var(--color-white);
    box-shadow: 0 0 5px rgba(197, 168, 128, 0.5);
    z-index: 2;
}

.route-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.route-duration {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    background-color: rgba(197, 168, 128, 0.1);
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-duration-icon {
    width: 12px;
    height: 12px;
}

.route-path {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.sights-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.sights-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sight-tag {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    background-color: var(--color-light-gray);
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    border: 1px solid rgba(11, 25, 44, 0.04);
    transition: var(--transition-smooth);
}

.sight-tag:hover {
    background-color: rgba(197, 168, 128, 0.08);
    border-color: var(--color-gold-light);
    color: var(--color-primary);
}

.sight-tag-icon {
    width: 12px;
    height: 12px;
    color: var(--color-gold);
}

/* Portofino Tariffs Styling */
.pricing-tariffs-card {
    border-left: 3px solid var(--color-gold);
}
