/* ==========================================================================
   1. GLOBAL & ROOT VARIABLES
   ========================================================================== */
:root {
    --primary-teal: #004040;
    --primary-color: #004040;
    --secondary-color: #c5a059;
    --accent-gold: #c5a059;
    --bg-soft: #f8fafb;
    --text-dark: #1a1a1a;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 64, 64, 0.08);
}

body {
    background-color: #f1f4f8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0 !important;
}

.section-title { 
    font-weight: 800; 
    font-size: calc(1.5rem + 1.5vw); 
    line-height: 1.1; 
    color: #000; 
    margin-bottom: 30px;
}

/* ==========================================================================
   2. NAVBAR RESPONSIVE OVERRIDES
   ========================================================================== */
@media (min-width: 992px) {
    .custom-navbar .nav-link {
        --bs-nav-link-font-size: 14px !important;
        --bs-nav-link-font-weight: 500 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        line-height: 38px !important;
    }

    .custom-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
}

/* ==========================================================================
   3. HERO SLIDER & VIDEO SYSTEM
   ========================================================================== */
.hero-wrapper-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    width: 100%;
    display: block;
    clear: both;
}

#heroSlider { 
    width: 100%;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
}

.carousel-inner, 
.carousel-item {
    height: 100% !important;
}

.slider-img { 
    width: 100%; 
    height: 100%; 
    background-size: cover; 
    background-position: center; 
}

