/********** Template CSS - Modern Ultra UI **********/
:root {
    --primary: #764ba2;
    --primary-dark: #5a3a7a;
    --primary-light: #9b6fc9;
    --accent: #fbbf24;
    --accent-dark: #f59e0b;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-royal: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: var(--gradient-purple) !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(118, 75, 162, 0.6);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button - Modern Ultra Design ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn.btn-primary {
    background: var(--gradient-purple);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.5);
}

.btn.btn-secondary {
    color: #FFFFFF;
    background: var(--gradient-gold);
    border: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.btn-square {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 10px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 15px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: rgba(15, 23, 43, 0.9) !important;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: all .3s ease;
    text-transform: capitalize;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #764ba2 !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.8);
}

.navbar-light .navbar-nav .nav-link.active {
    color: #764ba2 !important;
    font-weight: 700;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
    text-shadow: none;
}

.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
    color: #764ba2 !important;
}

.navbar-light .navbar-brand img {
    /* max-height: 60px; */
    transition: .5s;
    width: 290px;
    height: auto;
}
.navbar-logo {
    width: 350px; 
    height: 500px; 
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transition: all .3s ease;
}

.navbar-logo:hover {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
    transform: scale(1.02);
}

.sticky-top .navbar-logo {
    filter: drop-shadow(0 2px 8px rgba(118, 75, 162, 0.4));
}

.sticky-top .navbar-logo:hover {
    filter: drop-shadow(0 4px 12px rgba(118, 75, 162, 0.6));
}

.navbar {
    height: 80px; 
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(118, 75, 162, 0.12);
    border-bottom: 1px solid rgba(118, 75, 162, 0.1);
}

.navbar.sticky-top {
    background: rgba(255, 255, 255, 0.99);
    background: #ffffff;
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.2);
    border-bottom: 1px solid rgba(118, 75, 162, 0.15);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .navbar {
        background: #ffffff;
        box-shadow: 0 8px 32px rgba(118, 75, 162, 0.15);
    }
    
    .navbar.sticky-top {
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(118, 75, 162, 0.25);
    }
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px; */
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: none;
        width: 290px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 3px;
        bottom: -1px;
        left: 50%;
        background: linear-gradient(90deg, #764ba2 0%, #9b6fc9 100%);
        transition: all .3s ease;
        border-radius: 2px;
        box-shadow: 0 2px 10px rgba(118, 75, 162, 0.5);
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar-light .navbar-brand img {
        width: 290px;
        height: auto;
        max-height: unset;
    }
}


/*** Hero Header - Ultra Modern ***/
.hero-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(155, 111, 201, 0.95) 100%), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    -webkit-animation: pulseGradient 15s ease-in-out infinite;
    animation: pulseGradient 15s ease-in-out infinite;
}

@-webkit-keyframes pulseGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulseGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-header::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    -webkit-animation: float 20s ease-in-out infinite;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

@-webkit-keyframes float {
    0%, 100% { 
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }
    33% { 
        -webkit-transform: translate(50px, 50px) scale(1.1);
        transform: translate(50px, 50px) scale(1.1);
    }
    66% { 
        -webkit-transform: translate(-30px, 30px) scale(0.9);
        transform: translate(-30px, 30px) scale(0.9);
    }
}

@keyframes float {
    0%, 100% { 
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }
    33% { 
        -webkit-transform: translate(50px, 50px) scale(1.1);
        transform: translate(50px, 50px) scale(1.1);
    }
    66% { 
        -webkit-transform: translate(-30px, 30px) scale(0.9);
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title - Modern ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 15px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}


/*** Service Cards - Ultra Modern with 3D ***/
.service-item {
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(118, 75, 162, 0.1);
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .service-item {
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(118, 75, 162, 0.12);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-royal);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.25);
    border-color: rgba(251, 191, 36, 0.3);
}

.service-item * {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-item:hover * {
    color: #FFFFFF !important;
}

.service-item i {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.service-item:hover i {
    -webkit-text-fill-color: #FFFFFF !important;
    transform: scale(1.1) rotate(5deg);
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial - Ultra Modern ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--gradient-purple) !important;
    border-color: transparent !important;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.3) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 6px;
    width: 12px;
    height: 12px;
    background: rgba(118, 75, 162, 0.2);
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    background: var(--gradient-purple);
    width: 30px;
}

.testimonial-carousel .owl-dot:hover {
    background: rgba(118, 75, 162, 0.5);
}


/*** Footer - Enhanced Modern Design ***/
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: normal;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .btn.btn-social:hover {
    color: #0f172a;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 8px 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer .btn.btn-link::before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
}

