/*
   BBC Resort Booking - Main Stylesheet
   Version: 1.0 - Cleaned
*/

/* ========== General Styles ========== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;

    --primary-rgb: 13, 110, 253;
    --secondary-rgb: 108, 117, 125;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Poppins', sans-serif;

    --header-height: 80px;
    --transition-speed: 0.3s;
}

body {
    font-family: var(--body-font);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: rgba(var(--primary-rgb), 0.8);
}

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: rgba(var(--primary-rgb), 0.9);
    border-color: rgba(var(--primary-rgb), 0.9);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ========== Header Styles ========== */
.navbar {
    transition: all var(--transition-speed);
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
    transition: all var(--transition-speed);
}

.navbar .nav-item {
    margin: 0 5px;
}

.navbar .nav-link {
    position: relative;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link.active, .navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width var(--transition-speed);
}

.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
    width: 70%;
}

/* ========== Announcement Bar Styles ========== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--info-color) 100%);
    color: white;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.marquee {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1.2rem;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ========== Home Banner ========== */
.home-banner {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.home-banner .container {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ========== Section Styles ========== */
.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    position: relative;
    font-weight: 700;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
}

/* ========== Newsletter Section ========== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    padding: 60px 0;
    color: white;
}

.newsletter-inner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    height: 50px;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 0 20px;
    font-size: 1rem;
}

.newsletter-form .btn {
    height: 50px;
    border-radius: 0 25px 25px 0;
    padding: 0 25px;
    font-weight: 600;
    border: none;
}

.newsletter-form .form-check {
    margin-top: 15px;
}

.newsletter-form .form-check-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.8;
}

.newsletter-form .form-check-label a {
    color: white;
    text-decoration: underline;
}

/* ========== Footer Styles ========== */
.main-footer {
    background-color: var(--dark-color);
    color: #a8a8a8;
    font-size: 0.95rem;
}

.footer-top {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Footer Logo */
.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.about-text {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-support {
    margin-top: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a8a8a8;
    transition: all var(--transition-speed);
    display: inline-block;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item .text {
    line-height: 1.5;
}

.info-item .text a {
    color: #a8a8a8;
    text-decoration: none;
}

.info-item .text a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: #a8a8a8;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
}

.footer-bottom-links a:hover {
    color: white;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.payment-methods img {
    max-height: 25px;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all var(--transition-speed);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: rgba(var(--primary-rgb), 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* ========== Counter Animation ========== */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.counter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* ========== Custom Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== Custom Button Styles ========== */
.btn-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    color: white;
}

/* ========== Custom Card Hover Effects ========== */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ========== Responsive Image Styles ========== */
.about-image img {
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ========== Custom Form Styles ========== */
.form-floating > label {
    color: #6c757d;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* ========== Dropdown Toggle Styles ========== */
.dropdown-toggle::after {
    display: none;
}

/* ========== Custom Social Icons ========== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========== Cookie Consent Styles ========== */
.cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.98) 0%, rgba(52, 58, 64, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1.5rem 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    bottom: 0;
    animation: slideUpBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUpBounce {
    0% {
        bottom: -200px;
        opacity: 0;
    }
    60% {
        bottom: 10px;
        opacity: 0.9;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-text .bi-cookie {
    font-size: 2rem;
    color: var(--warning-color);
    margin-top: 0.25rem;
    animation: cookieSpin 2s ease-in-out infinite;
}

@keyframes cookieSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.cookie-message h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    border: none;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(13, 202, 240, 0.9) 100%);
    color: white;
}

.cookie-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cookie-buttons .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.cookie-buttons .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.cookie-modal-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category-header h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

/* Custom Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--success-color) 0%, #28a745 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.cookie-modal-footer .btn {
    flex: 1;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Feedback Toast */
.cookie-feedback {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 10001;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-feedback.show {
    transform: translateX(0);
}

.cookie-feedback-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.cookie-feedback-info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}

.cookie-feedback-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #212529;
}

.cookie-feedback-error {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.cookie-feedback .bi {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive feedback */
@media (max-width: 768px) {
    .cookie-feedback {
        top: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(-100px);
    }

    .cookie-feedback.show {
        transform: translateY(0);
    }
}
/* ========== Responsive Styles ========== */
@media (max-width: 991.98px) {
    .navbar-brand img {
        max-height: 40px;
    }

    .home-banner {
        height: 450px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .home-banner {
        height: 350px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

    /* Mobile scroll containers for swipe functionality */
    .mobile-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 0 15px;
        white-space: nowrap;
    }

    .mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .mobile-scroll .row {
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .mobile-scroll-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        min-width: 280px;
        white-space: normal;
    }

    /* Experience tiles mobile */
    .experience-tiles .mobile-scroll-item {
        flex: 0 0 250px;
        min-width: 250px;
    }

    /* Destination cards mobile */
    .destination-cards .mobile-scroll-item {
        flex: 0 0 300px;
        min-width: 300px;
    }

    /* New resorts mobile */
    .new-resorts .mobile-scroll-item {
        flex: 0 0 320px;
        min-width: 320px;
    }

    /* Benefit tiles mobile */
    .benefit-tiles .mobile-scroll-item {
        flex: 0 0 200px;
        min-width: 200px;
    }

    /* Mobile card adjustments */
    .experience-tile,
    .destination-card,
    .resort-card,
    .benefit-tile {
        margin-bottom: 0;
        height: auto;
        min-height: 200px;
    }

    /* Mobile image adjustments */
    .experience-tile img,
    .destination-card img,
    .resort-card img {
        height: 150px;
        object-fit: cover;
    }

    /* Mobile text adjustments */
    .experience-tile .tile-content,
    .destination-card .card-content,
    .resort-card .card-content {
        padding: 15px;
    }

    .experience-tile h3,
    .destination-card h3,
    .resort-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .experience-tile p,
    .destination-card p,
    .resort-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Mobile benefit tiles */
    .benefit-tile {
        text-align: center;
        padding: 20px 15px;
    }

    .benefit-tile .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }

    .benefit-tile h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .benefit-tile p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .home-banner {
        height: 300px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Announcement bar responsive */
    .announcement-bar {
        padding: 6px 0;
    }

    .announcement-content {
        gap: 10px;
        padding: 0 10px;
    }

    .marquee {
        font-size: 0.8rem;
        animation-duration: 15s;
    }

    .announcement-close {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    /* Extra small mobile adjustments */
    .mobile-scroll {
        padding: 0 10px;
        gap: 10px;
        white-space: nowrap;
    }

    .mobile-scroll .row {
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .mobile-scroll-item {
        flex: 0 0 250px;
        min-width: 250px;
        white-space: normal;
    }

    .experience-tiles .mobile-scroll-item {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .destination-cards .mobile-scroll-item {
        flex: 0 0 270px;
        min-width: 270px;
    }

    .new-resorts .mobile-scroll-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .benefit-tiles .mobile-scroll-item {
        flex: 0 0 180px;
        min-width: 180px;
    }

    /* Smaller mobile images */
    .experience-tile img,
    .destination-card img,
    .resort-card img {
        height: 120px;
    }

    /* Smaller mobile text */
    .experience-tile .tile-content,
    .destination-card .card-content,
    .resort-card .card-content {
        padding: 12px;
    }

    .experience-tile h3,
    .destination-card h3,
    .resort-card h3 {
        font-size: 1rem;
    }

    .experience-tile p,
    .destination-card p,
    .resort-card p {
        font-size: 0.85rem;
    }

    /* Smaller benefit tiles */
    .benefit-tile .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .benefit-tile h3 {
        font-size: 0.9rem;
    }

    .benefit-tile p {
        font-size: 0.8rem;
    }
}