.video-foreground { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.video-foreground iframe { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100vw; 
    height: 56.25vw; 
    min-height: 100%; 
    min-width: 177.77vh; 
    transform: translate(-50%, -50%); 
    pointer-events: none;
}

/* HERO OVERLAY & MATRIX CONTAINER */
.search-overlay-center-matrix {
    position: absolute;
    inset: 0;
    z-index: 15;
    background: rgba(0, 0, 0, 0.15);
    display: flex !important; 
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: 60px;
    padding-bottom: 120px;
    overflow-y: auto;
}

.custom-search-layout-container {
    max-width: 1140px;
    margin: 0 auto;
}

.graphic-hero-title {
    font-size: 3rem !important;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
    margin-top: 0 !important;
    margin-bottom: 20px !important; 
    text-transform: uppercase;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2;
    text-align: center;
}

.corporate-info-dual-matrix {
    width: 100%;
    max-width: 1140px !important;
    margin-bottom: 35px !important;
}

.left-brand-statement-box .brand-huge-title,
.brand-huge-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

.left-brand-statement-box .brand-sub-para {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    opacity: 0.95;
    margin: 0 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.right-slogans-transparent-holder {
    background: transparent !important;
    padding: 0 !important;
}

.premium-bullet-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bullet-star {
    color: var(--accent-gold, #c5a059);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.bullet-text {
    color: #ffffff !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.search-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    z-index: 18;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    margin-bottom: 30px;
}

/* BOTTOM FEATURE RIBBON */
.video-bottom-feature-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 20;
}

.feature-bar-grid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.feature-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold, #c5a059);
    font-size: 16px;
    transition: all 0.3s ease;
}

.feature-bar-item:hover .feature-icon-box {
    background: var(--accent-gold, #c5a059);
    color: #000000;
    transform: scale(1.08);
}

.feature-text-box h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.feature-text-box p {
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* RESPONSIVE HERO BREAKPOINTS (TABLETS & MEDIUM SCREENS) */
@media (max-width: 991px) {
    .hero-wrapper-section {
        height: auto !important;
    }
    .search-overlay-center-matrix {
        position: relative !important;
        padding: 40px 15px 0 !important;
        height: auto !important;
        overflow-y: visible;
    }
    .custom-search-layout-container {
        padding-bottom: 0 !important;
    }
    .graphic-hero-title {
        color: #071133 !important;
        font-size: 1.8rem !important;
        text-shadow: none;
        margin-bottom: 20px !important;
    }
    .corporate-info-dual-matrix {
        background: rgba(7, 17, 51, 0.05) !important;
        border: 1px dashed rgba(7, 17, 51, 0.15);
        padding: 20px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .left-brand-statement-box .brand-huge-title,
    .left-brand-statement-box .brand-sub-para,
    .bullet-text {
        color: #1e293b !important;
        text-shadow: none;
    }
    .video-bottom-feature-bar {
        position: relative !important;
        background: #004040 !important; 
        padding: 20px 10px !important;
        height: auto !important;
    }
    .feature-bar-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .feature-bar-item {
        justify-content: center;
    }
}

/* REAL MOBILE RESPONSIVE ENGINE (MAX-WIDTH: 767PX) */
@media (max-width: 767px) {
    .hero-wrapper-section {
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 20px !important;
        background: #0f172a !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .hero-wrapper-section .video-foreground,
    .hero-wrapper-section #heroSlider,
    .hero-wrapper-section .carousel-inner,
    .hero-wrapper-section .carousel-item {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    .hero-wrapper-section .video-foreground iframe,
    .hero-wrapper-section .slider-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        pointer-events: none !important;
    }

    .search-overlay-center-matrix {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        padding: 10px 0px !important;
        z-index: 5 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .search-overlay-center-matrix .container,
    .custom-search-layout-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .corporate-info-dual-matrix .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .corporate-info-dual-matrix .col-md-5,
    .corporate-info-dual-matrix .col-md-7 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    .left-brand-statement-box,
    .left-brand-statement-box *,
    .right-slogans-transparent-holder,
    .right-slogans-transparent-holder * {
        color: #ffffff !important;
    }

    .left-brand-statement-box .brand-huge-title,
    .brand-huge-title {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-align: center !important;
    }

    .left-brand-statement-box span,
    .brand-huge-title span {
        color: #38bdf8 !important;
        font-size: 12px !important;
        display: block !important;
        margin-top: 4px !important;
        font-weight: 600 !important;
    }

    .brand-sub-para,
    .bullet-text {
        color: #f8fafc !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .bullet-star i {
        color: #fbbf24 !important;
    }

    .search-card {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 15px 0 25px 0 !important;
        padding: 16px 12px 20px 12px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
        background: #ffffff !important;
        z-index: 10 !important;
        display: block !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .search-card .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .search-card [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    .search-card label {
        color: #1e293b !important;
        font-size: 11px !important;
    }

    .video-bottom-feature-bar {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 25px !important;
        margin-bottom: 15px !important;
        clear: both !important;
        background: #042f2e !important;
        padding: 16px 12px !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        z-index: 5 !important;
        display: block !important;
    }

    .feature-bar-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .feature-bar-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-bar-item {
        justify-content: flex-start;
        padding-left: 20px;
    }
}

/* ==========================================================================
   4. ACTIVITY CARDS (EXP-CARD)
   ========================================================================== */
.exp-card { 
    border-radius: 20px; 
    overflow: hidden; 
    position: relative; 
    background: #fff; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease; 
    margin-bottom: 24px; 
    border: 1px solid #eee; 
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.img-section { 
    position: relative; 
    height: 220px; 
    overflow: hidden; 
}

.img-section .carousel, 
.img-section .carousel-inner, 
.img-section .carousel-item {
    height: 100%;
    width: 100%;
}

.exp-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 1 !important; 
    transition: 0.5s ease; 
}

.exp-card:hover .exp-img:not(.carousel-item img) {
    transform: scale(1.08);
}

.content-section { 
    padding: 20px; 
    background: #fff; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.content-section h2 { 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: #1e293b; 
    margin-bottom: 8px; 
    min-height: 44px; 
    line-height: 1.4;
}

.meta-line { 
    font-size: 12px; 
    font-weight: 600; 
    display: flex; 
    gap: 15px; 
    margin-bottom: 15px; 
    color: #64748b;
}

.price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 8px;
}

.price-now { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #000; 
}

.price-was { 
    text-decoration: line-through; 
    opacity: 0.5; 
    font-size: 0.9rem; 
}

.pct-off-tag { 
    background: #fff; 
    color: #dc3545; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-size: 10px; 
    font-weight: 800; 
    border: 1px solid #dc3545; 
}

.btn-modern { 
    background: #f8fafc; 
    color: #000; 
    font-weight: 800; 
    border-radius: 12px; 
    padding: 10px 15px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 100%; 
    text-decoration: none;
    border: 1px solid #e2e8f0; 
    transition: 0.2s; 
    font-size: 13px;
    margin-top: auto; 
}

.btn-modern:hover { 
    background: #000; 
    color: #fff; 
    border-color: #000;
}

.instant-book-label {
    font-size: 10px;
    font-weight: 800;
    color: #16a34a;
    text-transform: uppercase;
}

.rating-badge-glass {
    position: absolute; 
    top: 12px; 
    left: 12px; 
    z-index: 15; 
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px; 
    border-radius: 8px; 
    color: #fff; 
    font-size: 11px; 
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   5. BOAT JOURNEY DESIGN
   ========================================================================== */
.boat-trip-card { 
    background: #fff; 
    border-radius: 20px; 
    display: flex; 
    flex-direction: row; 
    margin-bottom: 25px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    overflow: hidden; 
    border: 1px solid #f1f5f9; 
}

.trip-main { 
    flex: 3; 
    padding: 30px; 
    position: relative; 
    border-right: 1px solid #f1f5f9; 
}

.trip-side { 
    flex: 1.1; 
    padding: 30px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    background: #fcfdfd; 
    min-width: 180px; 
}

.badge-custom { 
    font-size: 10px; 
    font-weight: 800; 
    padding: 5px 12px; 
    border-radius: 6px; 
    text-transform: uppercase; 
    margin-right: 8px; 
    display: inline-block; 
}

.journey-timeline { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-top: 30px; 
    position: relative; 
    padding: 0 10px; 
}

.journey-track { 
    position: absolute; 
    top: 35px; 
    left: 40px; 
    right: 40px; 
    height: 1px; 
    border-top: 1px dashed #e2e8f0; 
    z-index: 1; 
}

.journey-node { 
    text-align: center; 
    flex: 1; 
    z-index: 2; 
    position: relative; 
    min-width: 120px; 
}

.journey-node h4 { 
    margin: 0; 
    font-weight: 800; 
    font-size: 1.4rem; 
    color: var(--primary-teal); 
    background: #fff; 
    display: inline-block; 
    padding: 0 15px; 
    position: relative; 
    z-index: 2; 
}

.journey-node .loc { font-size: 12px; font-weight: 700; color: #1a1a1a; margin-top: 5px; display: block; }
.journey-node .status { font-size: 10px; font-weight: 600; color: #64748b; text-transform: uppercase; display: block; margin-bottom: 5px; }

.price-value { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary-teal, #008080); 
    margin-bottom: 10px; 
}

.btn-book { 
    background: var(--primary-teal, #008080); 
    color: var(--white, #ffffff); 
    border-radius: 8px; 
    padding: 12px; 
    font-weight: 700; 
    text-decoration: none; 
    width: 100%; 
    display: block; 
    transition: 0.3s; 
    border: none; 
}

.moving-ferry { 
    position: absolute; 
    top: 25px; 
    left: 0; 
    color: var(--accent-gold); 
    font-size: 18px; 
    z-index: 3; 
    animation: smoothSailing 10s linear infinite; 
    pointer-events: none; 
}

@keyframes smoothSailing {
    0% { left: 10%; opacity: 0; transform: scaleX(1); }
    10% { opacity: 1; }
    90% { left: 85%; opacity: 1; transform: scaleX(1); }
    100% { left: 90%; opacity: 0; transform: scaleX(1); }
}

.animated-lowest { animation: blinker 1.5s linear infinite; color: #16a34a; font-weight: 700; font-size: 0.85rem; }

.blinking-lowest {
    animation: blinker 1.5s linear infinite;
    color: #fdb913;
    font-weight: 700;
    font-size: 0.85rem;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.carousel-control-prev, .carousel-control-next { width: 5%; filter: invert(1); }

/* ==========================================================================
   6. PREMIUM TRENDING SECTION
   ========================================================================== */
.premium-trending-hero { 
    position: relative; 
    padding: 10px 0 40px; 
    overflow: hidden; 
}

.trending-pill-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #eaf2ff; color: #3b82f6; font-size: 11px; font-weight: 800;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 25px;
    text-transform: uppercase; letter-spacing: 0.5px;
    flex-shrink: 0; 
}

.title-flex-container {
    display: flex;
    gap: 25px;
    align-items: flex-start; 
}

.vertical-accent-line {
    width: 5px;
    height: 185px; 
    background: #3b82f6;
    border-radius: 50px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-main-title {
    font-size: 2.8rem !important; 
    line-height: 1.1;
    font-weight: 800;
    color: #071133;
    letter-spacing: -1.5px; 
    margin: 0;
    white-space: nowrap; 
    text-rendering: geometricPrecision; 
}

.blue-highlight { color: #3b82f6; display: inline-block; position: relative; }

.wave-decoration-svg {
    position: relative;
    top: -6px;
    display: inline-flex;
    flex-direction: column;
    width: 125px; 
    height: 22px; 
    margin-left: 12px;
    vertical-align: middle;
}

.kayak-icon-middle-inline {
    display: inline-block;
    vertical-align: middle;
    width: 60px !important;
    height: 60px !important;
    margin-left: 15px;
}
.kayak-icon-middle-inline svg {
    width: 100% !important;
    height: 100% !important;
    fill: #3b82f6 !important;
}

.kayak-path-trail {
    position: relative;
    width: 300px;
    height: 40px;
    margin-top: 15px;
    margin-left: 240px; 
}
.dotted-line { width: 100%; height: 100%; }

.kayak-icon-small {
    position: absolute; 
    right: 0; 
    bottom: -5px;
    width: 38px !important;  
    height: 38px !important; 
    display: block !important;
}
.kayak-icon-small svg {
    width: 100% !important;
    height: 100% !important;
    fill: #3b82f6 !important;
    transform: rotate(-10deg);
}

.premium-info-area {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 480px;
    margin-left: auto; 
    margin-top: 25px; 
    background: transparent;
}

.pill-icon-circle {
    width: 80px; height: 80px;
    background: #f0f7ff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.pill-icon-circle svg {
    width: 44px !important;   
    height: 44px !important;  
    fill: #3b82f6 !important;
    display: block !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-info-area:hover .pill-icon-circle svg {
    transform: scale(1.1);
}

.pill-divider-line {
    width: 1px; height: 65px;
    background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
    margin: 0 30px;
    position: relative;
}

.premium-info-area::after {
    content: ''; position: absolute; right: -30px; top: 50%;
    transform: translateY(-50%); width: 8px; height: 8px;
    background: #3b82f6; border-radius: 50%;
}

.pill-description {
    font-size: 1.05rem; line-height: 1.6; font-weight: 500;
    color: #64748b; margin: 0; max-width: 290px;
}

@media (max-width: 991px) {
    .hero-main-title { 
        white-space: normal; 
        font-size: 2.0rem !important; 
        letter-spacing: -0.5px; 
    }
    .title-flex-container { gap: 18px; }
    .vertical-accent-line { height: 120px; }
    .wave-decoration-svg, .kayak-path-trail, .kayak-icon-middle-inline, .premium-info-area::after { display: none; }
    .premium-info-area { margin-left: 0; margin-top: 20px; max-width: 100%; }
}

@media (max-width: 768px) {
    #heroSlider, .slider-img { height: 300px !important; }
    .video-foreground iframe { width: 300%; height: 100%; left: -100%; transform: translate(0, -50%); }
    .boat-trip-card { flex-direction: column; }
    .trip-main { border-right: none; border-bottom: 1px solid #f1f5f9; padding: 20px; }
    .trip-side { padding: 20px; }
    .journey-track { left: 20px; right: 20px; }
    
    /* REVIEWS CAROUSEL MOBILE RESPONSIVE FIX */
    #reviewCarousel .carousel-item .col-12 {
        display: none;
    }
    #reviewCarousel .carousel-item .col-12:first-child {
        display: block;
    }
    .review-card {
        margin: 10px;
        border-radius: 15px !important;
    }
}

/* ==========================================================================
   7. TRUST BADGE & GOOGLE REVIEWS
   ========================================================================== */
.trust-badge-hero-wrapper {
    padding: 20px 10px 5px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    max-width: 1100px;
}

.google-reviews-pill-box {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.inline-google-g-logo {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.google-review-text-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.badge-brand-title {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
}

.badge-sub-stars {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
}

.stars-gold-flex {
    display: flex;
    gap: 2px;
    font-size: 12px;
}

.attachment-top-headline {
    font-size: 1.55rem;
    font-weight: 800;
    color: #004040;
    letter-spacing: -0.5px;
}

.attachment-sub-caption-text {
    font-size: 0.95rem;
    color: #475569;
    max-width: 850px;
    margin: 8px auto 0;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .attachment-top-headline {
        font-size: 1.2rem;
        text-align: center;
    }
    .attachment-sub-caption-text {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    .trust-badge-hero-wrapper .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* ==========================================================================
   8. PREMIUM BUTTONS & CUSTOM DROPDOWN SEARCH
   ========================================================================== */
.premium-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #071133;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(7, 17, 51, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.btn-icon-wrapper i {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.premium-view-all-btn:hover {
    color: #ffffff !important;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.premium-view-all-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.premium-view-all-btn:hover .btn-icon-wrapper {
    background: #ffffff;
    color: #1d4ed8;
}

.premium-view-all-btn:hover .btn-icon-wrapper i {
    transform: translateX(3px) scale(1.1);
}

.premium-view-all-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* CUSTOM DROPDOWN OPTIONS SYSTEM */
.custom-option-item {
    background-color: transparent !important;
    color: #000000 !important;
    display: block;
    width: 100%;
    text-decoration: none;
}

.custom-option-item:hover {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

.custom-option-item.selected-active {
    background-color: #e2e8f0 !important;
    color: #000000 !important;
    font-weight: bold;
}

#customOptionsList::-webkit-scrollbar {
    width: 5px;
}
#customOptionsList::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#customOptionsList::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
#customOptionsList::-webkit-scrollbar-thumb:hover {
    background: #999;
}