.travel-ai-content {
    line-height: 1.7;
    font-size: 15px;
}

    .travel-ai-content h1,
    .travel-ai-content h2 {
        color: #ff9800;
        font-weight: 700;
    }

    .travel-ai-content h3 {
        border-left: 4px solid #ff9800;
        padding-left: 10px;
        margin-top: 10px;
    }

    .travel-ai-content ul {
        padding-left: 18px;
    }

    .travel-ai-content li {
        margin-bottom: 6px;
    }



.login-warning {
    position: fixed;
    top: 75px;
    right: 20px;
    width: 320px;
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 15px;
    border-radius: 10px;
    z-index: 9999;
    animation: slideDown .5s ease;
}

.warning-arrow {
    position: absolute;
    top: -10px;
    right: 50px;
    width: 20px;
    height: 20px;
    background: #fff8e1;
    transform: rotate(45deg);
}

@keyframes loginWarningSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-warning {
    animation: loginWarningSlideDown .5s ease;
}


/* Manage Page Sidebar */
.nav-pills .nav-link {
    color: #495057;
    font-weight: 500;
    transition: all .25s ease;
}

    .nav-pills .nav-link:hover {
        background: #f3f7ff;
        color: #0d6efd;
        transform: translateX(4px);
    }

    .nav-pills .nav-link.active {
        background: linear-gradient(135deg,#0d6efd,#5b8cff);
        color: white !important;
        box-shadow: 0 8px 20px rgba(13,110,253,.25);
    }

/* Footer */
.footer-modern {
    background: linear-gradient(90deg, #FFE29F 0%, #FFA99F 50%, #FFB6B9 100%);
    color: #212529;
    padding: 18px 0 8px;
    font-size: 14px;
}

    /* Headings */
    .footer-modern h3,
    .footer-modern h5,
    .footer-modern h6 {
        color: #000;
        font-weight: 700;
    }

    /* Paragraph */
    .footer-modern p {
        color: #212529;
        font-weight: 600;
        line-height: 1.5;
    }

    /* Links */
    .footer-modern a {
        color: #000;
        font-weight: 600;
        text-decoration: none;
        display: block;
        margin-bottom: 4px;
        transition: all .25s ease;
    }

        .footer-modern a:hover {
            color: #d35400;
            transform: translateX(3px);
        }

    /* Icons */
    .footer-modern i,
    .footer-modern .social-icon {
        color: #000;
        transition: .25s ease;
    }

        .footer-modern i:hover,
        .footer-modern .social-icon:hover {
            color: #d35400;
            transform: scale(1.15);
        }

    /* Bottom copyright */
    .footer-modern .text-center,
    .footer-modern small {
        color: #000;
        font-weight: 600;
    }

    /* Divider */
    .footer-modern hr {
        border-color: rgba(0, 0, 0, 0.2);
        margin: 10px 0;
    }

    /* Brand Section */
    .footer-modern .footer-brand h5 {
        color: #fff;
        font-weight: 800;
        text-shadow: 0 2px 8px rgba(0,0,0,.35);
    }

    .footer-modern .footer-brand p {
        color: #fff;
        font-weight: 500;
        line-height: 1.6;
        text-shadow: 0 1px 6px rgba(0,0,0,.25);
    }

.info-card {
    transition: .3s ease;
    cursor: pointer;
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

    .info-card .display-4 {
        transition: .3s;
    }

    .info-card:hover .display-4 {
        transform: scale(1.15);
    }

.info-card {
    border-radius: 20px;
}

.info-card {
    transition: all .3s ease;
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.accordion-button {
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background: #eef5ff;
        color: #0d6efd;
    }

/* ===========================
   Modern Navbar
=========================== */

.navbar-modern {
    background: linear-gradient(90deg,#FFE29F 0%, #FFA99F 50%, #FFB6B9 100%);
    box-shadow: 0 4px 18px rgba(255,153,102,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: .75rem 0;
}

    .navbar-modern .navbar-brand,
    .navbar-modern .nav-link {
        color: #2c3e50 !important;
    }

        .navbar-modern .nav-link:hover {
            background: rgba(255,255,255,.45);
            color: #d35400 !important;
        }

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .4px;
    color: #fff;
}

.navbar-modern .navbar-brand {
    color: #fff;
}

    .navbar-modern .navbar-brand:hover {
        color: #fff;
    }

.navbar-modern .nav-link {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin: 0 6px;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: .3s;
}

    .navbar-modern .nav-link:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
        transform: translateY(-2px);
    }

    .navbar-modern .nav-link.active {
        background: #2563eb;
        color: #fff !important;
    }

.navbar-modern .navbar-toggler {
    border: none;
}

    .navbar-modern .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-modern .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Login Partial */

.profile-link {
    transition: .25s;
}

    .profile-link:hover {
        transform: translateY(-2px);
    }

.profile-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.85);
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.profile-name {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.1;
}

.profile-text {
    color: rgba(255,255,255,.75);
    font-size: .72rem;
}

.navbar .btn-outline-light {
    border-width: 2px;
}

    .navbar .btn-outline-light:hover {
        background: white;
        color: #0d6efd;
    }

/* ===========================
   Explore Page
=========================== */

.explore-hero {
    max-width: 900px;
    margin: auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    padding: 10px;
    max-width: 760px;
    margin: auto;
    border: 1px solid #eee;
}

    .search-box input {
        flex: 1;
        border: none;
        font-size: 17px;
        padding: 14px;
        background: transparent;
    }

        .search-box input:focus {
            outline: none;
            box-shadow: none;
        }

.search-icon {
    font-size: 22px;
    color: #f59e0b;
    margin-left: 18px;
    margin-right: 12px;
}

.search-box .btn {
    border-radius: 40px;
    padding: 12px 28px;
    transition: .3s;
}

    .search-box .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255,193,7,.35);
    }

.explore-hero h1 {
    line-height: 1.2;
}

.card {
    border-radius: 22px;
}

.card-header {
    background: #fff;
}

.card iframe {
    border-radius: 0 0 22px 22px;
}

.travel-ai-content {
    line-height: 1.8;
    font-size: 15.8px;
}

/* ================= HERO ================= */

.hero-section {
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#eef6ff,#ffffff);
}

.hero-image {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .4;
    animation: moveBlob 12s infinite alternate;
}

.blob1 {
    width: 300px;
    height: 300px;
    background: #4F46E5;
    top: -100px;
    left: -80px;
}

.blob2 {
    width: 280px;
    height: 280px;
    background: #06B6D4;
    bottom: 50px;
    right: -100px;
}

.blob3 {
    width: 180px;
    height: 180px;
    background: #EC4899;
    top: 40%;
    left: 45%;
}

@keyframes moveBlob {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(50px,-50px);
    }
}

.hero-section h1 {
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.15rem;
}

.btn {
    transition: .35s;
}

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,.12);
    }


section {
    padding-top: 90px;
    padding-bottom: 90px;
}

    section img {
        transition: .5s;
    }

        section img:hover {
            transform: scale(1.03);
        }

.badge {
    padding: 10px 18px;
    font-size: .9rem;
    border-radius: 40px;
}

section h2 {
    line-height: 1.2;
}

section p {
    line-height: 1.8;
}

section i {
    margin-right: 8px;
    font-size: 18px;
}

.btn {
    font-weight: 600;
}
