/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0B1A3A;
    font-family: 'Montserrat', sans-serif;
    color: #4A5568;
    overflow-x: hidden;
}

/* ========== SPLASH SCREEN ========== */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B1A3A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.splash-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.splash-sub {
    font-size: 0.8rem;
    color: #D4AF37;
    margin-top: 10px;
    letter-spacing: 4px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.splash-loader {
    width: 280px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 40px auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.loader-line {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    border-radius: 10px;
    transition: width 0.1s linear;
}

.splash-percent {
    font-family: 'Montserrat', monospace;
    font-size: 0.9rem;
    color: #D4AF37;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== HEADER ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(11, 26, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

.logo span {
    color: #FFFFFF;
    font-weight: 400;
}

nav a {
    color: #E8E8E8;
    margin: 0 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

nav a:hover, nav a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #D4AF37;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B1A3A 0%, #0F2550 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1.1;
    min-width: 300px;
}

.hero-badge {
    color: #D4AF37;
    letter-spacing: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    border-left: 3px solid #D4AF37;
    padding-left: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    margin: 20px 0 15px;
    line-height: 1.2;
    color: #FFFFFF;
}

.gold-text {
    color: #D4AF37;
    position: relative;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin: 25px 0;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #CCCCCC;
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    padding: 14px 38px;
    border: 2px solid #D4AF37;
    border-radius: 40px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    background: transparent;
    transition: 0.4s;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn:hover {
    background: #D4AF37;
    color: #0B1A3A;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

.hero-right {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #1A2A4A, #0B1A3A);
    padding: 20px;
}

.passport-holder {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.98);
}

.nazar-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.6"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23D4AF37" stroke-width="1.5" opacity="0.4"/><circle cx="50" cy="50" r="15" fill="%23D4AF37" opacity="0.3"/><path d="M50,20 L50,80 M20,50 L80,50" stroke="%23D4AF37" stroke-width="1" opacity="0.3"/></svg>') center/cover no-repeat;
    pointer-events: none;
}

.constellation {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150"><circle cx="30" cy="30" r="3" fill="%23D4AF37" opacity="0.6"/><circle cx="80" cy="20" r="2" fill="%23D4AF37" opacity="0.5"/><circle cx="120" cy="50" r="3" fill="%23D4AF37" opacity="0.6"/><circle cx="60" cy="80" r="2" fill="%23D4AF37" opacity="0.5"/><circle cx="150" cy="90" r="3" fill="%23D4AF37" opacity="0.6"/><line x1="30" y1="30" x2="80" y2="20" stroke="%23D4AF37" stroke-width="0.5" opacity="0.3"/><line x1="80" y1="20" x2="120" y2="50" stroke="%23D4AF37" stroke-width="0.5" opacity="0.3"/><line x1="120" y1="50" x2="60" y2="80" stroke="%23D4AF37" stroke-width="0.5" opacity="0.3"/><line x1="60" y1="80" x2="150" y2="90" stroke="%23D4AF37" stroke-width="0.5" opacity="0.3"/></svg>') center/cover no-repeat;
    pointer-events: none;
}

/* ========== PAGE SECTION GENERAL ========== */
.page-section {
    padding: 100px 60px;
    position: relative;
    background: #F8F9FA;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: #D4AF37;
    letter-spacing: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #0B1A3A;
    margin: 10px 0;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: #D4AF37;
    margin: 20px auto;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.destination-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.destination-image {
    height: 220px;
    background: linear-gradient(135deg, #1A2A4A, #0B1A3A);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.destination-country {
    color: #D4AF37;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0B1A3A;
    margin-bottom: 10px;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 0.8rem;
    color: #666;
}

.visa-badge {
    background: #D4AF37;
    color: #0B1A3A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.destination-link {
    display: inline-block;
    margin-top: 15px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ========== VISA SERVICES ========== */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.visa-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.visa-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.visa-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.visa-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0B1A3A;
    margin-bottom: 10px;
}

.visa-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 15px 0;
}

.visa-features {
    list-style: none;
    margin: 15px 0;
}

.visa-features li {
    padding: 5px 0;
    font-size: 0.8rem;
    color: #666;
}

/* ========== PRIVATE JETS ========== */
.jet-section {
    background: linear-gradient(135deg, #0B1A3A, #0F2550);
    color: white;
}

.jet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jet-features {
    list-style: none;
    margin-top: 30px;
}

.jet-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.jet-image {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

/* ========== CONTACT PAGE ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #0B1A3A;
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #D4AF37;
    border: none;
    border-radius: 40px;
    color: #0B1A3A;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #C59B27;
    transform: translateY(-2px);
}

.success-msg {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ECC71;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    color: #27AE60;
}

.error-msg {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #E74C3C;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    color: #C0392B;
}

/* ========== FOOTER ========== */
footer {
    background: #0B1A3A;
    padding: 60px 60px 25px;
    color: #94A3B8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-section a {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
}

#newsletterForm {
    display: flex;
    gap: 10px;
}

#newsletterForm input {
    flex: 1;
    padding: 12px;
    background: #1A2A4A;
    border: 1px solid #2A3A5A;
    border-radius: 8px;
    color: white;
}

#newsletterForm button {
    padding: 12px 20px;
    background: #D4AF37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #0B1A3A;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #1A2A4A;
    font-size: 0.75rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    header {
        padding: 18px 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .jet-content, .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0B1A3A;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    nav a {
        display: block;
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .page-section {
        padding: 80px 25px 60px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .destinations-grid, .visa-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #newsletterForm {
        flex-direction: column;
    }
}