﻿/* ================================
   VISA SECTION
   ================================ */
.visa-section {
    background: white;
    padding: 30px 14px;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.visa-container {
    max-width: 1140px;
    margin: auto;
}

/* Title */
.title {
    font-size: 32px;
    font-weight: 700;
    color: #2c2f55;
    text-align: center;
    margin-bottom: 4px;
}

.subtitle {
    text-align: center;
    color: #6f7394;
    margin: 0 auto 18px;
    max-width: 620px;
    line-height: 1.4;
    font-size: 14px;
}

/* ================================
   TOP GRID
   ================================ */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    align-items: stretch;
}

.visa-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}

    /* Regular (non-slider) card image */
    .visa-card:not(.visa-slider-card) img {
        width: 100%;
        height: 155px;
        object-fit: cover;
    }

/* ================================
   SLIDER CARDS — key fixes
   ================================ */
.visa-slider-card {
    position: relative;
    overflow: hidden;
    /* Fixed height so card doesn't collapse */
    height: 255px;
}

/* Track: side-by-side slides */
.vslider {
    display: flex;
    height: 100%;
    width: 100%;
    min-width: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each slide = full card size */
.vslide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

    /* Image fills the entire slide absolutely */
    .vslide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Dark overlay on top of image */
    .vslide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
        z-index: 1;
        pointer-events: none;
    }

    /* Keep text content above the overlay */
    .vslide .card-content {
        z-index: 2 !important;
    }

    /* Text overlay — sits ON TOP of image via absolute positioning */
    .vslide .card-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 28px 16px 36px !important;
        background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%) !important;
        min-height: 0 !important;
    }

        .vslide .card-content h3 {
            color: #fff !important;
            margin: 0 0 3px !important;
            font-size: 17px !important;
        }

        .vslide .card-content p {
            color: rgba(255,255,255,0.85) !important;
            font-size: 12px !important;
            margin: 0 0 8px !important;
            line-height: 1.35 !important;
        }

/* Dot indicators */
.vdots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.vdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

    .vdot.active {
        background: #fff;
        transform: scale(1.3);
    }

/* ================================
   REGULAR card content (non-slider)
   ================================ */
.visa-card:not(.visa-slider-card) .card-content {
    padding: 12px;
    min-height: 0;
}

    .visa-card:not(.visa-slider-card) .card-content h3 {
        margin: 0 0 2px;
        font-size: 18px;
        color: #2c2f55;
    }

    .visa-card:not(.visa-slider-card) .card-content p {
        color: #6f7394;
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.35;
    }

/* ================================
   STATS CARD
   ================================ */
.stats-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stats-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
}

.stats-header h3 {
    margin: 0 0 2px;
    font-size: 18px;
    color: #2c2f55;
    font-weight: 700;
}

.stats-header p {
    font-size: 12px;
    color: #6f7394;
    margin: 0 0 10px;
}

.stats-body {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.donut-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-seg {
    transition: stroke-dasharray 1s ease;
}

.donut-pct {
    transform: rotate(90deg);
    transform-origin: 60px 60px;
    font-size: 20px;
    font-weight: 800;
    fill: #2c2f55;
    font-family: 'Inter', system-ui, sans-serif;
}

.donut-label {
    transform: rotate(90deg);
    transform-origin: 60px 60px;
    font-size: 9px;
    fill: #6f7394;
    font-family: 'Inter', system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4a4d6e;
}

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-text strong {
    font-weight: 700;
    color: #2c2f55;
    margin-left: 2px;
}

/* ================================
   BOTTOM GRID
   ================================ */
.bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 200px;
}

.types-box {
    background: #fff;
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

    .types-box h3 {
        font-size: 19px;
        margin-bottom: 2px;
        color: #2c2f55;
    }

.desc {
    color: #6f7394;
    margin-bottom: 8px;
    font-size: 13px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.type-card {
    background: #f7f8fd;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #eef0f7;
    box-shadow: 0 3px 10px rgba(0,0,0,0.26);
}

    .type-card h4 {
        margin: 0 0 2px;
        font-size: 15px;
        color: #2c2f55;
    }

    .type-card p {
        font-size: 12px;
        color: #6f7394;
        margin-bottom: 6px;
        line-height: 1.3;
    }

/* ================================
   SUPPORT CARD
   ================================ */
.support-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.34);
    background: linear-gradient(135deg, #2c2f55 0%, #1a1d3a 100%);
    display: flex;
    flex-direction: row;
    height: 100%;
}

.support-agent-img {
    position: relative;
    width: 48%;
    flex-shrink: 0;
    overflow: hidden;
}

    .support-agent-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        filter: brightness(0.92);
    }

