/* ================================================
   Ajanabee Travel - Main Stylesheet
   ================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #2563EB;
    --secondary-color: #7C3AED;
    --accent-color: #06B6D4;
    --primary-gradient: linear-gradient(135deg, #069191 0%, #3aa3ed 100%);
    --secondary-gradient: linear-gradient(135deg, #069191 0%, #3aa3ed 100%);
    --accent-gradient: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-text: #e2e8f0;
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-family: 'Poppins', sans-serif;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-color: var(--dark-bg);
    --card-bg: var(--dark-card);
    --text-color: var(--dark-text);
    --text-muted: #94a3b8;
    --border-color: #334155;
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-color: var(--light-bg);
    --card-bg: var(--light-card);
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow-x: hidden;
}

/* ================================================
   LOADER ANIMATION
   ================================================ */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .loader-container.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

[data-theme="dark"] .navbar {
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

    .navbar-brand:hover {
        transform: scale(1.02);
    }

    .navbar-brand i {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.2rem;
        animation: planeFloat 3s ease-in-out infinite;
    }

@keyframes planeFloat {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
    white-space: nowrap;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--primary-gradient);
        transition: all 0.3s ease;
        border-radius: 3px;
        transform: translateX(-50%);
    }

    .nav-link:hover::before {
        width: 60%;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(37, 99, 235, 0.08);
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600;
    }

        .nav-link.active::before {
            width: 60%;
        }

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.25rem;
}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .navbar-toggler:hover {
        background: rgba(37, 99, 235, 0.1);
        border-radius: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
}

    .navbar-toggler-icon span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navbar Right Section - Theme + Auth Buttons */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--primary-gradient);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .theme-toggle::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: 0.5s;
    }

    .theme-toggle:hover::before {
        left: 100%;
    }

    .theme-toggle:hover {
        transform: rotate(15deg) scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }

    .theme-toggle i {
        transition: all 0.4s ease;
    }

/* Auth Buttons */
.btn-auth {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
}

    .btn-login:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    }

.btn-register {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    padding: 0.35rem 0.75rem;
}

    .btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        color: white;
    }

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Form / Booking Options */
.search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease 0.4s both;
}

[data-theme="dark"] .search-box {
    background: rgba(30, 41, 59, 0.95);
}

.search-box .form-control,
.search-box .form-select {
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

    .search-box .form-control:focus,
    .search-box .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.search-btn {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

/* ================================================
   BOOKING CAROUSEL
   ================================================ */
.booking-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: visible;
}

/* Custom Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 100;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

    .carousel-arrow:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    }

    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

.carousel-arrow-left {
    left: -60px;
}

.carousel-arrow-right {
    right: -60px;
}

/* Owl Carousel container */
.booking-carousel .owl-carousel {
    width: 100%;
    margin: 0;
    overflow: visible;
}

.booking-carousel .owl-controls {
    display: none !important;
}

.booking-carousel .item {
    padding: 0.5rem;
}

.booking-option {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .booking-option::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: 0.5s;
    }

    .booking-option:hover::before {
        left: 100%;
    }

    .booking-option:hover {
        border-color: var(--primary-color);
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
    }

    .booking-option .booking-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        transition: all 0.5s ease;
        position: relative;
    }

    .booking-option:hover .booking-icon {
        transform: scale(1.15);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
        background: var(--secondary-gradient);
    }

        .booking-option:hover .booking-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid var(--primary-color);
            animation: iconPulse 1s ease-out infinite;
        }

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.booking-option .booking-icon i {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.booking-option h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.booking-option p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.booking-option .booking-badge {
    display: inline-block;
    background: var(--secondary-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Owl Carousel Custom Styles */
.booking-carousel .owl-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.booking-carousel .owl-prev,
.booking-carousel .owl-next {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.booking-carousel .owl-prev {
    left: -20px;
}

.booking-carousel .owl-next {
    right: -20px;
}

    .booking-carousel .owl-prev:hover,
    .booking-carousel .owl-next:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    }

.booking-carousel .owl-dots {
    margin-top: 1.5rem;
}

    .booking-carousel .owl-dots .owl-dot {
        width: 12px;
        height: 12px;
        background: var(--border-color) !important;
        border-radius: 50% !important;
        transition: all 0.3s ease;
    }

        .booking-carousel .owl-dots .owl-dot.active {
            background: var(--primary-gradient) !important;
            transform: scale(1.2);
        }

        .booking-carousel .owl-dots .owl-dot:hover {
            background: var(--primary-color) !important;
        }

/* Responsive carousel */
@media (max-width: 1200px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-arrow-left {
        left: 5px;
    }

    .carousel-arrow-right {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 30px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-arrow-left {
        left: 0;
    }

    .carousel-arrow-right {
        right: 0;
    }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary-custom {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .btn-primary-custom::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: var(--transition);
    }

    .btn-primary-custom:hover::before {
        left: 100%;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: white;
    }

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-secondary-custom:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: white;
        transform: translateY(-3px);
    }

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* ================================================
   CARDS
   ================================================ */
.card-custom {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

    .card-custom:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .card-custom .card-img-top {
        height: 200px;
        object-fit: cover;
        transition: var(--transition);
    }

    .card-custom:hover .card-img-top {
        transform: scale(1.1);
    }

    .card-custom .card-body {
        padding: 1.5rem;
    }

    .card-custom .card-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .card-custom .card-text {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

/* Destination Card */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

    .destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .destination-card:hover img {
        transform: scale(1.1);
    }

    .destination-card .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 1.5rem;
        color: white;
    }

    .destination-card .price-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--primary-gradient);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
    }

/* Deal Card */
.deal-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

    .deal-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .deal-card .deal-image {
        height: 200px;
        overflow: hidden;
    }

        .deal-card .deal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

    .deal-card:hover .deal-image img {
        transform: scale(1.1);
    }

    .deal-card .deal-content {
        padding: 1.5rem;
    }

    .deal-card .deal-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

        .deal-card .deal-price span {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 400;
        }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .feature-box .feature-icon {
        width: 80px;
        height: 80px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        transition: var(--transition);
    }

    .feature-box:hover .feature-icon {
        transform: scale(1.1) rotate(360deg);
    }

    .feature-box h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .feature-box p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .testimonial-card .quote-icon {
        font-size: 3rem;
        color: var(--primary-color);
        opacity: 0.3;
        margin-bottom: 1rem;
    }

    .testimonial-card .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-muted);
    }

    .testimonial-card .testimonial-author {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .testimonial-card .testimonial-role {
        font-size: 0.9rem;
        color: var(--primary-color);
    }

    .testimonial-card .rating {
        color: #fbbf24;
        margin-bottom: 1rem;
    }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-hero {
    background: var(--primary-gradient);
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

    .about-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: white;
    }

    .about-hero p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
    }

.mission-vision-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .mission-vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .mission-vision-card:hover::before {
        transform: scaleX(1);
    }

    .mission-vision-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    }

    .mission-vision-card .icon {
        width: 80px;
        height: 80px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        animation: floatIcon 3s ease-in-out infinite;
        transition: transform 0.3s ease;
    }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.mission-vision-card:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.mission-vision-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: var(--text-muted);
}

