:root {
    --bg-color: #ffffff;
    --text-main: #000000;
    --text-muted: #ffffff;
    --accent-border: #ffffff;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --container-width: 1280px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
.label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(48px, 8vw, 84px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
}

.lead {
    font-size: 24px;
    max-width: 600px;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-border);
    padding: 20px 0;
}

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

.logo {
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: 0.1em;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 30px;
    font-size: 14px;
}

.btn-sm {
    border: 1px solid var(--text-main);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
}

.btn-sm:hover {
    background: var(--text-main);
    color: var(--bg-color);
}

/* Layout Parts */
.hero { 
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    margin-top: 80px;
    height: 60vh;
    overflow: hidden;
    background: #f9f9f9;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: grayscale(20%);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
    border-top: 1px solid var(--accent-border);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
}

/* Component Styles */
.section { padding: 100px 0; }

.bg-light { background-color: #f9f9f9; }

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 500;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.text-link {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 4px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.text-link:hover { opacity: 0.7; }

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.section-header { margin-bottom: 4rem; }

.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.team-card:hover img { filter: grayscale(0%); }

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

.newsletter-box {
    background: #f8f8f8;
    padding: 6rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 0;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 480px;
    margin: 2rem auto 0;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.subscribe-form input:focus { border-color: var(--text-main); }

/* --- New Sections: Flights, Hotels, Deals --- */

/* Flights */
.flight-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flight-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: white;
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    transition: var(--transition);
}

.flight-card:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.flight-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.flight-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.flight-price {
    text-align: right;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Hotels */
.hotel-content {
    padding: 24px;
}

.hotel-rating {
    color: #FFD700; /* Gold */
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.hotel-price {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    display: block;
}

/* Deals */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.deal-card {
    position: relative;
    padding: 60px 40px;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.deal-card:hover { background: #f0f0f0; }

.deal-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--text-main);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 12px;
}

/* Booking Section */
#book-now { padding-bottom: 20px; }

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--accent-border);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--text-main);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

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

/* Buttons */
.btn-black {
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border: none;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-black:hover { opacity: 0.8; }

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--accent-border);
    margin-top: 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

/* --- SKYWINGS CUSTOM ADDITIONS --- */

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind content */
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--text-main);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Navigation Support */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 768px) {
    /* Layout Adjustments */
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .deals-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .flight-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .flight-price { text-align: left; }
    .hero { padding: 60px 20px; }
    .subscribe-form { flex-direction: column; }
    .footer-grid { flex-direction: column; gap: 1.5rem; }
    .footer-links a { margin: 0 1rem; }

    /* Navigation */
    .nav-links { display: none; }
    .nav-toggle {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        border-bottom: 1px solid var(--accent-border);
        gap: 15px;
    }
    
    .nav-links.active a {
        margin-left: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    line-height: 1;
}

.close-modal:hover { color: var(--text-main); }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-main);
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--text-muted);
}

/* Testimonials Slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--accent-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: none;
    border: 1px solid var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-main);
}

.slider-btn:hover {
    background: var(--text-main);
    color: white;
}

/* Map Section */
#map-container {
    width: 100%;
    height: 500px;
    background-color: #e5e7eb;
}