:root {
    --primary-color: #6773a9;
    --secondary-color: #97b983;
    --accent-color: #e2bd56;
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-body-font-family: "Poppins", sans-serif;
    --bs-body-line-height: 1.6;
    --bs-primary-rgb: 103, 115, 169;
    --bs-secondary-rgb: 151, 185, 131;
    --light-color: #f8f9fa;
    --dark-text: #333;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
    
    --gradient-start: var(--primary-color);
    --gradient-end: var(--secondary-color);
}

a {
    color: var(--primary-color);
    transition: all .25s linear;
}

a:hover {
    color: var(--secondary-color);
}

.modal {
    --bs-modal-width: 800px;
}

.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 .nav-link{
    position: relative;
}

.nav-item.active .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
}
section {
    background: #fff;
}

.bg-section {
    background-color: #1d27750f;
}

.accordion-button:focus {
    box-shadow: none;
}


/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, #ee1f1fdb, #1d2775cd);
    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.3;
}

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
}

/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.75) 0%, rgba(var(--bs-secondary-rgb), 0.75) 100%);
    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.3;
}

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
}

.home-hero {
    background-image: url('../images/home-banner.png');
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}

.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.jpg');
}


.hero-section {
    position: relative;
    min-height: 450px;
    padding-top: 15px;
    padding-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.hero-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /*padding: 0 20px;*/
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center;
    color: #fefefe;
    animation: fadeInUp 1s ease-out 0.3s both;
}


.form-switcher-card {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    animation: slideInRight 1s ease-out 0.6s both;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-tabs .nav-link.active {
    color: #4F46E5;
    border-bottom: 2px solid #4F46E5;
    font-weight: 500;
}

.nav-tabs .nav-link {
    color: #6B7280;
    padding: 0.75rem 1.25rem;
    font-size: 1.125rem;
}

.form-switcher-section {
    display: none;
}

.form-switcher-section.active {
    display: block;
}

.booking-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    animation: slideInRight 1s ease-out 0.6s both;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.hero-float-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
        margin: 0 15px;
    }
}

@media (max-width: 575px){
    .nav-tabs .nav-link{
        padding: 0.45rem 0.85rem;
        font-size: 1.025rem;
    }
    
     .hero-title {
        font-size: 1.8rem;
    }
}


@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Call to Action Button Styles */
.cta-container {
    position: relative;
    margin-left: 2rem;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.85) 0%, rgba(var(--bs-secondary-rgb), 0.75) 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 49, 75, 0.3);
    min-width: 180px;
    cursor: pointer;
    line-height: 1.4;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 49, 75, 0.4);
    background: linear-gradient(45deg, rgba(var(--bs-primary-rgb), 0.85) 0%, rgba(var(--bs-secondary-rgb), 0.75) 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(3, 49, 75, 0.3);
}

.cta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.cta-number {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    /*animation: pulse 2s infinite;*/
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Banner Strip */
.strip-banner-creative-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 0;
    overflow: hidden;
}

.strip-banner-creative-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.strip-banner-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*max-width: 900px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.strip-banner-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 25px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.strip-banner-content h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(24px, 3vw, 32px);
}

.strip-banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.5;
}

.strip-banner-button {
    background: var(--accent-color);
    border: 3px solid var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 189, 86, 0.3);
}

.strip-banner-button:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 189, 86, 0.4);
}

@media (max-width: 768px) {
    .strip-banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .strip-banner-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


 .trust-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.trust-feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 44px;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.trust-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.trust-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Decorative wave effect */
.trust-wave {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,218.7C672,213,768,171,864,170.7C960,171,1056,213,1152,208C1248,203,1344,149,1392,122.7L1440,112L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .trust-feature-card:hover {
        transform: translateY(0);
    }
}


/* Flight Card */
.travel-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.travel-card-link:hover {
    transform: translateY(-5px);
}

.travel-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-5px);
}

.travel-card-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    position: relative;
}

.travel-card-destination-pair {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.travel-card-destination {
    text-align: center;
    flex: 1;
}

.travel-card-destination i {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.travel-card-flight-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.8;
}

.travel-card-info-section {
    padding: 30px;
}

.travel-card-date-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.travel-card-date-info i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
}

.travel-card-price-display {
    background: linear-gradient(45deg, var(--accent-color), #ffd166);
    color: white;
    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

.travel-card .round-trip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

/* Hover effects for interactivity */
.travel-card-link:hover .travel-card-price-display {
    background: linear-gradient(45deg, #ffd166, var(--accent-color));
}

/* Cookie Banner */
.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;
}


/* FAQ Section */

.faq-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(3, 49, 75, 0.05);
    padding-left: 35px;
}

.faq-question.active {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 18px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.faq-answer-content {
    padding: 0 30px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-prompt {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), #0a4d73);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-prompt h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-prompt p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 125, 8, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-question:hover {
        padding-left: 25px;
    }

    .faq-answer-content {
        padding: 0 20px;
    }

    .contact-prompt h3 {
        font-size: 24px;
    }
}


/*Contact Page*/
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
    height: fit-content;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details .contact-icon {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.contact-details .contact-text {
    flex: 1;
}

.contact-details .contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details .contact-value {
    color: #666;
}

.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 125, 8, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #024368;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 49, 75, 0.3);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 920px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Primary Color Background */
.footer-container {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-icon {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.disclaimer-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.disclaimer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.disclaimer-content {
    line-height: 1.6;
}

.disclaimer-content p {
    margin-bottom: 1rem;
}

.disclaimer-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
}

/* Payment Methods Section */
.payment-methods {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.payment-methods-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.copyright-section{
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.75) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    color: #fff;
    text-align: center;
}

.footer-logo{
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
    
    .payment-icons {
        gap: 1.5rem;
    }
}