/* Service Card */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: 0.6s;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
        border-color: var(--primary-color);
    }

    .service-card .service-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
        color: white;
        transition: all 0.5s ease;
        animation: serviceIconBounce 2s ease-in-out infinite;
    }

@keyframes serviceIconBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-hero {
    background: var(--primary-gradient);
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

    .contact-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: white;
    }

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

    .contact-form .form-control {
        background: var(--bg-color);
        border: 2px solid var(--border-color);
        color: var(--text-color);
        padding: 0.75rem 1rem;
        border-radius: 10px;
        transition: var(--transition);
    }

        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            background: var(--bg-color);
            color: var(--text-color);
        }

    .contact-form label {
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

.contact-info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 0rem !important;
    transition: var(--transition);
}

    .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .contact-info-box .icon {
        width: 60px;
        height: 60px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        margin-bottom: 1rem;
    }

    .contact-info-box h5 {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .contact-info-box p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* ================================================
   FAQ PAGE
   ================================================ */
.faq-hero {
    background: var(--primary-gradient);
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

    .faq-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: white;
    }

.faq-accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    box-shadow: none;
}

    .faq-accordion .accordion-button:not(.collapsed) {
        background: var(--primary-gradient);
        color: white;
    }

    .faq-accordion .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .faq-accordion .accordion-button::after {
        filter: invert(1);
    }

