/* ========== CLEAN TYPOGRAPHY SYSTEM ========== */
:root {
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Inter', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

body {
    background:  var(--body-color);;
}

.btn-turquoise {
    background-color:  var(--theme-color);
    border-color: #026873;
}


.btn-turquoise-outline {
    background-color: transparent;
    border: 2px solid  var(--theme-color);
    color:  var(--title-color);;
}

.btn-turquoise-outline:before {
    background-color: var(--theme-color) !important;
}


.th-btn.style4:before {
    background-color: var(--secondary-color) !important;
}


.bg-orange{
    background-color: var(--secondary-color);
}


.contact-form2 {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px 16px 0 0;
    padding: 40px;
}

#DateRange{
    background: white;
    color: black;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay
{
    background:  var(--secondary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color:  var(--secondary-color);
}

.hero-1 video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:  0 0 24px 24px;
    overflow: hidden;
}

.hero-1 .slider-arrow {
    --icon-size: 64px;
    background: var(--secondary-color);;
    backdrop-filter: blur(5px);
    border-radius: 36px;
    color: var(--white-color);
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    left: var(--pos-x, -90px)
}


.pax-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.pax-dropdown-toggle {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    background-color: #fff;
    color: black;
}
.pax-dropdown-menu {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    width: 220px; /* Increase width */
    display: none;
    z-index: 999;
    border-radius: 5px;
}
.pax-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.pax-item:last-child {
    margin-bottom: 0;
}
.pax-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pax-counter button {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
    border-radius: 3px;
}
.pax-counter input {
    width: 35px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}


/*new styles for the pax dropdown*/

/* Equal-height cards */
.tour-box--equal {
    display: flex;
    flex-direction: column;
    height: var(--tour-card-h, 520px); /* same height for all */
    border-radius: 14px;
    overflow: hidden;
}

/* 1/3 image, 2/3 content */
.tour-box--equal .tour-box_img {
    flex: 0 0 33.333%;
    position: relative;
}
.tour-box--equal .tour-box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content takes remaining 2/3 */
.tour-box--equal .tour-content {
    flex: 1 1 66.666%;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    min-height: 0; /* enables inner scrolling */
}

/* Stars */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    margin: 6px 0 10px;
}
.stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 2px;
}
.stars-bg,
.stars-fill {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #d9d9d9;
}
.stars-fill {
    position: absolute;
    top: 0; left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FFC107; /* gold */
}
.rating-num {
    font-size: 12px;
    opacity: 0.8;
}

/* Unlimited description, scroll if long */
.tour-desc {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
    overflow: auto;      /* scrolls inside the content area */
    padding-right: 4px;  /* space for scrollbar */
    flex: 1 1 auto;
}

/* Price + button stick to bottom */
.tour-bottom {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive fine‑tuning */
@media (min-width: 1200px) {
    :root { --tour-card-h: 540px; }
}
@media (max-width: 767.98px) {
    :root { --tour-card-h: 500px; }
    .stars { font-size: 16px; }
    .tour-desc { font-size: 13.5px; }
}

/* Make Swiper slides auto-height w/ equal cards inside */
.swiper-slide { height: auto; }

/* Equal-height card shell */
.tour-box--half {
    display: flex;
    flex-direction: column;
    height: var(--offer-card-h, 360px); /* reduced height */
    border-radius: 14px;
    overflow: hidden;
}

/* Half image / half content */
.tour-box--half .tour-box_img {
    flex: 0 0 40%;
    position: relative;
}
.tour-box--half .tour-box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content area */
.tour-box--half .tour-content {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    min-height: 0; /* allow scrolling inside */
}

/* Unlimited description with scroll */
.offer-desc {
    flex: 1 1 auto;
    overflow: auto;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 4px;
    padding-right: 4px;

}

/* Keep button at bottom */
.tour-action--bottom {
    margin-top: 8px;
}

/* Let Swiper handle auto height for the slide wrapper */
.swiper-slide { height: auto; }

/* ===============================================
   Welcome Section - Side by Side Layout
   =============================================== */

.welcome-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.welcome-content {
    padding-right: 40px;
}

.welcome-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.welcome-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 30px;
    border-radius: 2px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #00a8b3;
    margin: 20px auto 40px auto;
    border-radius: 2px;
    display: block;
}

.custom-grey-bg {
    background-color: #f8f9fa !important;
}

.welcome-description {
    margin-bottom: 40px;
}

.welcome-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.welcome-btn {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.welcome-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}

.welcome-image {
    position: relative;
    margin: -20px 0;
}

