@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-primary: #03030c;
    --bg-secondary: #08081a;
    --bg-darker: #010105;
    
    --accent-purple: #8a2be2;
    --accent-blue: #00d2ff;
    --accent-pink: #ff2a85;
    --accent-gold: #ffbe0b;
    
    --text-primary: #f5f5fa;
    --text-secondary: #b5b5c9;
    --text-muted: #72728f;
    
    --glass-bg: rgba(10, 10, 26, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --shadow-glow-blue: 0 0 20px rgba(0, 210, 255, 0.25);
    --shadow-glow-purple: 0 0 20px rgba(138, 43, 226, 0.25);
}

/* --- BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    background-image: 
        radial-gradient(at 10% 20%, rgba(138, 43, 226, 0.12) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(0, 210, 255, 0.12) 0px, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

/* --- GLASS CONTAINER --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    background: rgba(3, 3, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background: rgba(3, 3, 12, 0.9);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: var(--accent-purple);
    -webkit-text-fill-color: initial;
    background: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow-purple);
    transition: var(--transition-smooth);
    border: none;
    color: white !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-quick);
}

/* --- FOOTER --- */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: auto;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: var(--transition-quick);
}

.footer-socials a:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    box-shadow: var(--shadow-glow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-highlight);
    transform: translateY(-2px);
}

/* --- GENERAL SECTIONS --- */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 60%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
}

/* --- SCROLL ANIMATIONS (INTERSECTION OBSERVER) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HOME PAGE STYLE (`index.html`) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-primary) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 70%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 210, 255, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 210, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
    color: var(--accent-blue);
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Testimonials Carousel / Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- DESTINATIONS PAGE STYLE (`destinations.html`) --- */
.dest-hero {
    padding-top: 150px;
    padding-bottom: 40px;
    text-align: center;
}

.filter-bar {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    gap: 16px;
    padding: 16px;
}

.search-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0 16px 0 45px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.search-input:focus {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
    background: rgba(255, 255, 255, 0.06);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.filter-btns {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 0 20px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--glass-highlight);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    border: none;
    box-shadow: var(--shadow-glow-purple);
}

/* Destinations Cards Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.dest-card {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--glass-highlight);
}

.dest-img-container {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(3, 3, 12, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dest-info {
    padding: 24px;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.dest-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 54px;
}

.dest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dest-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* No results state */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    display: none;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* --- BOOKING PAGE STYLE (`booking.html`) --- */
.booking-section {
    padding-top: 150px;
    padding-bottom: 80px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 3.2fr 2fr;
    gap: 40px;
    align-items: start;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
    background: rgba(255, 255, 255, 0.06);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2372728f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

select.form-control option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.form-check input {
    cursor: pointer;
}

/* Booking Summary Card */
.summary-card {
    padding: 30px;
    position: sticky;
    top: 120px;
}

.summary-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.summary-item .label {
    color: var(--text-secondary);
}

.summary-item .value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-total .total-price {
    font-size: 1.8rem;
    color: var(--accent-blue);
    text-shadow: var(--shadow-glow-blue);
}

/* Success Modal & Boarding Pass */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 12, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.boarding-pass {
    max-width: 650px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .boarding-pass {
    transform: scale(1);
}

.pass-header {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pass-header h3 {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.pass-header .pass-logo {
    font-size: 1.1rem;
}

.pass-body {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.pass-field h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.pass-field p {
    font-size: 1.05rem;
    font-weight: 600;
}

.pass-field.span-2 {
    grid-column: span 2;
}

.pass-barcode {
    grid-column: 1 / -1;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barcode-lines {
    height: 50px;
    width: 250px;
    background: linear-gradient(90deg, 
        #fff 0%, #fff 2%, transparent 2%, transparent 4%,
        #fff 4%, #fff 8%, transparent 8%, transparent 10%,
        #fff 10%, #fff 11%, transparent 11%, transparent 15%,
        #fff 15%, #fff 20%, transparent 20%, transparent 21%,
        #fff 21%, #fff 22%, transparent 22%, transparent 26%,
        #fff 26%, #fff 30%, transparent 30%, transparent 35%,
        #fff 35%, #fff 36%, transparent 36%, transparent 40%,
        #fff 40%, #fff 44%, transparent 44%, transparent 46%,
        #fff 46%, #fff 47%, transparent 47%, transparent 50%,
        #fff 50%, #fff 52%, transparent 52%, transparent 55%,
        #fff 55%, #fff 58%, transparent 58%, transparent 60%,
        #fff 60%, #fff 65%, transparent 65%, transparent 70%,
        #fff 70%, #fff 71%, transparent 71%, transparent 75%,
        #fff 75%, #fff 80%, transparent 80%, transparent 82%,
        #fff 82%, #fff 84%, transparent 84%, transparent 88%,
        #fff 88%, #fff 92%, transparent 92%, transparent 95%,
        #fff 95%, #fff 100%
    );
    opacity: 0.7;
}

.pass-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
}

/* --- ABOUT PAGE STYLE (`about.html`) --- */
.about-hero {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 4px solid var(--accent-blue);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: var(--shadow-glow-blue);
}

.timeline-item:nth-child(even) .timeline-badge {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow-purple);
}

.timeline-content {
    width: 90%;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.timeline-item:nth-child(even) .timeline-year {
    color: var(--accent-purple);
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-glow-purple);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .features-grid, .dest-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-layout, .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(3, 3, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid, .dest-grid, .team-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-right: 0;
        padding-left: 40px;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 40px;
    }
    
    .timeline-badge {
        left: 20px;
    }
    
    .timeline-content {
        margin-right: 0;
        width: 100%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .filter-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pass-body {
        grid-template-columns: 1fr 1fr;
    }
    
    .pass-barcode {
        flex-direction: column;
        gap: 16px;
    }
    
    .barcode-lines {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .pass-body {
        grid-template-columns: 1fr;
    }
}