.online-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    animation: pulse-green 1.6s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.25);
    }
}

.support-info {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.support-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f2b83f;
    margin: 0;
}

.support-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.support-number {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 5px 10px;
    width: fit-content;
    transition: background 0.2s;
}

    .support-number:hover {
        background: rgba(255,255,255,0.18);
    }

.support-btn {
    width: fit-content;
    margin-top: 2px;
}

/* ================================
   BUTTON
   ================================ */
.btn {
    display: inline-block;
    background: linear-gradient(180deg, #ffd86a, #f2b83f);
    padding: 7px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    color: #2b2b2b;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(241,183,62,0.22);
    cursor: pointer;
}

    .btn.small {
        padding: 6px 12px;
        font-size: 11px;
    }

.type-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.type-icon {
    display: inline-flex;
    align-items: center;
    color: #f2b83f;
}

/* ================================
   TABLET
   ================================ */
@media (max-width: 1024px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-card {
        height: 180px;
    }
}

/* ================================
   MOBILE
   ================================ */
@media (max-width: 640px) {
    .title {
        font-size: 26px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .visa-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .visa-slider-card {
        height: 200px;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        height: auto;
    }

    .type-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .types-box {
        padding: 10px;
    }

    .type-card {
        padding: 9px;
    }

    .support-card {
        height: 180px;
    }

    .support-name {
        font-size: 14px;
    }

    .donut-wrap {
        width: 90px;
        height: 90px;
    }
}
/* --------------------------------
------------CRUISE SECTION----------- 
---------------------------------*/

.cruise-packages-section {
    padding: 60px 0 80px;
    background-color: white;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.cruise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.packages-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -220px !important;
}

.packages-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

/* CARD */
.package-card {
    width: 280px;
    padding: 0px !important;
    border-radius: 10px;
    overflow: visible;
    border: 0px;
    background: white;
    box-shadow: 0 10px 22px rgba(0,0,0,0.34);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .package-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(0,0,0,0.24);
    }

/* IMAGE */
.card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

    .card-image img {
        width: 100%;
        height: 100%;
        border-radius: 0px !important;
        object-fit: cover;
        display: block;
    }

/* BADGE */
.card-badge {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 2px 10px;
    border-radius: 0 6px 6px 0;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

/* Badge colors matching card gradients */
.package-card:nth-child(1) .card-badge {
    background: rgba(74,139,194,0.65);
}

.package-card:nth-child(2) .card-badge {
    background: rgba(168,90,106,0.65);
}

.package-card:nth-child(3) .card-badge {
    background: rgba(90,138,184,0.65);
}

/* CONTENT AREA */
.cruise-card-content {
    padding: 15px 25px 0px 25px;
    color: white;
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 10px 10px;
}

    /* DARKER CARD BACKGROUNDS */

    .cruise-card-content.caribbean {
        background: linear-gradient(135deg, #3f7fb3 0%, #2f6fa3 100%);
    }

    .cruise-card-content.mediterranean {
        background: linear-gradient(135deg, #9e4f5e 0%, #863e4c 100%);
    }

    .cruise-card-content.alaskan {
        background: linear-gradient(135deg, #4f7fa8 0%, #3f6f97 100%);
    }


    /* TEXT */
    .cruise-card-content h3 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 6px;
        line-height: 1.2;
        color: white !important;
    }

    .cruise-card-content p {
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.95;
        margin-bottom: 5px;
        flex-grow: 1;
        color: rgba(255,255,255,0.95) !important;
    }

/* BUTTON */
.view-btn {
    color: #fff;
    padding: 7px 22px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    position: relative;
    bottom: -22px; /* pushes it outside */
    align-self: flex-start;
    box-shadow: 0 10px 18px rgba(0,0,0,0.34);
    text-transform: uppercase;
    z-index: 5;
}

/* Button color matches card */
.caribbean .view-btn {
    background: linear-gradient(135deg,#5a9fd4,#4a8bc2);
}

.mediterranean .view-btn {
    background: linear-gradient(135deg,#c06c7a,#a85a6a);
}

.alaskan .view-btn {
    background: linear-gradient(135deg,#6a9bc4,#5a8ab8);
}

/* Replace the decorative-ship styles with these */
.decorative-ship {
    position: absolute;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 520px;
    z-index: 1;
    pointer-events: none;
    perspective: 1000px;
}

.ship-3d-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    filter: drop-shadow(-20px 30px 40px rgba(0,60,120,0.45));
    animation: shipFloat 6s ease-in-out infinite;
}

@keyframes shipFloat {
    0%, 100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0px);
    }

    50% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(-14px);
    }
}

.ship-3d-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Water reflection beneath ship */
.ship-reflection {
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(74,139,194,0.35) 0%, transparent 70%);
    filter: blur(8px);
    animation: reflectionPulse 6s ease-in-out infinite;
}

@keyframes reflectionPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

/* Glow ring behind ship */
.ship-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(90,160,220,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1.1);
    }
}

@media (max-width: 992px) {
    .package-card {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        max-width: 320px;
    }
}


    /* --------------------------------
-----------Flight SECTION----------
---------------------------------*/

/* ===== CSS Variables ===== */
:root {
    --flt-color-bg: #f0f4f8;
    --flt-color-surface: #ffffff;
    --flt-color-text-primary: #1e293b;
    --flt-color-text-secondary: #64748b;
    --flt-color-text-muted: #94a3b8;
    --flt-color-navy: #1e3a5f;
    --flt-color-navy-light: #2d4a6f;
    --flt-color-blue: #3b82f6;
    --flt-color-blue-dark: #2563eb;
    --flt-color-coral: #f87171;
    --flt-color-coral-dark: #ef4444;
    --flt-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --flt-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --flt-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --flt-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --flt-shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --flt-radius-sm: 8px;
    --flt-radius-md: 12px;
    --flt-radius-lg: 16px;
    --flt-radius-xl: 20px;
    --flt-radius-full: 9999px;
    --flt-transition-fast: 150ms ease;
    --flt-transition-base: 300ms ease;
    --flt-transition-slow: 500ms ease;
}

/* ===== Base Section ===== */
.flt-section {
    padding: 60px 24px;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.flt-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Header ===== */
.flt-section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.flt-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c2f55;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.flt-section-subtitle {
    font-size: 14px;
    color: var(--flt-color-text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

.flt-btn-view-all {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--flt-radius-full);
    color: var(--flt-color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--flt-transition-base);
    box-shadow: var(--flt-shadow-sm);
}

    .flt-btn-view-all:hover {
        background: white;
        color: var(--flt-color-navy);
        box-shadow: var(--flt-shadow-md);
        transform: translateY(-2px);
    }

/* ===== Flight Cards Grid ===== */
.flt-flights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 82px;
}

.flt-flight-card {
    background: var(--flt-color-surface);
    border-radius: var(--flt-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all var(--flt-transition-base);
    position: relative;
}

    .flt-flight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    }

/* Card Image */
.flt-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .flt-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--flt-transition-slow);
    }