.faq-accordion .accordion-body {
    background: var(--card-bg);
    color: var(--text-muted);
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

/* ================================================
   NEWS & EVENTS PAGE
   ================================================ */
.news-hero {
    background: var(--primary-gradient);
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

    .news-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: white;
    }

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .news-card .news-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

        .news-card .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

    .news-card:hover .news-image img {
        transform: scale(1.1);
    }

    .news-card .news-date {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--primary-gradient);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .news-card .news-content {
        padding: 1.5rem;
    }

    .news-card .news-title {
        font-weight: 600;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
    }

    .news-card .news-excerpt {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

/* ================================================
   AUTH PAGES (Login/Register)
   ================================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1920') center/cover;*/
    margin-top: 60px;
}

.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

    .auth-card .auth-logo {
        text-align: center;
        margin-bottom: 2rem;
    }

        .auth-card .auth-logo h2 {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

    .auth-card .form-label {
        font-weight: 500;
        color: var(--text-color);
    }

    .auth-card .form-control {
        background: var(--bg-color);
        border: 2px solid var(--border-color);
        color: var(--text-color);
        padding: 0.75rem 1rem;
        border-radius: 10px;
        transition: var(--transition);
    }

        .auth-card .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            background: var(--bg-color);
            color: var(--text-color);
        }

    .auth-card .form-check-input {
        background-color: var(--bg-color);
        border-color: var(--border-color);
    }

        .auth-card .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

    .auth-card .forgot-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

        .auth-card .forgot-link:hover {
            color: var(--secondary-color);
        }

    .auth-card .auth-btn {
        background: var(--primary-gradient);
        border: none;
        padding: 0.75rem;
        border-radius: 10px;
        font-weight: 600;
        width: 100%;
        transition: var(--transition);
    }

        .auth-card .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

    .auth-card .auth-divider {
        text-align: center;
        margin: 1.5rem 0;
        position: relative;
    }

        .auth-card .auth-divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
            background: var(--border-color);
        }

        .auth-card .auth-divider span {
            background: var(--card-bg);
            padding: 0 1rem;
            color: var(--text-muted);
            position: relative;
        }

    .auth-card .social-login {
        display: flex;
        gap: 1rem;
    }

    .auth-card .social-btn {
        flex: 1;
        padding: 0.75rem;
        border: 2px solid var(--border-color);
        border-radius: 10px;
        background: transparent;
        color: var(--text-color);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

        .auth-card .social-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

    .auth-card .auth-footer {
        text-align: center;
        margin-top: 1.5rem;
        color: var(--text-muted);
    }

        .auth-card .auth-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

/* ================================================
   TERMS & PRIVACY PAGES
   ================================================ */
.policy-hero {
    background: var(--primary-gradient);
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

    .policy-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: white;
    }

.policy-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
}

    .policy-content h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .policy-content h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policy-content p,
    .policy-content li {
        color: var(--text-muted);
        line-height: 1.8;
    }

    .policy-content ul {
        padding-left: 1.5rem;
    }

    .policy-content li {
        margin-bottom: 0.5rem;
    }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 0;
}

    .footer .footer-brand {
        font-size: 1.5rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
    }

    .footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    .footer .footer-links {
        list-style: none;
        padding: 0;
    }

        .footer .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

            .footer .footer-links a:hover {
                color: var(--accent-color);
                padding-left: 5px;
            }

    .footer .social-icons {
        display: flex;
        gap: 1rem;
    }

        .footer .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

            .footer .social-icons a:hover {
                background: var(--primary-gradient);
                transform: translateY(-5px);
            }

    .footer .newsletter-form .form-control {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 25px 0 0 25px;
    }

        .footer .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

    .footer .newsletter-form .btn {
        background: var(--primary-gradient);
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 0 25px 25px 0;
        color: white;
        font-weight: 600;
    }

    .footer .copyright {
        background: rgba(0, 0, 0, 0.3);
        padding: 1.5rem 0;
        margin-top: 3rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
    }

/* ================================================
   MODAL
   ================================================ */
.custom-modal .modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.custom-modal .modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.custom-modal .modal-title {
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-modal .modal-body {
    padding: 1.5rem;
}

.custom-modal .btn-close {
    filter: invert(1);
}

.custom-modal .offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease;
    min-width: 300px;
}

    .toast-notification.success {
        border-left: 4px solid #10b981;
    }

    .toast-notification.error {
        border-left: 4px solid #ef4444;
    }

    .toast-notification .toast-icon {
        font-size: 1.5rem;
    }

    .toast-notification.success .toast-icon {
        color: #10b981;
    }

    .toast-notification.error .toast-icon {
        color: #ef4444;
    }

    .toast-notification .toast-content h6 {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .toast-notification .toast-content p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0;
    }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-collapse {
        background: var(--card-bg);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
        margin: 3px 0;
    }

        .nav-link:hover {
            background: rgba(37, 99, 235, 0.1);
        }

    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .auth-buttons-mobile {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .theme-toggle-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-hero h1,
    .contact-hero h1,
    .faq-hero h1,
    .news-hero h1,
    .policy-hero h1 {
        font-size: 2rem;
    }

    .search-box {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem;
    }

    .footer {
        text-align: center;
    }

        .footer .social-icons {
            justify-content: center;
        }

        .footer .newsletter-form {
            flex-direction: column;
        }

            .footer .newsletter-form .form-control {
                border-radius: 25px;
                margin-bottom: 0.5rem;
            }

            .footer .newsletter-form .btn {
                border-radius: 25px;
            }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn-auth {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .destination-card {
        height: 250px;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-in {
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* Utility Classes */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.border-gradient {
    border: 2px solid transparent;
    background: var(--primary-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
