:root {
    --primary: #002b5b;
    --accent: #ffcc00;
    --dark: #1a1a1a;
    --gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
    scroll-behavior: smooth;
}

 body { 
    /* background: var(--gray);  */
    color: var(--dark); 
    overflow-x: hidden;  
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Improvements */
.navbar { 
    position: fixed; 
    width: 100%; 
    padding: 20px 0; 
    background: rgba(0,43,91,0.9); 
    z-index: 100; 
    transition: var(--transition); 
}


.navbar.sticky {
    background: var(--primary);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    color: var(--white); 
    text-decoration: none; 
    font-size: 1.5rem; 
    font-weight: 700; 
}

.logo span {
     color: var(--accent); 
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
}

.nav-links li a { 
    color: var(--white); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600;
    transition: var(--transition);

}

.nav-links li a:hover { color: var(--accent); }

/* Hero Session */
/* https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&q=80&w=1500 */
.hero { 
    height: 80vh; 
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.5)), url('https://lh3.googleusercontent.com/u/0/d/15gu2c0sYFC8js8RAjapgujKKN2VOvbhe') center/cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Adds a "pop" to the letters */
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
    color: white;
}

.hero span { color: var(--accent); }


.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Booking Card */
.booking-card { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 10px; 
    margin-top: -60px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

.form-grid {
    /* display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px; */

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.input-group select{
    padding: 10px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover { background: #1a2a44; }



.btn-secondary { 
    padding: 10px; 
    border: 2px solid var(--primary); 
    background: transparent; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: var(--transition);}

/* Payment Summary Box */
.payment-summary {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px dashed var(--primary);
}
.payment-summary p { 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.9rem; 
}

.payment-summary h4 { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 10px; 
    color: var(--primary); }

/* Ticket Styling */
.ticket-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.ticket-header { 
    background: var(--primary); 
    color: var(--accent); 
    padding: 20px; 
    text-align: center; }

.ticket-body { 
    padding: 30px; 
    line-height: 2; 
    border-bottom: 2px dashed #ccc; }

.ticket-body strong { color: var(--primary); }

.btn-print { background: var(--accent); 
    border: none; 
    padding: 10px 20px; 
    cursor: pointer; 
    font-weight: bold; 
    margin: 10px; }

.btn-close { 
    background: #eee;
     border: none; 
     padding: 10px 20px; 
     cursor: pointer; 
     margin: 10px; }

/* Hide everything except the ticket when printing */
@media print {
    body * { visibility: hidden; }
    #ticket-modal, #ticket-modal * { visibility: visible; }
    #ticket-modal { position: absolute; left: 0; top: 0; width: 100%; }
    .btn-print, .btn-close { display: none; }
}
    
/* Fleet Section (Images) */
.section-title {
    text-align: center;
    margin: 50px 0;
    font-size: 2.5rem;
}

.fleet { padding: 80px 0; }

.fleet-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px; 
     /* margin-top: 40px; */
    }
.fleet-card { 
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: var(--transition);
    overflow: hidden; 
    }

.fleet-card img {
     width: 100%; 
     height: 250px; 
     object-fit: cover; 
     transition: 0.3s; }

.fleet-card:hover img { transform: scale(1.05); }

.fleet-info { padding: 20px; }


/* About Section */
.about { 
    padding: 80px 0; 
    background: var(--gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 15px 15px 0 var(--accent); }
.about-features { list-style: none; margin-top: 20px; }
.about-features li { margin-bottom: 10px; font-weight: 600; color: var(--primary); }
.about-features i { color: var(--accent); margin-right: 10px; }

/* Team Section */
.team { 
    padding: 80px 0; 
    background: var(--gray); 
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-card { background: #fff; padding: 30px; border-radius: 15px; text-align: center; transition: 0.3s; border-bottom: 4px solid transparent; }
.team-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.team-img-container { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid var(--accent); }
/* .team-img-container img { width: 100%; height: 100%; object-fit: cover; } */
/* --- New Styles for Initials --- */

.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem; /* Large letters */
    font-weight: 700;
    color: #ffffff; /* White letters */
    border-radius: 50%; /* Keeps it circular */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Specific background colors for each member (Professional palette) */
.initials-1 {
    background-color: #0a192f; /* Your deep navy */
    border: 3px solid #d4af37; /* Your gold accent */
}

.initials-2 {
    background-color: #d4af37; /* Your gold accent */
    color: #0a192f; /* Deep navy letters for contrast */
}

.initials-3 {
    background-color: #1c3d6e; /* A lighter navy blue */
    border: 3px solid #d4af37; /* Your gold accent */
}

/* Update this existing rule to ensure centering works */
.team-img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    /* Removed the old border rule from here */
    display: flex; /* Helps center the initials <span> */
    align-items: center;
    justify-content: center;
}
.team-card h3 { color: var(--primary); margin-bottom: 5px; }
.role { color: #777; font-size: 0.9rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.team-social a { color: var(--primary); margin: 0 10px; font-size: 1.2rem; transition: 0.3s; }
.team-social a:hover { color: var(--accent); }



/* Modal & Seat Map */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.8); 
    z-index: 1000; 
    align-items: center; 
    justify-content: center; 
}

.modal-content { 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    width: 90%; 
    max-width: 400px; 
    text-align: center; 
}

.seat-map { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin: 20px 0; 
}

.seat { 
    width: 40px; 
    height: 40px; 
    background: #ddd; 
    border-radius: 5px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.8rem; 
}

.seat.selected { 
    background: var(--accent); 
    color: black;
 }

.seat.taken { 
    background: #ff4444; 
    color: white; 
    cursor: not-allowed; 
}

/* Testimonials */
.testimonials { 
    background: var(--primary); 
    color: white; 
    padding: 80px 0;
 }

.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
}

.test-card { 
    background: rgba(255,255,255,0.1); 
    padding: 30px; 
    border-radius: 10px; 
    border-left: 5px solid var(--accent); 
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}


/* Mobile Menu Toggle Logic */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show on Mobile */
    }
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a192f;
        padding: 20px;
    }

    .nav-links.active {
        display: flex; /* Shown when JS toggles .active */
    }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: 2; }
    .about-text { order: 1; }
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
}