/* 
    Movpera - Luxury Tourism Global Styles
    Main Color: #0F172A
    Accent: #38BDF8
    Background: #F8FAFC
    Fonts: Poppins, Inter
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0F172A;
    --accent-color: #38BDF8;
    --bg-light: #F8FAFC;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a, a:hover {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* --- Navbar Revize --- */
.navbar {
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled, .navbar.navbar-solid {
    background-color: #0F172A !important;
    padding: 15px 0;
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nav-link {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Buttons Revize --- */
.btn-luxury {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    border-radius: 4px; /* Daha modern, az yuvarlak */
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}

.btn-outline-luxury {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 13px;
}


.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.section-padding {
    padding: 120px 0;
}

.nav-link {
    color: #fff !important;
    margin: 0 15px;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent-color) !important;
}

/* --- Cards --- */
.luxury-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

/* HOVER KURALI: translateY veya scale YASAK */
.luxury-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.card-img-wrapper {
    overflow: hidden;
    height: 250px;
}

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

/* Resimlerde de scale yasak, sadece brightness */
.luxury-card:hover .card-img-wrapper img {
    filter: brightness(1.1);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* --- Booking Bar --- */
.booking-bar {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.form-control-luxury {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 10px;
    width: 100%;
}

.form-control-luxury:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #fff;
    box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.2);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 5px; /* scale yerine minik bir hareket */
}

.transition {
    transition: var(--transition);
}

.hover-info:hover {
    color: var(--accent-color) !important;
    opacity: 1 !important;
}

.hover-white:hover {
    color: #fff !important;
}

/* --- New Sections --- */
.feature-box {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.partner-logo {
    opacity: 0.4;
    transition: var(--transition);
    filter: grayscale(1);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.bg-dark-luxury {
    background-color: #0B1120;
}


/* --- Jolly Tur Style Footer --- */
.footer-new {
    background-color: #fff;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 0; /* Newsletter handle this */
}

.newsletter-section {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: #fff;
    margin-bottom: 60px;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .btn-save {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.newsletter-form .btn-save:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links-list {
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-info i {
    color: var(--accent-color);
    width: 25px;
}

.social-icons-jolly {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons-jolly a {
    width: 38px;
    height: 38px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
}

.social-icons-jolly a:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    background-color: #f8fafc;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.payment-logos img {
    max-height: 25px;
    margin-right: 20px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.payment-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.legal-logos img {
    max-height: 40px;
    margin-left: 20px;
}

.footer-corp-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-corp-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
}

.footer-corp-links a:not(:last-child)::after {
    content: '|';
    margin-left: 15px;
    color: #cbd5e1;
}

.footer-corp-links a:hover {
    color: var(--accent-color);
}

/* --- Modern Hero Style --- */
.hero-modern {
    background: url('../img/hero-bg-modern.png') no-repeat center center;
    background-size: cover;
    padding: 160px 0 160px; /* Üstten boşluk artırıldı */
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%); /* Okunabilirlik için koyulaştırıldı */
}

.hero-modern-content {
    position: relative;
    z-index: 2;
}

.hero-modern-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: #10b981;
}

/* Sub-Hero Modern */
.sub-hero-modern {
    background: #006ce4;
    padding: 140px 0 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-hero-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.sub-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.sub-hero-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sub-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* Modern Card Grid for List Pages */
.tour-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.tour-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tour-card-modern img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.tour-card-modern-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-modern-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tour-card-modern-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.tour-card-modern-price-wrap {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-card-modern-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #006ce4;
}

.btn-modern-view {
    padding: 8px 20px;
    background: #006ce4;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.btn-modern-view:hover {
    background: #0053b3;
    color: #fff;
}

/* Legal & Static Pages Typography */
.content-page-wrap {
    background: #fff;
    padding: 60px 0;
}

.legal-text-content {
    color: #334155;
    line-height: 1.8;
}

.legal-text-content h3 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* --- Tabbed Search Box --- */
.search-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    position: relative;
    z-index: 3;
}

.search-tabs {
    background: #1e293b;
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-tab-btn {
    border: none;
    background: transparent;
    color: #94a3b8;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.search-tab-btn i {
    font-size: 18px;
}

.search-tab-btn.active {
    background: #fff;
    color: #1e293b;
}

.modern-search-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    padding: 10px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.search-row {
    display: flex;
    align-items: center;
}

.search-col {
    flex: 1;
    padding: 15px 25px;
    border-right: 1px solid #f1f5f9;
}

.search-col:last-child {
    border-right: none;
    flex: 0 0 auto;
}

.search-col label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.search-col-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    border: none;
    padding: 0;
    width: 100%;
    background: transparent;
}

.search-col-value:focus {
    outline: none;
}

.btn-search-main {
    background: #006ce4;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.btn-search-main:hover {
    background: #0056b3;
}

/* Mobile search box adjustment */
@media (max-width: 991px) {
    .search-row {
        flex-direction: column;
    }
    .search-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        text-align: left;
    }
    .btn-search-main {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* --- Trip.com Style Header --- */
.navbar-full {
    background-color: transparent !important; /* Transparent by default */
    padding: 15px 20px;
    height: auto;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.navbar-full.scrolled {
    background-color: #006ce4 !important; /* Blue on scroll */
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.navbar-brand-trip {
    font-size: 26px;
    font-weight: 800;
    color: #fff !important;
    margin-right: 30px;
    text-decoration: none;
}

.nav-link-trip {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px !important;
    position: relative;
    transition: all 0.2s ease;
    text-transform: none;
}

.nav-link-trip::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right; /* Hover bittiğinde sağa doğru küçülmesi için varsayılan sağ */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-trip:hover::after, 
.nav-link-trip.active::after {
    transform: scaleX(1);
    transform-origin: left; /* Hover başladığında soldan başlaması için */
}

.trip-utility {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trip-utility-item {
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.trip-utility-item:hover {
    opacity: 0.8;
}

.btn-trip-call {
    background-color: transparent;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-trip-call:hover {
    background-color: #fff;
    color: #006ce4 !important;
}

@media (max-width: 991px) {
    .navbar-full {
        background-color: #006ce4 !important; /* Mobile always blue for readability */
    }
    .navbar-full .container-fluid {
        flex-wrap: wrap;
    }
    .trip-utility {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* --- Modern Home Sections --- */
.section-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

/* Recommended Destinations */
.dest-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
    min-width: 0;
    overflow: hidden; /* Dışarıya hiçbir şekilde taşma yapmasın */
}

.tour-grid-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.dest-card-large {
    flex: 0 0 240px;
    height: 380px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    text-align: center;
}

.dest-card-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.dest-card-large * {
    position: relative;
    z-index: 2;
}

.dest-card-large h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-view-more {
    background: #fff;
    color: #1e293b;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-view-more:hover {
    background: #f8fafc;
}

.tour-grid-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tour-grid-row::-webkit-scrollbar {
    height: 0;
}

.tour-card-small {
    flex: 0 0 250px; /* 1320px container için 4 küçük + 1 büyük kart uyumu */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    height: 380px; /* Ana kartla eşitle */
    display: flex;
    flex-direction: column;
}

.tour-card-small img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.tour-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-card-content {
    padding: 12px;
}

.tour-card-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tour-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #006ce4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.tour-rating span {
    opacity: 0.8;
    font-weight: 400;
}

.tour-price {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.tour-price small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}

/* Booking Timer Section */
.booking-timer-container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.timer-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 2px solid #f1f5f9;
    padding: 5px 20px;
}

.timer-tab {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.timer-tab.active {
    color: #006ce4;
    border-bottom-color: #006ce4;
}

.timer-content {
    display: flex;
    padding: 20px;
    gap: 25px;
}

.timer-img {
    flex: 0 0 350px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

.timer-list {
    flex: 1;
}

.timer-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
    transition: background 0.2s;
}

.timer-row:hover {
    background: #f8fafc;
}

.timer-row.active {
    background: #f0fdf4;
}

.timer-price {
    color: #1e293b;
}

.timer-footer {
    padding: 10px 20px;
    background: #f8fafc;
    font-size: 11px;
    color: #94a3b8;
}

/* Popular Searches */
.popular-search-tabs {
    margin-bottom: 20px;
}

.popular-search-tab {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #1e293b;
    padding-bottom: 5px;
    margin-right: 20px;
    cursor: pointer;
}

.popular-search-tab.inactive {
    color: #64748b;
    border-bottom: none;
}

.city-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.city-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.city-info {
    padding: 15px;
}

.city-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.city-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.city-info strong {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #1e293b;
}

@media (max-width: 991px) {
    .dest-row {
        flex-direction: column;
    }
    .dest-card-large {
        flex: 0 0 300px;
        width: 100%;
    }
    .timer-content {
        flex-direction: column;
    }
    .timer-img {
        flex: 0 0 auto;
        width: 100%;
    }
}
