/* Nighttime theme helpers – complements inline styles in index.html */

body.nighttime-enabled main.premium-gradient-bg {
    background: radial-gradient(circle at top, #151b34 0%, #020813 55%, #00040b 100%);
}

body.nighttime-enabled .section-title {
    text-shadow: 0 0 24px rgba(58, 124, 255, 0.35);
}

body.nighttime-enabled .card,
body.nighttime-enabled .feature-box,
body.nighttime-enabled .process-step,
body.nighttime-enabled .experience-card,
body.nighttime-enabled .addon-card {
    background: rgba(10, 14, 35, 0.9);
}

body.nighttime-enabled .card-overlay {
    background: transparent !important;
}

body.nighttime-enabled .booking-step-indicator {
    box-shadow: 0 0 30px rgba(58, 124, 255, 0.9);
}

/* Nighttime Ocean Theme - Unified Design for All Pages */

/* Base Theme */
/* Base Theme - Inherited from style.css */
body {
    color: white;
}

/* Ensure Header Always Stays on Top */
#main-header {
    position: fixed !important;
    top: 18px !important;
    z-index: 9999 !important;
    will-change: background;
}

.premium-gradient-bg {
    background: linear-gradient(180deg, #2A5279 0%, #3E4152 55%, #2A5279 100%);
}

/* Section Styling for Nighttime Theme */
.section-padding {
    background: transparent;
    margin: 0;
    border: none;
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Ensure smooth background transition */
/* Smooth background transition inherited from style.css */
main {
    background: transparent;
}

.container {
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Remove any border or line between sections */
.hero-wrapper {
    margin: 0;
    padding: 0;
}

.hero-sub {
    margin: 0;
    border: none;
}

/* Ensure hero content is centered */
.hero-content-sub {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-sub h1 {
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5) !important;
}

.section-title {
    color: white !important;
    text-shadow: 0 0 20px rgba(58, 124, 255, 0.3);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

/* Glassmorphism Cards */
.yacht-card {
    background: rgba(18, 22, 48, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(58, 124, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.yacht-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58, 124, 255, 0.3), rgba(45, 235, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Yacht Card Glow Animation */
@keyframes yachtCardGlow {
    0%, 100% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(58, 124, 255, 0.3),
            0 0 40px rgba(58, 124, 255, 0.2),
            0 0 60px rgba(58, 124, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(58, 124, 255, 0.5),
            0 0 60px rgba(58, 124, 255, 0.4),
            0 0 80px rgba(45, 235, 255, 0.3),
            0 0 100px rgba(45, 235, 255, 0.2);
    }
}

.yacht-card:hover {
    transform: translateY(-10px);
    animation: yachtCardGlow 2s ease-in-out infinite;
}

.yacht-card:hover::before {
    opacity: 1;
}

.yacht-tag, .card-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(58, 124, 255, 0.2);
    border: 1px solid rgba(58, 124, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #3A7CFF;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Override tag pill for cards with images to use light blue style (like design spec) */
.card:has(.card-img) .card-tag {
    background: #E3F2FD !important;
    color: #1976D2 !important;
    border: 1px solid #1976D2 !important;
}

/* Unified Button Style - All Buttons */
.yacht-button, .card .btn-primary, .btn-primary, .btn-outline, .btn-link {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3A7CFF 0%, #2DEBFF 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    box-shadow: 
        0 0 20px rgba(58, 124, 255, 0.4),
        0 0 40px rgba(45, 235, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none !important;
    cursor: pointer;
}

/* Full width for card buttons */
.yacht-button, .card .btn-primary {
    width: 100%;
}

/* Ripple animation for all buttons */
.yacht-button::before, .card .btn-primary::before, .btn-primary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.yacht-button:hover::before, .card .btn-primary:hover::before, .btn-primary:hover::before, .btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* Hover effect for all buttons */
.yacht-button:hover, .card .btn-primary:hover, .btn-primary:hover, .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(58, 124, 255, 0.6),
        0 0 60px rgba(45, 235, 255, 0.4),
        0 0 80px rgba(45, 235, 255, 0.2);
}

/* Text positioning */
.yacht-button span, .btn-link span {
    position: relative;
    z-index: 1;
}

/* Button link style (for blog articles) */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Unified Glassmorphism Style for All Cards */
.card, .feature-box, .process-step {
    background: rgba(18, 22, 48, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(58, 124, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.card::before, .feature-box::before, .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58, 124, 255, 0.3), rgba(45, 235, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Glow Animation Keyframes */
@keyframes cardGlow {
    0%, 100% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(58, 124, 255, 0.3),
            0 0 40px rgba(58, 124, 255, 0.2),
            0 0 60px rgba(58, 124, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(58, 124, 255, 0.5),
            0 0 60px rgba(58, 124, 255, 0.4),
            0 0 80px rgba(45, 235, 255, 0.3),
            0 0 100px rgba(45, 235, 255, 0.2);
    }
}

.card:hover, .feature-box:hover, .process-step:hover {
    transform: translateY(-10px) !important;
    animation: cardGlow 2s ease-in-out infinite !important;
}

.card:hover::before, .feature-box:hover::before, .process-step:hover::before {
    opacity: 1;
}

.card-title, .card h3, .card h5, .feature-title {
    color: white !important;
}

.card p, .card-body p, .feature-box p {
    color: #A8B0C8 !important;
}

/* Override for overlay cards - keep transparent */
.card.card-overlay {
    position: relative !important;
    overflow: hidden !important;
    height: 500px !important;
    border-radius: 16px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.card.card-overlay::before {
    display: none !important;
}

.card.card-overlay:hover {
    transform: none !important;
}

/* Card Overlay Image - Full Coverage */
.card-overlay .card-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    border-radius: 16px !important;
}

.card-overlay .card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.card-overlay .card-img::after {
    display: none !important;
}

/* Card Overlay Body - Text Over Image */
.card-overlay .card-body {
    position: absolute !important;
    inset: 0 !important;
    padding: 40px 32px 32px !important;
    z-index: 3 !important;
    background: none !important;
    background-color: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    pointer-events: none !important;
}

/* Override any white background from style.css */
.card.card-overlay .card-body,
.card:has(.card-img).card-overlay .card-body {
    background: transparent !important;
    background-color: transparent !important;
}

.card-overlay .card-body * {
    pointer-events: auto !important;
}

/* Card Overlay Text Styling */
.card-overlay .card-body h3,
.card-overlay .card-body .card-title {
    color: #FFFFFF !important;
    font-size: 36px !important;
    margin-bottom: 16px !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 6px 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.card-overlay .card-body p {
    color: #FFFFFF !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.7) !important;
    margin: 0 0 24px 0 !important;
}

.card-overlay .card-body h4 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.card-overlay .card-body ul {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.card-overlay .card-body li {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

/* Card Overlay Tag */
.card-overlay .card-tag {
    position: absolute !important;
    top: 24px !important;
    left: 24px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    z-index: 4 !important;
    margin: 0 !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
}

/* Card Overlay Button */
.card-overlay .btn-primary {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    align-self: flex-start !important;
    margin-top: 8px !important;
}

/* Text color adjustments */
.text-muted, p[style*="color: var(--text-muted)"] {
    color: #A8B0C8 !important;
}

/* Card Image Styling */
 .card-img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

/* Card Body Padding */
.card-body {
    padding: 30px !important;
}

/* Ensure cards with images (blog cards) are dark, not white */
.card:has(.card-img) .card-body {
    background: #020617 !important;
}

.card:has(.card-img) .card-body .card-title,
.card:has(.card-img) .card-body h3 {
    color: #E5E7EB !important;
}

/* Feature Icon Styling */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(58, 124, 255, 0.2);
    border: 1px solid rgba(58, 124, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #3A7CFF;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: rgba(58, 124, 255, 0.3);
    border-color: rgba(58, 124, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(58, 124, 255, 0.4);
}

/* Experience cards with background images */
.experience-card {
    position: relative;
    overflow: hidden;
}

.experience-card-bg {
    display: none;
}

.experience-card-body {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    text-align: center;
}

/* Process Step Styling */
.process-step {
    padding: 40px !important;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #3A7CFF 0%, #2DEBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 124, 255, 0.2);
    border: 1px solid rgba(58, 124, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3A7CFF;
    font-size: 24px;
}

.process-step:hover .step-icon {
    background: rgba(58, 124, 255, 0.3);
    border-color: rgba(58, 124, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(58, 124, 255, 0.4);
}

.process-step h3 {
    color: white !important;
    margin-bottom: 12px;
}

.process-step p {
    color: #A8B0C8 !important;
}

/* Addon Card Glow Animation */
@keyframes addonCardGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.1),
            0 0 30px rgba(58, 124, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.4),
            0 0 50px rgba(58, 124, 255, 0.3),
            0 0 70px rgba(45, 235, 255, 0.2);
    }
}

.addon-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58, 124, 255, 0.3), rgba(45, 235, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.addon-card:hover {
    animation: addonCardGlow 2s ease-in-out infinite !important;
}

.addon-card:hover::before {
    opacity: 1;
}

.addon-card-bg {
    display: none;
}

.addon-card-body {
    position: relative;
    z-index: 1;
    padding: 24px !important;
    text-align: center;
}

.addon-card-body h4 {
    color: #F9FAFB;
    margin-bottom: 8px;
}

.addon-card-body p {
    color: #E5E7EB;
    font-size: 14px;
}

/* Accordion Styling */
.accordion-item {
    background: rgba(18, 22, 48, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58, 124, 255, 0.3), rgba(45, 235, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Accordion Glow Animation */
@keyframes accordionGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.1),
            0 0 30px rgba(58, 124, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.4),
            0 0 50px rgba(58, 124, 255, 0.3),
            0 0 70px rgba(45, 235, 255, 0.2);
    }
}

.accordion-item:hover {
    animation: accordionGlow 2s ease-in-out infinite !important;
}

.accordion-item:hover::before {
    opacity: 1;
}

.accordion-header {
    color: white !important;
}

.accordion-body {
    color: #A8B0C8 !important;
}

/* Gallery Styling */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(18, 22, 48, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(58, 124, 255, 0.3), rgba(45, 235, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

/* Gallery Glow Animation */
@keyframes galleryGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.1),
            0 0 30px rgba(58, 124, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(58, 124, 255, 0.4),
            0 0 50px rgba(58, 124, 255, 0.3),
            0 0 70px rgba(45, 235, 255, 0.2);
    }
}

.gallery-item:hover {
    animation: galleryGlow 2s ease-in-out infinite;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-sub h1 {
        font-size: 32px !important;
        overflow-wrap: break-word;
        word-break: break-word;
        width: auto !important;
        max-width: 100%;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-padding {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* ---------- Editorial Article Pages (Blog Detail) ---------- */

.editorial-main {
    background: linear-gradient(180deg, #2A5279 0%, #3E4152 70%, #2A5279 100%);
}

.article-container {
    background: transparent;
}

.article-body-text {
    color: #E5E7EB;
}

.article-body-text p {
    color: #CBD5F5;
}

.highlight-box {
    background: rgba(15, 23, 42, 0.95);
    border-left-color: #3B82F6;
}

.pull-quote {
    color: #38BDF8;
}

/* Related articles strip under each article */
.section-padding.bg-light {
    background: transparent !important;
}

.bg-light {
    background: transparent !important;
}

/* ---------- Booking Steps Section (Homepage) ---------- */

.booking-steps-wrapper {
    text-align: center;
}

.booking-steps-subtitle {
    color: #A8B0C8;
    font-size: 16px;
    margin-top: -20px;
}

.booking-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-top: 70px;
}

.booking-steps-line {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    height: 2px;
    background: radial-gradient(circle at 0% 50%, rgba(59,130,246,0.6), transparent 45%),
                radial-gradient(circle at 100% 50%, rgba(59,130,246,0.6), transparent 45%),
                linear-gradient(90deg, rgba(148,163,184,0.3), rgba(55,65,81,0.4));
    opacity: 0.7;
    pointer-events: none;
}

.booking-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding-top: 40px;
}

.booking-step-indicator {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, rgba(59,130,246,0.9), rgba(15,23,42,1));
    box-shadow:
        0 0 25px rgba(59,130,246,0.9),
        0 0 60px rgba(56,189,248,0.6);
}

.booking-step-indicator span {
    font-size: 26px;
    font-weight: 700;
    color: #E5F2FF;
}

.booking-step:not(.booking-step--active) .booking-step-indicator {
    background: radial-gradient(circle at 30% 0%, rgba(30,64,175,0.9), rgba(15,23,42,1));
    box-shadow:
        0 0 12px rgba(15,23,42,0.9),
        inset 0 0 0 1px rgba(148,163,184,0.4);
}

.booking-step-title {
    color: #F9FAFB;
    font-size: 18px;
    margin-bottom: 8px;
}

.booking-step-desc {
    color: #A8B0C8;
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto;
}

.booking-step-cta {
    margin-top: 18px;
    padding: 6px 16px;
    font-size: 11px;
    border-radius: 999px;
    display: none;
}

.booking-step.booking-step--active .booking-step-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .booking-steps {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }

    .booking-steps-line {
        display: none;
    }

    .booking-step {
        padding-top: 0;
    }
}

/* ---------- Premium Add-ons Modal (Services) ---------- */

.addon-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.addon-modal-overlay.active {
    display: flex;
}

.addon-modal {
    background: #020617;
    border-radius: 24px;
    max-width: 960px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    position: relative;
    overflow: hidden;
}

.addon-modal-content {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    min-height: 360px;
}

.addon-modal-image {
    position: relative;
    overflow: hidden;
}

.addon-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.addon-modal-text {
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 80vh;
}

.addon-modal-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #60A5FA;
    font-weight: 700;
    margin-bottom: 5px;
}

.addon-modal-title {
    font-size: 32px;
    margin-bottom: 18px;
    color: #F9FAFB;
}

.addon-modal-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #CBD5F5;
    margin-bottom: 18px;
}

.addon-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #E5E7EB;
}

.addon-modal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.addon-modal-list li::before {
    content: "•";
    position: absolute;
    left: 6px;
    top: 0;
    color: #34D399;
}

.addon-modal-cta {
    align-self: flex-start;
    padding-inline: 28px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.addon-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #E5E7EB;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.addon-modal-close:hover {
    background: rgba(30, 64, 175, 0.9);
}

@media (max-width: 840px) {
    .addon-modal {
        margin: 12px;
        width: calc(100% - 24px);
        max-height: 100vh;
        overflow: hidden;
    }

    .addon-modal-content {
        grid-template-columns: 1fr;
    }

    .addon-modal-image {
        max-height: 180px;
    }

    .addon-modal-text {
        padding: 16px 20px 14px;
        max-height: none;
        overflow: hidden;
    }

    .addon-modal-label {
        font-size: 10px;
        margin-bottom: 2px;
        letter-spacing: 1.5px;
    }

    .addon-modal-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .addon-modal-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .addon-modal-list-title {
        margin-top: 8px !important;
        margin-bottom: 6px !important;
        font-size: 13px !important;
    }

    .addon-modal-list {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .addon-modal-list li {
        margin-bottom: 3px;
        line-height: 1.4;
    }

    .addon-modal-cta {
        padding: 10px 22px !important;
        font-size: 14px !important;
    }
}
