/* ===== BASE STYLES ===== */
:root {
    --primary: #0099ff;
    --primary-dark: #0077cc;
    --white: #ffffff;
    --black: #222222;
    --gray: #f5f5f5;
    --dark-gray: #777777;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.auth-buttons .btn-login {
    margin-right: 15px;
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-login {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-register {
    background: var(--primary);
    color: var(--white);
}

.btn-register:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== BOOKING FORM ===== */
.booking-form {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-primary i {
    margin-right: 8px;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--dark-gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--gray);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.testimonial h4 {
    margin-bottom: 5px;
}

.rating {
    color: #ffc107;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, 
.footer-col li {
    margin-bottom: 10px;
    color: #aaaaaa;
}

.footer-col a {
    color: #aaaaaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #777777;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: var(--gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.cta h2 {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

/* ===== BOOKING PAGE STYLES ===== */
.booking-hero {
    background: linear-gradient(rgba(0, 153, 255, 0.8), rgba(0, 153, 255, 0.8)), 
                url('../assets/images/flight-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    margin-top: 70px;
}

.booking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 40px 0;
    background: var(--gray);
}

/* Flight Results */
.flight-results {
    padding: 60px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
}

/* Flight List */
.flight-list {
    margin-bottom: 40px;
}

.flight-card {
    display: grid;
    grid-template-columns: 120px 1fr 180px;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.flight-card.business {
    border: 2px solid var(--primary);
}

.flight-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.airline-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.airline-info img {
    margin-bottom: 10px;
    max-height: 40px;
}

.flight-details {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.departure, .arrival {
    display: flex;
    flex-direction: column;
}

.departure time, .arrival time {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.flight-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

.flight-line i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--primary);
    padding: 5px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.price .amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.price small {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.btn-pagination {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-pagination.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-pagination:hover:not(.active) {
    background: var(--gray);
}

/* Why Book Section */
.why-book {
    padding: 60px 0;
    background: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .flight-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .airline-info {
        margin-bottom: 20px;
    }
    
    .price-section {
        align-items: center;
        margin-top: 20px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(rgba(0, 153, 255, 0.8), rgba(0, 153, 255, 0.8)), 
                url('../assets/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info */
.contact-info {
    padding: 20px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .info-card i {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* ===== REFUND PAGE STYLES ===== */
.refund-hero {
    background: linear-gradient(rgba(0, 153, 255, 0.8), rgba(0, 153, 255, 0.8)), 
                url('../assets/images/refund-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    margin-top: 70px;
}

.refund-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Refund Form Section */
.refund-form-section {
    padding: 60px 0;
}

.refund-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-column {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-column h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

/* Policy Column */
.policy-column h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.policy-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.policy-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-card h3 i {
    font-size: 1.2rem;
}

.policy-list {
    list-style-type: none;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.policy-list li:before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* FAQ Section */
.refund-faq {
    background: var(--gray);
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .refund-grid {
        grid-template-columns: 1fr;
    }
    
    .form-column,
    .policy-card {
        padding: 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -20px;
    }
}

/* ===== AUTHENTICATION PAGES ===== */
.auth-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 150px);
    padding: 60px 0;
}

.auth-card {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.auth-card h1 {
    margin-bottom: 10px;
    color: var(--primary);
}

.auth-card p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

/* Form Styles */
.auth-card .form-group {
    position: relative;
    margin-bottom: 20px;
    text-align: left;
}

.auth-card .input-icon {
    position: absolute;
    left: 15px;
    top: 40px;
    color: var(--dark-gray);
}

.auth-card input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.show-password {
    position: absolute;
    right: 15px;
    top: 40px;
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}

.btn-block {
    width: 100%;
    display: block;
    padding: 12px;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.auth-divider::before {
    margin-right: 15px;
}

.auth-divider::after {
    margin-left: 15px;
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-social:hover {
    background: var(--gray);
}

.btn-social.google img {
    width: 20px;
}

.btn-social.facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.btn-social.facebook:hover {
    background: #166fe5;
}

.auth-footer {
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

/* ===== REGISTRATION SPECIFIC STYLES ===== */
.password-hint {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.8rem;
    display: none;
}

.password-hint p {
    margin-bottom: 5px;
    font-weight: 500;
}

.password-hint ul {
    list-style: none;
    padding-left: 5px;
}

.password-hint li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 3px;
    color: #6c757d;
}

.password-hint li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.password-hint li.valid:before {
    content: "✓";
    color: #28a745;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

/* Show password hint when password field is focused */
#regPassword:focus ~ .password-hint {
    display: block;
}


/* ===== DASHBOARD STYLES ===== */
.dashboard-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.dashboard-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.dashboard-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.dashboard-nav a.active {
    color: var(--primary);
}

.dashboard-nav a:hover:not(.active) {
    color: var(--primary-dark);
}

.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.user-btn img {
    border-radius: 50%;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 50px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

.dashboard-main {
    margin-top: 80px;
    padding: 40px 0;
}

/* Welcome Banner */
.welcome-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 10px;
}

.welcome-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* Dashboard Sections */
.dashboard-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Booking Cards */
.booking-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.booking-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.airline-info span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.booking-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-status.confirmed {
    background: #e6f7ee;
    color: #28a745;
}

.booking-status.pending {
    background: #fff3cd;
    color: #856404;
}

.booking-details {
    padding: 20px;
}

.flight-segment {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.departure, .arrival {
    display: flex;
    flex-direction: column;
}

.departure time, .arrival time {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.duration {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flight-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

.flight-line i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--primary);
    padding: 5px;
}

.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.booking-price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.booking-price small {
    display: block;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    padding: 8px 15px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* Activity List */
.activity-list {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-content p {
    margin-bottom: 5px;
}

.activity-content small {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .dashboard-nav ul {
        display: none;
    }
}

/* Map Section Styles */
.map-section {
    padding: 60px 0;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    max-width: 500px;
}

.address-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.address-card h3 {
    margin: 0 0 5px 0;
    color: var(--primary);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--primary);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-map:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.btn-map.call {
    background: #28a745;
}

.btn-map.call:hover {
    background: #218838;
}
