/* assets/css/styles.css - COMPLETE NAVBAR STYLING */

/* ===== VARIABLES with Brand Colors ===== */
:root {
    /* Brand Colors */
    --teal: #007C91;
    --navy: #1C1F33;
    --emerald: #10b981;
    --sky-blue: #0ea5e9;
    --purple: #8b5cf6;
    
    /* Neutral Colors */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --black: #000000;
}

/* ===== NAVBAR LOGO STYLING ===== */
.logo-container {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-gradient {
    position: relative;
    padding: 8px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 124, 145, 0.3);
    overflow: hidden;
}

.logo-gradient::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.7s ease;
}

.logo-gradient:hover::before {
    left: 100%;
}

.logo-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 145, 0.4);
}

#navbar-logo {
    height: 40px;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white on gradient */
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-gradient:hover #navbar-logo {
    transform: scale(1.05);
    filter: brightness(1.2) invert(1);
}

/* Remove old brand text */
.brand-text {
    display: none !important;
}

/* ===== NAVBAR STYLING ===== */
#main-navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--gray-800) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 2px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--teal) !important;
    background-color: rgba(0, 124, 145, 0.08);
}

.navbar-nav .nav-link.active {
    color: var(--teal) !important;
    font-weight: 600;
}

/* Language Selector with new colors */
.language-dropdown {
    border-right: 1px solid var(--gray-200);
    padding-right: 1rem;
}

.language-select {
    width: auto;
    min-width: 120px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.language-select:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Login Button with new colors */
.custom-login-btn {
    background: linear-gradient(135deg, var(--teal), var(--navy)) !important;
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-login-btn::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.7s ease;
}

.custom-login-btn:hover::before {
    left: 100%;
}

.custom-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 145, 0.4);
}

/* Dropdown menu with new colors */
.navbar-nav .dropdown-menu {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-top: 3px solid var(--teal);
}

.navbar-nav .dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--gray-800);
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(0, 124, 145, 0.1), rgba(28, 31, 51, 0.05));
    color: var(--teal);
    padding-left: 2rem;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .logo-gradient {
        padding: 6px 12px;
    }
    
    #navbar-logo {
        height: 35px;
    }
    
    .language-dropdown {
        border-right: none;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* Update all teal references to use new color */
.text-teal {
    color: var(--teal) !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.btn-teal {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background-color: #006074; /* Darker teal */
    border-color: #006074;
    color: var(--white);
}

.btn-outline-teal {
    color: var(--teal);
    border-color: var(--teal);
}

.btn-outline-teal:hover {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-color: transparent;
    color: var(--white);
}

/* Update footer logo */
.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Makes footer logo white */
}
/* Language Selector */
.language-dropdown {
    border-right: 1px solid var(--gray-200);
    padding-right: 1rem;
}

.language-select {
    width: auto;
    min-width: 120px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.language-select:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Login Button */
.custom-login-btn {
    background: linear-gradient(135deg, var(--teal), var(--emerald)) !important;
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 128, 128, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* User Dropdown */
.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* ===== FOOTER STYLING ===== */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--teal);
}

.newsletter {
    margin-top: 2rem;
}

.newsletter-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-primary {
    background: var(--teal);
    border: none;
    border-radius: 6px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--teal);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.payment-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: var(--white);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--emerald);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.98px) {
    #main-navbar .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .language-dropdown {
        border-right: none;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
    }
}

@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-teal {
    color: var(--teal) !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.btn-teal {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background-color: #006666;
    border-color: #006666;
    color: var(--white);
}

.btn-outline-teal {
    color: var(--teal);
    border-color: var(--teal);
}

.btn-outline-teal:hover {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ===== MAIN CONTENT SPACING ===== */
main {
    min-height: calc(100vh - 400px); /* Adjust based on header/footer height */
}

/* ===== CARD STYLES ===== */
.card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ===== FORM STYLES ===== */
.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.25rem rgba(0, 128, 128, 0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Add these styles to your existing styles.css */

/* ===== HERO CAROUSEL ===== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--teal);
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--teal) !important;
}

/* Stats in Carousel */
.stats-row h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* App Mockup */
.phone-mockup {
    max-width: 300px;
}

.phone-screen {
    max-width: 280px;
    margin: 0 auto;
}

.app-header {
    background: linear-gradient(135deg, var(--teal), var(--emerald));
}

.flight-card, .hotel-card {
    transition: transform 0.3s ease;
}

.flight-card:hover, .hotel-card:hover {
    transform: translateX(5px);
}

/* Download Buttons */
.download-buttons .btn {
    min-width: 200px;
    transition: all 0.3s ease;
}

.download-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Service Icons */
.service-icon-wrapper {
    position: relative;
    display: inline-block;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    top: -10px;
    left: -10px;
}

/* App Features Section */
.app-features .bg-white {
    background: white !important;
}

/* Floating Badge */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Testimonial Avatars */
.bg-teal[class*="rounded-circle"] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-swiper {
        height: 80vh;
        min-height: 600px;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
    }
    
    .display-3 {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 1.75rem !important;
    }
    
    .stats-row {
        gap: 2rem !important;
    }
    
    .stats-row h3 {
        font-size: 2rem !important;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .download-buttons .btn {
        min-width: 100%;
    }
}
/* Shop Styles */
.shop-hero {
    background: linear-gradient(135deg, var(--teal), var(--navy)) !important;
}

.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-image {
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tags .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.product-actions {
    transition: opacity 0.3s ease;
}

.product-actions .btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Summary */
.cart-summary {
    z-index: 1020;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cart-summary.visible {
    transform: translateY(0);
}

/* Shop Features */
.feature-icon {
    width: 80px;
    height: 80px;
}

/* Rating Stars */
.text-warning {
    color: #ffc107 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .cart-summary .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Enhanced Button Effects */
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.7s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 145, 0.4);
}

/* Back to top button */
.back-to-top {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #006074, #15182e);
    transform: translateY(-3px);
}

/* App Mockup Flight Cards */
.flight-card {
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.flight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.flight-card .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.flight-card .progress {
    background-color: #e9ecef;
}

.flight-card .progress-bar {
    transition: width 1s ease;
}

.update-time {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Make flight icons match teal color */
.fa-plane-arrival.text-teal,
.fa-plane-departure.text-teal {
    color: var(--teal) !important;
}

/* Responsive adjustments for app mockup */
@media (max-width: 768px) {
    .phone-mockup {
        max-width: 280px;
    }
    
    .flight-card h6 {
        font-size: 0.9rem;
    }
    
    .flight-card small {
        font-size: 0.75rem;
    }
}

/* Flight Status Slide Styles */
.flight-status-card {
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flight-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.flight-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    margin: 20px 0;
}

.flight-duration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 124, 145, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
}

.feature-card {
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Backdrop blur effect */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flight-status-card {
        margin-bottom: 1.5rem;
    }
    
    .display-3 {
        font-size: 2rem !important;
    }
    
    .fs-4 {
        font-size: 1.1rem !important;
    }
}