.flt-flight-card:hover .flt-card-image img {
    transform: scale(1.1);
}

.flt-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, transparent 0%, transparent 40%, rgba(30, 58, 95, 0.8) 100% );
}

/* Flight Badge */
.flt-flight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--flt-radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: var(--flt-color-text-secondary);
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .flt-flight-badge svg {
        color: var(--flt-color-blue);
    }

/* Price Tag */
.flt-price-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--flt-radius-md);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
    font-weight: 800;
    color: var(--flt-color-navy);
}

.flt-price-icon {
    font-size: 20px;
    color: var(--flt-color-coral);
    line-height: 1;
}

.flt-price-amount {
    font-size: 32px;
    letter-spacing: -0.02em;
}

/* Card Content */
.flt-card-content {
    padding: 24px;
    padding-bottom: 5px;
    position: relative;
    margin-top: -50px;
    z-index: 2;
}

.flt-route-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 100%;
    left: 24px;
    right: 24px;
    margin-bottom: 16px;
}

.flt-btn-book {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: none;
    border-radius: var(--flt-radius-md);
    color: var(--flt-color-navy);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--flt-transition-base);
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

    .flt-btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

.flt-btn-book-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .flt-btn-book-primary:hover {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

/* Card Features */
.flt-card-features {
    display: flex;
    gap: 20px;
    padding-top: 5px;
    border-top: 1px solid #f1f5f9;
    justify-content: space-between;
}

.flt-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--flt-color-text-secondary);
    font-weight: 500;
}

    .flt-feature svg {
        color: var(--flt-color-text-muted);
        flex-shrink: 0;
    }

/* Featured Card Variant */
.flt-flight-card.flt-featured {
    transform: scale(1.02);
}

    .flt-flight-card.flt-featured:hover {
        transform: scale(1.02) translateY(-8px);
    }

/* ===== Bottom Banner ===== */
.flt-featured-banner {
    position: relative;
    border-radius: var(--flt-radius-xl);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
}

.flt-banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .flt-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.1);
    }