.footer .btn.btn-link:hover {
    color: #ffffff;
    padding-left: 20px;
    box-shadow: none;
}

.footer .btn.btn-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.footer .copyright a {
    color: var(--accent);
    transition: all 0.3s;
}

.footer .copyright a:hover {
    color: var(--accent-dark);
    letter-spacing: 0.5px;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    transition: all 0.3s;
}

.footer .footer-menu a:hover {
    color: var(--accent) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Footer Logo Animation */
.footer .footer-logo img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

/* Footer Badges Hover Effect */
.footer .badge-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Newsletter Input Focus */
.footer .newsletter-box input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.footer .newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .newsletter-box button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .newsletter-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Contact Info Hover */
.footer .contact-info > div {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
    border-radius: 8px;
}

.footer .contact-info > div:hover {
    background: rgba(251, 191, 36, 0.05);
    transform: translateX(5px);
}

.footer .contact-info a:hover {
    color: var(--accent) !important;
}

/* Office Locations Hover */
.footer .container-fluid .row > div > div {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
    border-radius: 12px;
}

.footer .container-fluid .row > div > div:hover {
    background: rgba(251, 191, 36, 0.05);
    transform: translateY(-3px);
}

/*** Contact Form ***/
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(95, 46, 145, 0.25);
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > textarea.form-control {
    height: auto;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #4a2573;
    border-color: #4a2573;
}

.input-group-text {
    background-color: var(--primary);
    color: #FFFFFF;
    border: 1px solid var(--primary);
    font-weight: 600;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(95, 46, 145, 0.25);
}

.form-select option {
    padding: 10px;
}

.country-code {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    background-color: var(--primary);
    color: #FFFFFF;
    font-weight: 600;
}

.country-code:focus {
    background-color: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: none;
}

.country-code option {
    background-color: #FFFFFF;
    color: var(--dark);
    padding: 10px;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* WhatsApp Floating Button - Modern */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 45px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation: pulse 2s ease-in-out infinite;
    animation: pulse 2s ease-in-out infinite;
    will-change: transform;
}

@-webkit-keyframes pulse {
    0%, 100% { 
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% { 
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    }
}

@keyframes pulse {
    0%, 100% { 
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% { 
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: #FFF;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    animation: none;
}

/*** Stats Section - Modern ***/
.stats-box {
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.95));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    border: 2px solid rgba(118, 75, 162, 0.1);
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .stats-box {
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(118, 75, 162, 0.12);
    }
}

.stats-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.stats-box i {
    font-size: 3.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

.stats-box:hover i {
    transform: scale(1.2) rotate(5deg);
}

.stats-box h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

/*** CTA Section - Modern ***/
.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(90, 58, 122, 0.95) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

/*** FAQ Accordion - Modern ***/
.accordion-item {
    background: rgba(255, 255, 255, 0.98);
    background: #ffffff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 75, 162, 0.15);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .accordion-item {
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(118, 75, 162, 0.08);
    }
}

.accordion-item:hover {
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.15);
    transform: translateY(-3px);
}

.accordion-button {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.05) 0%, rgba(155, 111, 201, 0.05) 100%);
    font-weight: 600;
    color: var(--primary);
    border: none;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-purple);
    color: #FFFFFF;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23764ba2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.5);
}

/*** Additional Modern Effects ***/
.container-xxl {
    position: relative;
}

/* Prevent overlap issues */
.container-xxl.py-5 {
    background: #ffffff;
    z-index: 10;
}

/* Ensure hero doesn't overlap */
.container-fluid.bg-primary {
    position: relative;
    z-index: 1;
}

/* All main sections should have proper stacking */
body > div,
body > section {
    position: relative;
}

/* Floating animation for decorative elements */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes rotateGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Modern card shadow */
.modern-card {
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.95));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(118, 75, 162, 0.1);
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.2);
    border-color: rgba(118, 75, 162, 0.3);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .modern-card {
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(118, 75, 162, 0.12);
    }
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-purple);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Modern spinner */
#spinner .spinner-border {
    border-color: var(--primary);
    border-right-color: transparent;
    width: 4rem !important;
    height: 4rem !important;
}

/* Image hover effects */
img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern badge */
.badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced shadows for depth */
.shadow-modern {
    box-shadow: 0 10px 40px rgba(118, 75, 162, 0.15) !important;
}

.shadow-modern-lg {
    box-shadow: 0 20px 60px rgba(118, 75, 162, 0.2) !important;
}

/* Responsive adjustments for ultra modern look */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem !important;
    }
    
    .section-heading {
        font-size: 2rem !important;
    }
    
    .stats-box {
        margin-bottom: 20px;
    }
}