/* Voyager Balloons Egypt - Modern CSS */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors - Red and Blue */
    --primary-red: #c8102e;
    --primary-blue: #607d8b;
    --dark-grey: #2c2c2c;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flights Page Container - Wider */
.flights-container {
    max-width: 1600px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Main Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    overflow: visible;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10001;
    overflow: visible;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 10001;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

/* Dropdown Menu styles moved to dropdown-menu.css */

.btn-book-now {
    background-color: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3);
}

.btn-book-now::after {
    display: none;
}

.btn-book-now:hover {
    background-color: #a00d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section / Slider */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    animation: overlayFadeIn 1s ease-in-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slider-branding {
    animation: brandingSlideUp 1.2s ease-out 0.3s both;
}

@keyframes brandingSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-title {
    animation: titleFadeIn 1s ease-out 0.5s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    animation: taglineFadeIn 1s ease-out 0.7s both;
}

@keyframes taglineFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-cta {
    animation: ctaFadeIn 1s ease-out 0.9s both;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 0 30px 30px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.slider-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.slider-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 28px;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

.hero-logo {
    max-width: 100px;
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 18px 45px;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
    background: transparent;
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}

/* Flights Grid */
.flights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .flights-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

.flight-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.flight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flight-card-image {
    width: 100%;
    height: 250px;
    background: var(--light-grey);
    overflow: hidden;
}

.flight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.flight-card:hover .flight-card-image img {
    transform: scale(1.1);
}

.flight-card-content {
    padding: 25px;
}

.flight-card h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 15px;
}

.flight-card-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.flight-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.flight-card .duration {
    color: var(--text-light);
    margin-bottom: 15px;
}

.flight-card .features {
    list-style: none;
    margin-bottom: 20px;
}

.flight-card .features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.flight-card .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background-color: #a00d24;
    transform: translateY(-2px);
}

/* Flight Card Buttons */
.flight-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.flight-card-buttons .btn-primary,
.flight-card-buttons .btn-secondary {
    flex: 1;
    width: auto;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 480px) {
    .flight-card-buttons {
        flex-direction: column;
    }
    
    .flight-card-buttons .btn-primary,
    .flight-card-buttons .btn-secondary {
        width: 100%;
    }
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #4a5d69;
    transform: translateY(-2px);
    color: var(--white);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-red);
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--light-grey);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light-grey);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-box {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-box h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-info-box ul {
    list-style: none;
}

.contact-info-box li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-box li:last-child {
    border-bottom: none;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-grey) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-section:first-child p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--primary-red);
    opacity: 0;
    transition: var(--transition);
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--primary-red);
    padding-left: 5px;
    transform: translateX(5px);
}

.contact-info li {
    margin-bottom: 15px;
    padding-left: 0;
}