.flt-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.8) 40%, rgba(30, 58, 95, 0.4) 100% );
}

.flt-banner-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.flt-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.flt-banner-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.flt-btn-banner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--flt-radius-full);
    color: var(--flt-color-navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all var(--flt-transition-base);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

    .flt-btn-banner:hover {
        transform: translateY(-3px);
        background: white;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .flt-btn-banner svg {
        transition: transform var(--flt-transition-fast);
    }

    .flt-btn-banner:hover svg {
        transform: translateX(4px);
    }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .flt-flights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flt-btn-view-all {
        position: relative;
        margin-top: 16px;
    }

    .flt-section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .flt-flights-grid {
        grid-template-columns: 1fr;
    }

    .flt-flight-card.flt-featured {
        transform: none;
    }

        .flt-flight-card.flt-featured:hover {
            transform: translateY(-8px);
        }

    .flt-featured-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px;
    }

    .flt-banner-content {
        max-width: 100%;
    }

    .flt-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .flt-section {
        padding: 40px 16px;
    }

    .flt-card-features {
        flex-direction: column;
        gap: 12px;
    }

    .flt-price-amount {
        font-size: 24px;
    }
}


/* Hero: needs bottom padding to give the strip space to overlap */
.home2-banner-section {
    position: relative;
    z-index: 0;
    padding-bottom: 36px;
}

/* Strip: full viewport width, pulled up into hero */
.why-book-section {
    position: relative;
    z-index: 10;
    justify-self: center;
    margin-top: -70px;
    margin-bottom: 36px;
    border-radius: 10px;
    padding: 0; /* NO side padding — goes edge to edge */
    width: 60%;
}

/* The strip itself — full width, only bottom corners rounded */
.why-book-card {
    width: 100%;
    background: #fff;
    border-radius: 10px; /* flat top, flat sides */
    box-shadow: 0 6px 24px rgba(0,0,0,0.40); /* only bottom shadow */
    display: flex;
    align-items: center;
    padding: 16px 48px;
    gap: 10px;
    box-sizing: border-box;
}

/* Left label */
.why-book-label {
    flex-shrink: 0;
}

    .why-book-label .why-eyebrow {
        display: block;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #f59e0b;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    .why-book-label h2 {
        font-size: 15px;
        text-align: center;
        font-weight: 800;
        color: #111;
        margin: 0;
        white-space: nowrap;
    }

/* Vertical divider */
.why-book-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* Icons row */
.why-book-icons {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
}

.why-icon-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

    .why-icon-item img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        transition: transform 0.2s;
    }

    .why-icon-item:hover img {
        transform: scale(1.08);
    }

    .why-icon-item span {
        font-size: 12px;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
    }

/* Mobile */
@media (max-width: 768px) {
    .why-book-section {
        margin-top: -28px;
    }

    .why-book-card {
        flex-wrap: wrap;
        padding: 14px 16px;
        gap: 12px;
    }

    .why-book-divider {
        display: none;
    }

    .why-book-icons {
        gap: 10px;
        width: 100%;
        justify-content: space-around;
    }

    .why-icon-item img {
        width: 34px;
        height: 34px;
    }

    .why-icon-item span {
        font-size: 11px;
    }
}

.advisors-section {
    background: #ffffff;
    width: 100%;
    max-width: 1200px;
    padding: 56px 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    justify-content: space-between;
    gap: 0;
}

/* ── LEFT ── */
.advisors-left {
    width: 100%;
    padding: 0px 50px;
}

    .advisors-left h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #111827;
        line-height: 1.2;
        margin: 0 0 12px 0;
        padding: 0;
    }

    .advisors-left p {
        font-size: 0.875rem;
        font-weight: 400;
        color: #6b7280;
        line-height: 1.6;
        margin: 0 0 28px 0;
        padding: 0;
        max-width: 280px;
    }

    .advisors-left a.btn-speak {
        display: block;
        width: 100%;
        background: #1e2d4f;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        padding: 15px 0;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .advisors-left a.btn-quote {
        display: block;
        width: 100%;
        background: #ffffff;
        color: #111827;
        text-align: center;
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        padding: 14px 0;
        border-radius: 6px;
        border: 1.5px solid #d1d5db;
    }

/* ── RIGHT ── */
.advisors-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.advisor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 110px;
    text-align: center;
}

.advisor-img {
    width: 110px;
    height: 130px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    border-radius: 55px 55px 20px 20px;
    background: #e5e7eb;
    display: block;
}

.advisor-card span.name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-top: 12px;
}

.advisor-card span.role {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 3px;
}