:root {
    --primary-color: #5e2bff;
    --secondary-color: #ff522b;
    --bs-primary-rgb: 94, 43, 255;
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-body-font-family: "Noto Sans", sans-serif;
    --bs-body-line-height: 1.6;
}

a{
    color: var(--primary-color);
    transition: all .25s linear;
}

a:hover{
    color: var(--secondary-color);
}

/* Bootstrap Settings */

.modal {
    --bs-modal-width: 800px;
}

.accordion{
    --bs-accordion-active-bg: rgba(var(--bs-primary-rgb), 0.15);
    --bs-accordion-active-color: var(--primary-color);
}


.section-title {
    margin-bottom: 1.6rem;
    color: var( --primary-color );
}

.btn-theme-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.nav-item.active .nav-link {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
}

/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    width: 100%;
    align-items: center;
    background-position: 50% 90%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
}

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
    text-align: center;
}

.stunning-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            height: 170px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            backdrop-filter: blur(15px);
        }

        .floating-glass {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .floating-glass::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            transform: rotate(45deg);
            animation: shimmer 8s infinite linear;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .map-container {
            position: relative;
            width: 140px;
            height: 140px;
        }

        .world-map {
            width: 100%;
            height: 100%;
            /*background: url('https://placehold.co/140x140/2c5282/ffffff?text=🌍') no-repeat center;*/
            background-size: contain;
            position: relative;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .destination-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--secondary-color);
            box-shadow: 0 0 0 4px rgba(255, 82, 43, 0.3);
            animation: float 3s infinite ease-in-out;
            border-radius: 50%;
        }

        .dot-1 { top: 30%; left: 25%; animation-delay: 0s; }
        .dot-2 { top: 45%; left: 60%; animation-delay: 1s; }
        .dot-3 { top: 25%; left: 80%; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
        }

        .large-circular-compass {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            font-size: 1.8rem;
            animation: spin 10s linear infinite;
            border-radius: 50%;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .content-section {
            flex: 1;
            padding: 0 1.5rem;
        }

        .banner-title {
            color: white;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .banner-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .cta-button {
            background: var(--primary-color);
            color: white;
            border-radius: 50px;
            padding: 0.8rem 2.8rem;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .cta-button:hover::before {
            transform: scaleX(1);
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
            background: #e65100;
        }

        /* Particle system */
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .particle-1 { width: 6px; height: 6px; top: 20%; left: 15%; animation: drift 20s infinite linear; }
        .particle-2 { width: 4px; height: 4px; top: 60%; left: 25%; animation: drift 25s infinite linear reverse; }
        .particle-3 { width: 8px; height: 8px; top: 40%; left: 85%; animation: drift 30s infinite linear; }
        .particle-4 { width: 5px; height: 5px; top: 70%; left: 10%; animation: drift 22s infinite linear reverse; }

        @keyframes drift {
            0% { transform: translateX(0) translateY(0); opacity: 0.3; }
            50% { opacity: 0.7; }
            100% { transform: translateX(100vw) translateY(20px); opacity: 0.3; }
        }

        @media (max-width: 768px) {
            .stunning-banner {
                flex-direction: column;
                height: auto;
                padding: 2.5rem 1.5rem;
            }
            
            .banner-title {
                font-size: 1.9rem;
            }
            
            .cta-button {
                padding: 0.8rem 2.5rem;
                font-size: 1.1rem;
            }
        }
        
        
        .contact-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 15px;
            padding: 2px 15px;
            background-color: rgba(94, 43, 255, 0.1);
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-badge:hover {
            background-color: rgba(94, 43, 255, 0.2);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(94, 43, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-label {
            color: rgba(51, 51, 51, 0.8);
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            display: block;
            width: 100%;
        }

        .contact-number {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 992px) {
            .contact-badge {
                margin: 10px 0;
            }
        }

        @media (max-width: 576px) {
            .contact-info {
                flex-direction: row;
                align-items: center;
                gap: 8px;
            }

            .contact-label {
                display: none;
            }

            .contact-number {
                font-size: 1rem;
            }
        }



/*Trust Section*/

.trust-badges {
            display: grid;
            justify-content: center;
            gap: 20px;
            grid-template-columns: repeat(4, 1fr);
        }

        .trust-badge {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 230px;
            position: relative;
            overflow: hidden;
        }

        .trust-badge:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .trust-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(94, 43, 255, 0.05) 0%, transparent 50%);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            z-index: -1;
        }

        .trust-badge:hover::before {
            transform: rotate(45deg) translate(50%, 50%);
        }

        .badge-icon {
            width: 70px;
            height: 70px;
            background: rgba(94, 43, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 2rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .badge-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }

        .badge-description {
            color: #666;
            font-size: 0.75rem;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .trust-badges{
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trust-badge {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 576px) {
            .trust-badges{
                grid-template-columns: repeat(1, 1fr);
            }
            .contact-info {
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }
            
            .badge-title {
                font-size: 1.1rem;
            }
            
            .badge-description {
                font-size: 0.95rem;
            }
        }

.home-hero {
    background-image: url('../images/home-banner.jpg');
    min-height: 400px;
    background-position: 50% 75%;
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}

.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.jpg');
}

        /* Hero Section */
        .section-book-with {
            min-height: 100vh;
            position: relative;
            background: linear-gradient(135deg, rgba(94, 43, 255, 0.05) 0%, rgba(255, 82, 43, 0.05) 100%);
            overflow: hidden;
        }

        /* Animated Background Shapes */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float1 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-color);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--secondary-color);
            bottom: -50px;
            right: -50px;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            top: 50%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(100px, -100px) scale(1.1); }
            50% { transform: translate(-50px, 50px) scale(0.9); }
            75% { transform: translate(50px, 100px) scale(1.05); }
        }

        /* Main Content Container */
        .content-container {
            position: relative;
            z-index: 2;
            padding: 80px 0;
        }

        /* Creative Image Frame */
        .image-frame {
            position: relative;
            padding: 15px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .image-frame:hover {
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .image-frame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            /*z-index: -1;*/
            opacity: 0.5;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.5s ease;
        }

        .image-frame:hover .main-image {
            transform: scale(1.05);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: bounce 3s infinite ease-in-out;
        }

        .floating-1 {
            width: 80px;
            height: 80px;
            top: -30px;
            right: -20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-size: 1.5rem;
        }

        .floating-2 {
            width: 60px;
            height: 60px;
            bottom: -20px;
            left: 30px;
            background: var(--secondary-color);
            color: white;
            font-size: 1.2rem;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Content Styling */
        .book-with-content-wrapper {
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .book-with-content-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        }

        .book-with-title {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .book-with-description {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Custom Button */
        .book-with-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .book-with-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .book-with-button:hover::before {
            left: 100%;
        }

        .book-with-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(94, 43, 255, 0.3);
        }

        .book-with-button i {
            transition: transform 0.3s ease;
        }

        .book-with-button:hover i {
            transform: translateX(5px);
        }

        /* Decorative Elements */
        .section-book-with .decorative-dots {
            position: absolute;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.2;
            bottom: -50px;
            right: -50px;
            transform: rotate(45deg);
        }

    
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .book-with-title {
                font-size: 2rem;
            }
            
            .image-frame {
                transform: rotate(0deg);
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .book-with-title {
                font-size: 1.4rem;
            }
            
            .book-with-content-wrapper {
                padding: 30px 20px;
            }
            
            .main-image {
                height: 300px;
            }
        }




section {
    background: #fff;
}

.bg-section {
    background-color: rgba(var(--primary-color), 0.05);
}

.accordion-button:focus {
    box-shadow: none;
}

/* Flight Card */
.flight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.flight-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.flight-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.flight-card .tag {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flight-card .tag::after {
    content: '';
    background: var(--secondary-color);
    display: block;
    width: 15px;
    height: 6px;
    bottom: -5px;
    position: absolute;
    right: 2px;
    transform: skew(-50deg);
    border-radius: 0 16px 16px 0;
    z-index: 1;
}

.flight-card .route,
.flight-card .to {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.flight-card .from {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.dates-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--secondary-color);
}

.pricing-wrapper {
    border-top: 1px solid #ccc;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.flight-card .dates {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 4px;
}

.flight-card .airplane {
    font-size: 24px;
    text-align: center;
    margin: 8px 0;
}

.flight-card .price-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

.flight-card .price {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, 
        rgba(94, 43, 255, 0.9) 0%, 
        rgba(255, 82, 43, 0.85) 100%);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/patterns/cubes.png');
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.85);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Payment Section */
.payment-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.payment-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.payment-icon.visa { color: #1a1f71; }
.payment-icon.mastercard { color: #eb001b; }
.payment-icon.amex { color: #006fcf; }
.payment-icon.paypal { color: #003087; }
.payment-icon.apple-pay { color: #000; }
.payment-icon.gpay { color: #4285f4; }

/* Disclaimer */
.disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.disclaimer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Decorative Elements */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.footer-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-title {
        margin-top: 30px;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icon {
        width: 50px;
        height: 35px;
        font-size: 1.5rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner button {
    background: #4caf50;
    border: none;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.booking-info {
  background: #f9fbff;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 0 25px #ececec;
  border-radius: 8px;
}

.booking-info strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.booking-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}


@media only screen and (min-width: 920px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}