.contact-info li strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-info li a:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 15px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-section {
        height: 60vh;
        min-height: 500px;
        border-radius: 0 0 20px 20px;
    }

    .hero-slider {
        border-radius: 0 0 20px 20px;
    }

    .slide img {
        border-radius: 0 0 20px 20px;
    }

    .slider-title {
        font-size: 44px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .btn-hero {
        padding: 15px 35px;
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .flights-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 60px;
    }

    .hero-section {
        height: 50vh;
        min-height: 400px;
        border-radius: 0 0 15px 15px;
    }

    .hero-slider {
        border-radius: 0 0 15px 15px;
    }

    .slide img {
        border-radius: 0 0 15px 15px;
    }

    .hero-logo {
        max-width: 80px;
        width: 80px;
        height: auto;
    }

    .slider-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Flight Details Sections */
.flight-details-section {
    margin-bottom: 60px;
}

.flight-details-header {
    text-align: center;
    margin-bottom: 50px;
}

.flight-details-header h2 {
    color: var(--primary-red);
    font-size: 36px;
    margin-bottom: 15px;
}

.flight-details-header .subtitle {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.flight-details-header p {
    font-size: 18px;
    color: var(--text-light);
}

.flight-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.flight-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.flight-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.flight-detail-card h3 {
    color: var(--primary-red);
    font-size: 22px;
    margin-bottom: 15px;
}

.flight-detail-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

.flight-description {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-dark);
}

.flight-faq {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flight-faq h3 {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 20px;
    background: var(--light-grey);
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.faq-item strong {
    display: block;
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.comfort-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit-highlight {
    text-align: center;
    padding: 30px 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.flight-features-list {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.flight-features-list h3 {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.features-grid li {
    padding: 15px 20px;
    background: var(--light-grey);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 16px;
    transition: var(--transition);
}

.features-grid li:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.service-timeline {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-timeline h3 {
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.timeline-item {
    padding: 30px;
    background: var(--light-grey);
    border-radius: 15px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-red);
}

.timeline-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.timeline-item h4 {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 15px;
}

.timeline-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.vista-basket-info {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(96, 125, 139, 0.1));
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-red);
}

.vista-basket-info h3 {
    color: var(--primary-red);
    font-size: 26px;
    margin-bottom: 20px;
}

.vista-basket-info p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

/* Flight Program Timeline */
.flight-program-timeline {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
    padding: 40px 0;
}

.flight-program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
    transform: translateX(-50%);
    z-index: 0;
}

.program-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.step-spacer {
    /* Empty spacer for grid alignment */
    display: block;
}

.program-step:nth-child(odd) .step-content {
    grid-column: 1;
    text-align: right;
}

.program-step:nth-child(odd) .step-number {
    grid-column: 2;
}

.program-step:nth-child(odd) .step-spacer {
    grid-column: 3;
}

.program-step:nth-child(even) .step-spacer {
    grid-column: 1;
}

.program-step:nth-child(even) .step-number {
    grid-column: 2;
}

.program-step:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
    transition: var(--transition);
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.step-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.step-content {
    background: var(--white);
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    max-width: 100%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.step-content h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Responsive Flight Program */
@media (max-width: 768px) {
    .flight-program-timeline {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .flight-program-timeline::before {
        left: 35px;
        width: 3px;
    }
    
    .program-step {
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .step-spacer {
        display: none;
    }
    
    .program-step:nth-child(odd) .step-content,
    .program-step:nth-child(even) .step-content {
        grid-column: 2;
        text-align: left;
    }
    
    .program-step:nth-child(odd) .step-number,
    .program-step:nth-child(even) .step-number {
        grid-column: 1;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        color: var(--white);
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        border: 4px solid var(--white);
        transition: var(--transition);
    }
    
    .step-num {
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        color: var(--white);
        display: block;
    }
    
    .step-content {
        padding: 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-width: 100%;
    }
    
    .step-content h3 {
        font-size: 20px;
        color: var(--primary-red);
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .step-content p {
        font-size: 14px;
        color: var(--text-dark);
        line-height: 1.8;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .flight-program-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        border: 3px solid var(--white);
    }
    
    .step-num {
        font-size: 24px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

/* Responsive Flight Details */
@media (max-width: 768px) {
    .flight-details-header h2 {
        font-size: 28px;
    }

    .flight-details-grid {
        grid-template-columns: 1fr;
    }

    .comfort-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-highlight {
        width: 100%;
        max-width: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.95), rgba(96, 125, 139, 0.95)), url('../img/voyager_egypt-slider.png') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.9), rgba(96, 125, 139, 0.9));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-family: Georgia, serif;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    margin-bottom: 80px;
}

.about-section-alt {
    background: var(--light-grey);
    padding: 60px 0;
    margin: 80px -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
}

@media (min-width: 768px) {
    .about-section-alt {
        margin: 80px 0;
        padding: 60px 40px;
        border-radius: 20px;
    }
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-content-text {
    padding: 0 20px;
}

.about-section-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 10px;
    color: var(--white);
}

.badge-year {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content-text h2 {
    font-size: 38px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-stats-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .about-stats-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(96, 125, 139, 0.1));
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-featured-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-featured-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
}

.about-featured-box h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-featured-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-featured-box p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-feature-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 5px solid var(--primary-blue);
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.about-feature-card h3 {
    font-size: 26px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.about-feature-card p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: left;
}

.about-highlight-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(96, 125, 139, 0.05));
    border-radius: 20px;
    border-left: 6px solid var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-highlight-box h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-highlight-box p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.about-highlight-quote {
    font-size: 22px !important;
    font-style: italic !important;
    font-weight: 600 !important;
    color: var(--primary-blue) !important;
    margin-top: 30px !important;
    padding: 30px !important;
    background: var(--white) !important;
    border-radius: 15px !important;
    border-left: 4px solid var(--primary-red) !important;
    text-align: center !important;
    position: relative;
}

.about-highlight-quote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.about-cta-section {
    margin-top: 80px;
    margin-bottom: 60px;
}

.about-cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(200, 16, 46, 0.3);
    text-align: center;
    color: var(--white);
}

.about-cta-box h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-primary,
.about-cta-buttons .btn-secondary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.about-cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.about-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.about-cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-content-text h2,
    .about-featured-box h2,
    .about-highlight-box h2,
    .about-cta-box h2 {
        font-size: 28px;
    }

    .about-section-alt {
        margin: 60px -20px;
        padding: 40px 20px;
        border-radius: 0;
    }

    .about-intro {
        padding: 30px 20px;
    }

    .about-lead {
        font-size: 18px;
    }

    .about-intro p,
    .about-content-text p,
    .about-featured-box p,
    .about-highlight-box p {
        font-size: 16px;
    }

    .about-stats-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-featured-box,
    .about-highlight-box,
    .about-cta-box {
        padding: 30px 20px;
    }

    .about-feature-card {
        padding: 30px 25px;
    }

    .about-feature-card h3 {
        font-size: 22px;
    }

    .about-highlight-quote {
        font-size: 18px !important;
        padding: 20px !important;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-buttons .btn-primary,
    .about-cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-content-text h2,
    .about-featured-box h2,
    .about-highlight-box h2,
    .about-cta-box h2 {
        font-size: 24px;
    }

    .badge-year {
        font-size: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .feature-icon {
        font-size: 40px;
    }
}

/* Flight Detail Page Styles */
.flight-detail-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.flight-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.85), rgba(96, 125, 139, 0.85));
    z-index: 1;
}

.flight-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.flight-detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.flight-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.flight-detail-breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.flight-detail-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.flight-detail-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.flight-detail-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.flight-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .flight-detail-wrapper {
        grid-template-columns: 1fr 350px;
    }
}

.flight-detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flight-detail-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.flight-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.flight-detail-description {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flight-detail-description h2 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.flight-detail-description p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.flight-detail-features {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flight-detail-features h2 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 30px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(96, 125, 139, 0.05));
    border-left-color: var(--primary-red);
    transform: translateX(5px);
}

.feature-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.flight-detail-highlights {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flight-detail-highlights h2 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    text-align: center;
    padding: 30px 25px;
    background: var(--light-grey);
    border-radius: 15px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-red);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Sidebar Styles */
.flight-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flight-booking-card {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.3);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.booking-card-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
}

.booking-card-header h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.booking-card-content {
    padding: 30px 25px;
}

.booking-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.booking-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.booking-info svg {
    color: rgba(255, 255, 255, 0.9);
}

.btn-booking-primary,
.btn-booking-secondary {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.btn-booking-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.btn-booking-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-booking-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-booking-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.flight-quick-info {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flight-quick-info h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.quick-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 15px;
}

.quick-info-list li span {
    color: var(--primary-blue);
    font-weight: 600;
    text-align: right;
}

/* Related Flights */
.related-flights {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-flights h2 {
    font-size: 36px;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.related-flights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .related-flights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .related-flights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-flight-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.related-flight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-flight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-flight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-flight-card:hover .related-flight-image img {
    transform: scale(1.1);
}

.related-flight-content {
    padding: 25px;
}

.related-flight-content h3 {
    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.related-flight-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.btn-related-flight {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.btn-related-flight:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive Flight Detail */
@media (max-width: 768px) {
    .flight-detail-hero {
        padding: 100px 0 60px;
    }

    .flight-detail-hero h1 {
        font-size: 36px;
    }

    .flight-detail-subtitle {
        font-size: 16px;
    }

    .flight-detail-description,
    .flight-detail-features,
    .flight-detail-highlights {
        padding: 30px 20px;
    }

    .flight-detail-description h2,
    .flight-detail-features h2,
    .flight-detail-highlights h2 {
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .flight-booking-card {
        position: static;
    }

    .related-flights h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .flight-detail-hero h1 {
        font-size: 28px;
    }

    .flight-detail-breadcrumb {
        font-size: 12px;
    }

    .flight-detail-description,
    .flight-detail-features,
    .flight-detail-highlights {
        padding: 25px 15px;
    }

    .flight-detail-description h2,
    .flight-detail-features h2,
    .flight-detail-highlights h2 {
        font-size: 22px;
    }

    .price-amount {
        font-size: 36px;
    }

    .highlight-icon {
        font-size: 40px;
    }

    .highlight-item h3 {
        font-size: 20px;
    }
}