.welcome-image img {
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.welcome-image:hover img {
    transform: scale(1.02);
}

.welcome-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--theme-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .welcome-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-divider {
        margin: 30px auto;
    }

    .welcome-image {
        margin: 0;
    }

    .welcome-image img {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-image img {
        height: 300px;
        border-radius: 16px;
    }

    .welcome-image::before {
        inset: -10px;
        border-radius: 20px;
    }
}

/* ===== MODERN HERO REDESIGN ===== */

/* Hero Container Improvements */
.modern-hero-redesign {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Enhanced Background Styling */
.modern-hero-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

/* Elegant Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    max-width: 700px;
}

/* Modern Subtitle with Refined Glass Effect */
.hero-subtitle-wrapper {
    position: relative;
}

.modern-hero-subtitle {
    display: inline-block;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    box-shadow: none;
    transition: none;
    margin-bottom: 1rem;
}

.modern-hero-subtitle:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

/* Modern Hero Title with Refined Glass Effect */
.hero-title-wrapper {
    position: relative;
}

.modern-hero-title {
    display: block;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.98);
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    box-shadow: none;
    transition: none;
    margin: 0 0 2rem 0;
    text-align: left;
}

.modern-hero-title:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

/* Hero Description - Clean and Minimal */
.hero-description-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 0 3rem 0;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.hero-description:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

/* Call to Action Button */
.hero-cta-wrapper {
    margin-top: 1rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(61, 155, 152, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 8px 30px rgba(15, 118, 110, 0.4),
        0 4px 15px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, rgba(15, 118, 110, 1), rgba(61, 155, 152, 1));
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(15, 118, 110, 0.5),
        0 6px 20px rgba(255, 255, 255, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    color: white;
    text-decoration: none;
}

.hero-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateY(2px);
}

/* Modern Navigation Controls */
.modern-nav-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 1rem;
}

.modern-arrow {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1rem !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(31, 38, 135, 0.3);
}

.modern-arrow:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(31, 38, 135, 0.4);
}

.modern-arrow img {
    display: none !important;
}

/* Subtle Background Animation */
.modern-hero-redesign:hover .modern-hero-bg {
    transform: scale(1.08);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1199px) {
    .modern-hero-title {
        font-size: 1.35rem;
        padding: 1.3rem 2rem;
    }
    
    .modern-hero-subtitle {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        padding: 0.9rem 1.3rem;
    }
}

@media (max-width: 991px) {
    .modern-hero-redesign {
        min-height: 500px;
    }
    
    .modern-hero-title {
        font-size: 1.2rem;
        padding: 1.2rem 1.8rem;
    }
    
    .modern-hero-subtitle {
        font-size: 0.85rem;
        padding: 0.5rem 1.3rem;
        letter-spacing: 1.5px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
        max-width: 500px;
    }
    
    .hero-text-container {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .modern-hero-redesign {
        min-height: 450px;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem;
    }
    
    .modern-hero-title {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 15px;
    }
    
    .modern-hero-subtitle {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        max-width: 400px;
        border-radius: 10px;
    }
    
    .hero-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .modern-nav-controls {
        bottom: 20px;
    }
    
    .modern-arrow {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 576px) {
    .modern-hero-title {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
    
    .modern-hero-subtitle {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        max-width: 300px;
        line-height: 1.5;
    }
    
    .hero-text-container {
        gap: 1rem;
    }
}

/* ========== EXACT OFFERS CARD STYLES FROM /OFFERS PAGE ========== */

/* Clean Travel Card Design - Simplified & Easy on Eyes */
:root {
    --clean-teal: #0F766E;
    --soft-teal: #5EEAD4;
    --text-dark: #1F2937;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.clean-travel-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 520px;
    display: flex;
    flex-direction: column;
}

.clean-travel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Image Section - Slightly less than half */
.card-image-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clean-travel-card:hover .destination-image {
    transform: scale(1.05);
}

.simple-price {
    background: var(--bg-white);
    color: var(--clean-teal);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--clean-teal);
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Content Section - More than half */
.card-content-section {
    height: 320px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
}

.title-rating-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 10px;
}

.clean-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
}

.star {
    font-size: 12px;
    color: #E5E7EB !important;
    transition: color 0.2s ease;
}

.star.filled {
    color: #6B7280 !important;
}

.rating-text {
    margin-left: 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-medium);
}

.clean-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0 0 12px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-shrink: 1;
}

/* Fee Information Section */
.fee-info-section {
    margin-bottom: 12px;
    padding: 8px 10px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-item i {
    font-size: 12px;
    color: #6b7280;
    flex-shrink: 0;
}

.fee-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.3;
}

