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

/* ==========================================================================
   1. BRAND DESIGN SYSTEM & CORE VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-obsidian: #03070f;       /* Pure cinematic dark base */
    --color-charcoal: #0b111a;       /* Card/section dark background */
    --color-navy-dark: #121b28;      /* Structural highlight borders & backgrounds */
    --color-gold: #c5a880;           /* Signature Champagne Gold */
    --color-gold-glow: rgba(197, 168, 128, 0.45);
    --color-gold-dim: rgba(197, 168, 128, 0.15);
    --color-ivory: #f5f2eb;          /* Premium Warm White text */
    --color-platinum: #b0b6c0;       /* Muted Body Copy */
    --color-glass: rgba(11, 17, 26, 0.65);
    --color-glass-border: rgba(197, 168, 128, 0.15);
    
    /* Typography Scales */
    --font-luxury: 'Cinzel', serif;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacings */
    --section-padding: 140px 0;
    --border-radius-premium: 16px;
}

/* ==========================================================================
   2. GLOBAL RESET & CORE SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: initial; /* Handled dynamically by Lenis */
    overflow-x: hidden;
    background-color: var(--color-obsidian);
    color: var(--color-ivory);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.7;
}

/* Lenis Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-obsidian);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-glow);
    border-radius: 10px;
    border: 1px solid var(--color-obsidian);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Selection Highlight */
::selection {
    background: var(--color-gold-glow);
    color: var(--color-ivory);
}

/* Custom Premium Cursor Glow */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 10px var(--color-gold-glow);
}
.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold-glow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

/* Typographic Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-luxury);
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-ivory);
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-platinum);
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* Grid helper */
.grid {
    display: grid;
    gap: 30px;
}

/* ==========================================================================
   3. HEADER & TRANSPARENT GLASSMORPHISM NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(3, 7, 15, 0.85);
    backdrop-filter: blur(25px) saturate(140%);
    border-bottom: 1px solid rgba(197, 168, 128, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-luxury);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 3px;
    color: var(--color-ivory);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 0.7rem;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-gold);
}

/* Menu Items */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-platinum);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

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

.nav-link.active {
    color: var(--color-gold);
}

/* Call-to-action */
.nav-cta {
    position: relative;
}

/* Hamburguer menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-ivory);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   4. BUTTONS & PREMIUM INTERACTIVE UI ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 15px 35px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b39369 100%);
    color: var(--color-obsidian);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
    border: 1px solid var(--color-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-gold) 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-obsidian);
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--color-ivory);
    border: 1px solid rgba(197, 168, 128, 0.4);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--color-obsidian);
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.25);
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-gold-link {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    position: relative;
}

.btn-gold-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.btn-gold-link:hover {
    color: var(--color-ivory);
}

.btn-gold-link:hover::after {
    width: 100%;
    background: var(--color-ivory);
}

.btn-gold-link i {
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.btn-gold-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   5. PREMIUM GLASSMORPHISM SYSTEM (GLASS CARDS)
   ========================================================================== */
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-premium);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 168, 128, 0.1);
    transform: translateY(-5px);
}

/* ==========================================================================
   6. SECTION HEADERS & LUXURY LABELS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.luxury-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.luxury-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    margin: 10px auto 0 auto;
}

.luxury-label.left-align::after {
    margin: 10px 0 0 0;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
}

.section-title span {
    color: var(--color-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-platinum);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   7. TRUST BAR
   ========================================================================== */
.trust-bar {
    background: var(--color-charcoal);
    padding: 35px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.08);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    position: relative;
    z-index: 10;
}

.trust-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.trust-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-ivory);
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
footer {
    background: #03060a;
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    padding: 90px 0 30px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    margin-bottom: 70px;
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-about p {
    margin-bottom: 30px;
    padding-right: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-navy-dark);
    border: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-platinum);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-gold);
    color: var(--color-obsidian);
    border-color: var(--color-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.footer-title {
    font-family: var(--font-luxury);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background: var(--color-gold);
}

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

.footer-links a {
    color: var(--color-platinum);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-platinum);
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact-list a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(176, 182, 192, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   9. MODERN PREMIUM INTERACTIVE FORMS
   ========================================================================== */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    background: rgba(18, 27, 40, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 4px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-ivory);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-gold);
    background: rgba(18, 27, 40, 0.7);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

.form-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-platinum);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    background: var(--color-charcoal);
    padding: 2px 8px;
    color: var(--color-gold);
    letter-spacing: 1px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

textarea.form-control ~ .form-label {
    top: 25px;
}

textarea.form-control:focus ~ .form-label,
textarea.form-control:not(:placeholder-shown) ~ .form-label {
    top: -10px;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 0.95rem;
}

/* ==========================================================================
   10. WHATSAPP FLOATING CTA
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   11. DYNAMIC PRESTIGE BANNER / CALL TO ACTION
   ========================================================================== */
.prestige-banner {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(rgba(3, 7, 15, 0.4), rgba(3, 7, 15, 0.4));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.prestige-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, rgba(3, 7, 15, 0.85) 80%);
}

.prestige-banner .container {
    z-index: 10;
}

.prestige-banner .section-title {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 3.5rem;
    line-height: 1.25;
}

.prestige-banner p {
    font-size: 1.25rem;
    color: var(--color-platinum);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* ==========================================================================
   12. HOME PAGE COMPONENT REFACTOR
   ========================================================================== */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.destinations-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.horizontal-scroll-container {
    background: var(--color-charcoal);
    overflow: hidden;
    padding: 100px 0;
}

.horizontal-scroll-grid {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    width: max-content;
    transition: transform 0.1s ease-out;
}

.corporate-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.corporate-visual {
    position: relative;
    border-radius: var(--border-radius-premium);
    overflow: hidden;
    height: 500px;
}

.tour-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.specialty-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.aviation-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.story-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.operations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