/* Redesigned Travel Info Section */
.travel-info-redesigned {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 11px;
    color: var(--clean-teal);
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label-new {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.info-value-new {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    line-height: 1.2;
}

/* Simple Buttons */
.simple-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Responsive Design for Offers Cards */
@media (max-width: 768px) {
    .clean-travel-card {
        height: 420px;
    }
    
    .card-image-section {
        height: 180px;
    }
    
    .card-content-section {
        height: 240px;
        padding: 14px;
    }
    
    .clean-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .clean-description {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .fee-info-section {
        margin-bottom: 8px;
        padding: 6px 8px;
    }
    
    .fee-text {
        font-size: 11px;
    }
    
    .travel-info-redesigned {
        margin-bottom: 8px;
        padding: 8px;
        gap: 4px;
    }
    
    .info-card {
        padding: 3px 0;
        gap: 6px;
    }
    
    .info-icon {
        width: 18px;
        height: 18px;
    }
    
    .info-icon i {
        font-size: 9px;
    }
    
    .info-label-new {
        font-size: 9px;
    }
    
    .info-value-new {
        font-size: 11px;
    }

    .simple-buttons {
        gap: 0.6rem;
    }
}

@media (max-width: 576px) {
    .clean-travel-card {
        height: 400px;
    }
    
    .card-image-section {
        height: 160px;
    }
    
    .card-content-section {
        height: 240px;
        padding: 14px;
    }
    
    .clean-title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .clean-description {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .fee-info-section {
        margin-bottom: 6px;
        padding: 5px 6px;
    }
    
    .fee-item i {
        font-size: 10px;
    }
    
    .fee-text {
        font-size: 10px;
    }
    
    .travel-info-redesigned {
        margin-bottom: 6px;
        padding: 6px;
        gap: 3px;
    }
    
    .info-card {
        padding: 2px 0;
        gap: 5px;
    }
    
    .info-icon {
        width: 16px;
        height: 16px;
    }
    
    .info-icon i {
        font-size: 8px;
    }
    
    .info-label-new {
        font-size: 8px;
    }
    
    .info-value-new {
        font-size: 10px;
    }
    
    .simple-buttons {
        gap: 0.5rem;
        flex-direction: column;
    }
}

/* Sparkle Animation for Blog Read More Button */
@keyframes sparkle {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ========== MODERN SECTION HEADERS ========== */

.modern-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Minimal Subtitle */
.subtitle-container {
    margin-bottom: 0.5rem;
}

/* Clean Subtitle - Minimalist */
.elegant-subtitle {
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    font-weight: var(--font-regular);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: none;
    border: none;
    border-radius: 0;
    transition: color 0.3s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.elegant-subtitle:hover {
    color: #0f766e;
    background: none;
    border: none;
    transform: none;
    box-shadow: none;
}

/* Main Title - Bold & Stylish with Softer Grey */
.elegant-main-title {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: #374151;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove all decorative elements */
.elegant-divider {
    display: none;
}

.divider-line {
    display: none;
}

.divider-dot {
    display: none;
}

.divider-dot::before {
    display: none;
}

/* Blog Header Left Alignment */
.blog-header-left {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.blog-header-left .header-content {
    max-width: none;
    margin: 0;
}

.blog-divider-left {
    display: none;
}

/* Responsive Design - Clean & Modern */
@media (max-width: 1199px) {
    .elegant-main-title {
        font-size: 2.2rem;
    }
    
    .modern-section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 991px) {
    .elegant-main-title {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .elegant-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.06em;
    }
    
    .modern-section-header {
        padding: 0.8rem 0;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 767px) {
    .elegant-main-title {
        font-size: 1.8rem;
        margin: 0;
        line-height: 1.3;
    }
    
    .elegant-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.3rem;
    }

    .modern-section-header {
        padding: 0.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .blog-header-left {
        text-align: center;
        margin-bottom: 1.2rem;
        padding: 0.3rem 0;
    }
}
    
    .modern-section-header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .blog-header-left {
        text-align: center;
    }
    
    .blog-divider-left {
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .elegant-main-title {
        font-size: 1.6rem;
        line-height: 1.35;
        margin: 0;
    }
    
    .elegant-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
        margin-bottom: 0.2rem;
    }
    
    .modern-section-header {
        padding: 0.3rem 0;
        margin-bottom: 1.2rem;
    }
    
    .blog-header-left {
        padding: 0.2rem 0;
        margin-bottom: 1rem;
    }
}

/* Clean Typography Enhancements */
.elegant-main-title,
.elegant-subtitle {
    -webkit-font-feature-settings: "kern" 1;
    -moz-font-feature-settings: "kern=1";
    font-feature-settings: "kern" 1;
}


/* ========== BLOG NAVIGATION ARROW STYLES ========== */
.blog-cards-container::-webkit-scrollbar {
    display: none;
}

.blog-nav-arrow {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.blog-nav-arrow:hover {
    background: rgba(20, 184, 166, 0.15) !important;
    border-color: #14b8a6 !important;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.25) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.blog-nav-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3) !important;
}

.blog-nav-arrow i {
    color: #4B5563 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.blog-nav-arrow:hover i {
    color: #14b8a6 !important;
    transform: scale(1.1) !important;
}

.blog-nav-prev {
    left: -20px !important;
}

.blog-nav-next {
    right: -20px !important;
}

.modern-blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(71, 85, 105, 0.2), 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.modern-blog-card:hover .blog-image-container img {
    transform: scale(1.05) !important;
}

.blog-read-more:hover {
    background: rgba(20, 184, 166, 0.15) !important;
    border-color: #14b8a6 !important;
    transform: translateX(4px) !important;
}

.blog-nav-arrow[style*="opacity: 0.3"] {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed !important;
}

.blog-nav-arrow[style*="opacity: 0.3"]:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: #e2e8f0 !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.blog-nav-arrow[style*="opacity: 0.3"] i {
    color: #9CA3AF !important;
}
