/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --light-bg: #f8fafc;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif; 
    color: var(--text-main); 
    background-color: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* =========================================
   2. UTILITIES & BUTTONS
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn { 
    display: inline-block; padding: 12px 24px; 
    background-color: var(--accent); color: white; 
    font-weight: 600; border-radius: 6px; border: none; 
    cursor: pointer; text-transform: uppercase; font-size: 0.8rem; 
    letter-spacing: 0.5px; position: relative; overflow: hidden; 
    z-index: 1; white-space: nowrap; box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2); 
    text-align: center; 
}

.btn::after { 
    content: ''; position: absolute; bottom: 0; left: 0; 
    width: 100%; height: 0%; background-color: var(--accent-hover); 
    transition: all 0.3s; z-index: -1; 
}

.btn:hover::after { height: 100%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4); color: white; }

.btn-outline { background: transparent; border: 2px solid var(--white); box-shadow: none; }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

.section-header { margin-bottom: 50px; text-align: center; opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.section-header.visible { opacity: 1; transform: translateY(0); }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--primary); font-weight: 700; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

section { padding: 50px 0; }

/* =========================================
   3. FORMS
   ========================================= */
.form-card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.form-card h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 15px; text-align: center; }
.form-cta-text { color: var(--accent) !important; font-weight: 800; font-size: 1rem; text-align: center; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.85rem; color: var(--text-main); text-align: left; }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
header { 
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    position: fixed; width: 100%; top: 0; z-index: 1000; height: 80px; 
    display: flex; align-items: center; box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 40px !important; }
.logo-link { display: flex; align-items: center; margin-right: auto; }
.logo-img { height: 60px; width: auto; }

nav ul { display: flex; gap: 30px; align-items: center; }
nav a { color: white !important; font-weight: 500; font-size: 0.95rem; position: relative; white-space: nowrap; }
nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

.mobile-only-btn { display: none !important; }
.header-btn { display: inline-block !important; }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; z-index: 1001; color: white !important; }

.header-contact-desktop { display: flex; align-items: center; gap: 25px; margin-left: auto; margin-right: 30px; }
.h-contact-link { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.h-contact-link:hover { color: var(--accent); transform: translateY(-2px); }
.h-contact-link i { color: var(--accent); font-size: 1.1rem; }
.tg-icon-link { font-size: 1.4rem; color: #2AABEE; }
.tg-icon-link:hover { color: white; }
.mobile-contact-li { display: none; }

.dropdown-item { position: relative; height: 100%; display: flex; align-items: center; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: #ffffff; min-width: 220px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); border-radius: 8px; padding: 10px 0; z-index: 1000; flex-direction: column; gap: 0 !important; animation: fadeIn 0.3s ease; }
.dropdown-content li { width: 100%; margin: 0; }
.dropdown-content a { color: #334155 !important; padding: 12px 20px; text-decoration: none; display: block; font-size: 0.95rem; font-weight: 500; text-align: left; white-space: nowrap; }
.dropdown-content a::after { display: none; }
.dropdown-content a:hover { background-color: #f1f5f9; color: var(--accent) !important; transform: translateX(5px); }
.dropdown-item:hover .dropdown-content { display: flex; }

/* =========================================
   5. HERO SECTIONS (ALL PAGES)
   ========================================= */
/* Main Home Hero */
.hero { 
    position: relative; min-height: 100vh; display: flex; align-items: center; 
    color: white; padding-top: 100px; padding-bottom: 50px; overflow: hidden; background: #0f172a; 
}
.hero-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 120%; 
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), url('../images/hero.jpg'); 
    background-size: cover !important; background-repeat: no-repeat !important; background-position: center top; 
    z-index: 0; will-change: transform; 
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-text { opacity: 0; transform: translateY(30px); animation: heroFadeUp 1s ease-out 0.5s forwards; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: #ffffff !important; text-shadow: 0 5px 15px rgba(0,0,0,0.3); font-weight: 700; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #e2e8f0 !important; opacity: 1; max-width: 90%; }
.hero-btns { display: flex; gap: 15px; }
.hero-form-card { opacity: 0; transform: translateY(30px); animation: heroFadeUp 1s ease-out 0.8s forwards; }

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* Other Pages Heroes */
.vacancies-hero, .partner-hero, .contact-hero, .about-hero { 
    background-size: cover; background-position: center; 
    padding: 160px 0 100px; color: white; text-align: center; 
}
.vacancies-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop'); }
.partner-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80'); }
.contact-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80'); padding: 140px 0 80px; }
.about-hero { background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'); padding: 160px 0 80px; }

.vacancies-hero h1, .partner-hero h1, .contact-hero h1, .about-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }

/* Country Doc Heroes */
.doc-hero { 
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.9)), url('../images/https://images.unsplash.com/photo-1519677100203-a0e668c92439?auto=format&fit=crop&w=1920&q=80'); 
    background-size: cover; background-position: center; color: white; 
    padding-top: 180px; padding-bottom: 100px; margin-bottom: 40px; text-align: center; 
}
.doc-hero h1 { font-family: 'Merriweather', serif; font-size: 36px; margin: 0; }
.hero-breadcrumbs { font-size: 14px; opacity: 0.8; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.hero-breadcrumbs a { color: white; text-decoration: none; }
.hero-updated { font-size: 13px; margin-top: 15px; opacity: 0.7; }

/* =========================================
   6. COMPONENTS (PARTNERS, STATS, FEATURES)
   ========================================= */
.partners-section { background: white; padding: 30px 0; overflow: hidden; border-bottom: 1px solid var(--border); }
.marquee-container { display: flex; width: 400%; animation: marquee 60s linear infinite; }
.marquee-block { display: flex; justify-content: space-around; width: 50%; }
.partner-logo { font-size: 1.5rem; font-weight: 800; color: #94a3b8; display: flex; align-items: center; gap: 10px; transition: 0.3s; cursor: pointer; white-space: nowrap; margin: 0 40px; }
.partner-logo:hover { color: var(--primary); transform: scale(1.1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.stats-bar { 
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('../images/https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); 
    background-attachment: fixed; background-size: cover; background-position: center; 
    padding: 60px 0; color: white; position: relative; z-index: 2; 
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat-item h3 { font-size: 3rem; margin-bottom: 5px; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.stat-item p { font-size: 0.9rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card { padding: 40px; border: 1px solid var(--border); border-radius: 8px; transition: all 0.4s ease; opacity: 0; transform: translateY(30px); background: white; box-shadow: var(--shadow-soft); }
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: transparent; transform: translateY(-10px); }
.icon-box { width: 60px; height: 60px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.5rem; margin-bottom: 25px; border-radius: 4px; transition: 0.3s; }
.feature-card:hover .icon-box { background: var(--accent); color: white; transform: rotateY(360deg); }

/* =========================================
   7. PAGE SPECIFIC SECTIONS
   ========================================= */
/* Destinations (Home) */
.destinations { background-color: #ffffff; padding: 80px 0; }
.destinations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dest-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #f1f5f9; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); transition: all 0.4s ease; text-decoration: none !important; color: inherit; display: flex; flex-direction: column; height: 100%; }
.dest-card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); border-color: #bfdbfe; }
.dest-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.dest-card:hover .dest-img::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(37, 99, 235, 0.1); transition: 0.3s; }
.dest-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.dest-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: #0f172a; display: flex; align-items: center; justify-content: space-between; }
.dest-specs { background-color: #f8fafc; border-radius: 8px; padding: 12px; margin-bottom: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 1px solid #e2e8f0; }
.spec-item { display: flex; flex-direction: column; font-size: 0.85rem; }
.spec-title { color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 600; margin-bottom: 2px; display: flex; align-items: center; gap: 5px; }
.spec-value { color: #0f172a; font-weight: 700; font-size: 0.95rem; }
.dest-content p { color: #475569; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.dest-btn { margin-top: auto; color: var(--accent); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.dest-card:hover .dest-btn { gap: 12px; color: var(--accent-hover); }

/* Workflow */
.workflow { background: var(--primary); color: white; }
.workflow h2, .workflow h3 { color: white; }
.workflow p { color: #94a3b8; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.step-card { position: relative; padding-top: 20px; opacity: 0; transform: translateX(-20px); transition: all 0.6s ease; }
.step-card.visible { opacity: 1; transform: translateX(0); }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 4px; background: var(--accent); transition: width 0.5s ease 0.5s; }
.step-card.visible::before { width: 50px; }
.step-number { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); margin-bottom: 10px; }

/* Reviews */
.reviews { background: var(--light-bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: white; padding: 30px; border-radius: 8px; box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(20px); transition: 0.5s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background-size: cover; background-position: center; background-color: #ddd; }
.review-info h4 { margin: 0; font-size: 1rem; color: var(--primary); }
.review-info span { font-size: 0.8rem; color: var(--text-light); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 15px; }
.review-text { font-size: 0.95rem; color: var(--text-main); font-style: italic; }

/* Vacancies Cards (Home & Vacancies Page) */
.vacancies-section { background-color: var(--white); position: relative; z-index: 1; }
.vacancies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.vacancy-card { background: white; padding: 30px 25px; border-radius: 12px; box-shadow: var(--shadow-soft); transition: all 0.4s ease; border: 1px solid var(--border); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; }
.vacancy-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.vacancy-icon { width: 60px; height: 60px; background: #eff6ff; color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: 0.3s; }
.vacancy-card:hover .vacancy-icon { background: var(--accent); color: white; transform: rotate(10deg); }
.vacancy-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); font-weight: 700; }
.salary-badge { background: #e0e7ff; color: #2563eb; padding: 5px 12px; border-radius: 20px; font-weight: 800; font-size: 0.95rem; margin-bottom: 20px; display: inline-block; }
.vacancy-link { margin-top: auto; color: var(--text-light); font-weight: 600; text-decoration: none; font-size: 0.85rem; border: 1px solid var(--border); padding: 8px 20px; border-radius: 4px; transition: 0.3s; cursor: pointer; }
.vacancy-link:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* V-Grid (Vacancies Page) */
.v-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; padding: 80px 0; }
.v-card { background: white; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: all 0.4s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.v-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.v-header { padding: 25px; background: var(--white); border-bottom: 1px dotted var(--border); position: relative; }
.v-tag { position: absolute; top: 20px; right: 20px; background: #eff6ff; color: var(--accent); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }
.v-icon { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.v-title { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.v-location { font-size: 0.9rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.v-body { padding: 25px; flex-grow: 1; }
.v-salary { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-bottom: 15px; }
.v-details { list-style: none; font-size: 0.95rem; margin-bottom: 20px; }
.v-details li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.v-details i { color: #10b981; }
.v-footer { padding: 20px 25px; background: #fcfcfd; border-top: 1px solid var(--border); }
.v-footer .btn { width: 100%; }

/* FAQ */
.faq-section { background: var(--white); border-top: 1px solid var(--border); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; padding: 12px 0; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s ease; color: var(--accent); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--text-main); font-size: 0.95rem; }
.faq-answer p { padding-bottom: 20px; opacity: 0.9; }

/* Contact Page */
.contact { background: var(--light-bg); }
.contact-layout { text-align: center; max-width: 800px; margin: 0 auto; }
.info-list { display: flex; justify-content: center; gap: 40px; list-style: none; margin-top: 50px; flex-wrap: wrap; }
.info-list li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.info-list i { color: var(--accent); font-size: 2rem; background: var(--white); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: var(--shadow-soft); }

/* Partners Page (Tiers & Roadmap) */
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.h-stat div { font-size: 2rem; font-weight: 700; color: #60a5fa; }
.h-stat span { font-size: 0.9rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.value-list li { margin-bottom: 20px; display: flex; gap: 15px; }
.value-list i { color: #2563eb; font-size: 1.2rem; margin-top: 4px; background: #e0e7ff; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.license-box { background: #fff; border: 1px solid #e2e8f0; padding: 30px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.license-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: #2563eb; }
.tiers-section { background: #0f172a; color: white; padding: 60px 0; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.tier-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 30px 25px; border-radius: 16px; position: relative; transition: 0.3s; }
.tier-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); border-color: #60a5fa; }
.tier-card.popular { background: #2563eb; border-color: #2563eb; transform: scale(1.05); z-index: 2; box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3); }
.tier-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.tier-price { font-size: 2.5rem; font-weight: 800; margin: 20px 0; }
.tier-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.tier-features { list-style: none; margin: 30px 0; text-align: left; }
.tier-features li { margin-bottom: 12px; font-size: 0.95rem; display: flex; gap: 10px; color: #cbd5e1; }
.tier-features i { color: #4ade80; }
.tier-card.popular .tier-features li { color: #e0f2fe; }
.roadmap { position: relative; max-width: 800px; margin: 40px auto; }
.roadmap::before { content: ''; position: absolute; top: 0; left: 20px; height: 100%; width: 4px; background: #e2e8f0; }
.roadmap-step { position: relative; margin-bottom: 25px; padding-left: 60px; }
.step-marker { position: absolute; left: 0; top: 0; width: 44px; height: 44px; background: #2563eb; color: white; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 4px solid white; box-shadow: 0 4px 6px rgba(0,0,0,0.05); z-index: 2; }

/* Country/Doc Pages */
body.doc-page { background-color: #F8F9FA; color: #333; }
.doc-layout { display: flex; gap: 50px; margin-bottom: 80px; position: relative; }
.doc-sidebar { width: 280px; flex-shrink: 0; }
.sticky-widget { position: -webkit-sticky; position: sticky; top: 100px; z-index: 10; }
.sidebar-box { background: white; border: 1px solid #ddd; border-radius: 5px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.sidebar-box h3 { margin-top: 0; font-size: 18px; border-bottom: 2px solid #003366; padding-bottom: 10px; margin-bottom: 15px; color: #003366; }
.nav-box ul { list-style: none; padding: 0; margin: 0; }
.nav-box li { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.nav-box li:last-child { border-bottom: none; }
.nav-box a { text-decoration: none; color: #555; font-size: 15px; display: block; transition: 0.2s; }
.nav-box a:hover { color: #003366; padding-left: 5px; }
.highlight-link { color: #d32f2f !important; font-weight: bold; }
.doc-content { flex-grow: 1; background: white; padding: 40px; border: 1px solid #ddd; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.lead { font-size: 18px; color: #444; line-height: 1.6; margin-bottom: 30px; }
.doc-content h2 { color: #003366; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-top: 40px; font-family: 'Merriweather', serif; }
.doc-content p { line-height: 1.7; color: #444; margin-bottom: 15px; }
.fact-grid { display: flex; gap: 20px; margin: 20px 0; }
.fact-item { background: #f0f4f8; padding: 15px; border-radius: 5px; flex: 1; font-size: 14px; }
.fact-item i { color: #003366; margin-right: 8px; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 25px; margin-bottom: 10px; line-height: 1.5; }
.check-list li::before { content: '✔'; position: absolute; left: 0; color: #28a745; font-weight: bold; }
.doc-table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 15px; }
.doc-table th { background: #003366; color: white; text-align: left; padding: 12px; }
.doc-table td { border: 1px solid #ddd; padding: 12px; }
.doc-table tr:nth-child(even) { background: #f9f9f9; }
.info-alert { background: #e3f2fd; border-left: 5px solid #2196f3; padding: 15px; display: flex; gap: 15px; align-items: center; margin: 20px 0; }
.info-alert i { font-size: 24px; color: #2196f3; }
.location-map-block { display: block; margin: 30px auto; width: 100%; max-width: 600px; position: relative; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.location-map-block img { width: 100%; height: auto; display: block; object-fit: cover; }
.map-caption { position: absolute; bottom: 15px; right: 15px; background: rgba(255, 255, 255, 0.95); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: #334155; box-shadow: 0 2px 5px rgba(0,0,0,0.15); }

/* =========================================
   8. FOOTER (CONSOLIDATED)
   ========================================= */
footer { background: #020617; color: #94a3b8; padding: 80px 0 30px; font-size: 0.95rem; border-top: 1px solid #1e293b; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { padding-left: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #94a3b8; transition: 0.3s; text-decoration: none; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.copyright { text-align: center; border-top: 1px solid #1e293b; padding-top: 25px; margin-top: 20px; font-size: 0.9rem; }

/* Custom Footer Widgets (TG/FB) */
.tg-widget, .fb-widget-custom { background: #242424; border-radius: 12px; padding: 15px; display: flex; flex-direction: column; gap: 15px; border: 1px solid #333; transition: 0.3s; }
.tg-widget:hover { border-color: #2AABEE; transform: translateY(-3px); }
.fb-widget-custom:hover { border-color: #1877F2; transform: translateY(-3px); }

.tg-header, .fb-header { display: flex; align-items: center; gap: 12px; }
.tg-icon-box, .fb-icon-box { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; }
.tg-icon-box { background: #2AABEE; }
.fb-icon-box { background: #1877F2; }

.tg-info h5, .fb-info h5 { color: white; margin: 0; font-size: 0.95rem; }
.tg-info span, .fb-info span { font-size: 0.8rem; color: #aaa; }

.tg-btn, .fb-btn { color: white !important; text-align: center; padding: 8px 10px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; width: 100%; transition: 0.3s; }
.tg-btn { background: #2AABEE; }
.fb-btn { background: #1877F2; }
.tg-btn:hover { background: #229ED9; }
.fb-btn:hover { background: #145dbf; }
.fb-btn i { margin-right: 8px; }

/* =========================================
   9. MODALS & OVERLAYS
   ========================================= */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); animation: fadeIn 0.3s; }
.modal-content { background-color: #fefefe; margin: 10vh auto; padding: 40px; border: 1px solid #888; width: 90%; max-width: 500px; border-radius: 12px; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); animation: slideDown 0.4s; }
.close-modal { position: absolute; top: 15px; right: 20px; color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--accent); }
.modal h2, .modal h3 { margin-top: 0; margin-bottom: 20px; color: var(--primary); text-align: center; }

@keyframes fadeIn { from {opacity: 0} to {opacity: 1} }
@keyframes slideDown { from {transform: translateY(-50px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }

.job-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(5px); z-index: 9999; overflow-y: auto; padding: 20px; }
.job-modal-card { background: white; width: 100%; max-width: 600px; margin: 40px auto; border-radius: 20px; position: relative; overflow: hidden; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.jm-header { background: #0f172a; color: white; padding: 20px 30px; position: relative; }
.jm-close { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; color: rgba(255,255,255,0.7); line-height: 1; }
.jm-close:hover { color: white; }
.jm-body { padding: 25px 30px; color: #334155; line-height: 1.6; }
.jm-section-title { font-weight: 700; color: #0f172a; margin-top: 20px; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; font-size: 1.05rem; }
.jm-list { list-style: none; padding: 0; }
.jm-list li { position: relative; padding-left: 25px; margin-bottom: 6px; font-size: 0.95rem; }
.jm-list li::before { content: '✔'; color: #2563eb; font-weight: bold; position: absolute; left: 0; }
.jm-footer { padding: 15px 30px; background: #f8fafc; border-top: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }

#cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #0f172a; color: white; padding: 15px; font-size: 0.8rem; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; transform: translateY(100%); transition: transform 0.5s; }
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease; }

.back-to-top { position: fixed; bottom: 100px; right: 30px; width: 50px; height: 50px; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 899; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-5px); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 900; transition: transform 0.3s; animation: pulse-green 2s infinite; text-decoration: none; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* =========================================
   10. MEDIA QUERIES (MOBILE)
   ========================================= */
@media (max-width: 1024px) {
    .hero { height: auto; padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.5rem; text-align: center; }
    .hero p { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-form-card { max-width: 500px; margin: 0 auto; }
    .stats-grid, .features-grid, .destinations-grid, .steps-grid, .footer-grid, .reviews-grid { grid-template-columns: 1fr; gap: 30px; }
    .vacancies-grid { grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 600px) and (max-width: 1024px) { .vacancies-grid { grid-template-columns: 1fr 1fr; } }
    
    .mobile-toggle { display: block; }
    .header-contact-desktop { display: none !important; }
    .mobile-contact-li { display: block; width: 100%; border-top: 1px solid #eee; padding-top: 15px; margin-top: 10px; }
    .mobile-contact-li a { color: var(--primary) !important; justify-content: center; font-weight: 700; }
    .nav-wrapper { gap: 20px !important; }
    .marquee-container { width: 1200%; } 
    .marquee-block { width: 50%; }
    .partner-logo { font-size: 1.2rem; margin: 0 10px; }
    
    .feature-card, .step-card, .vacancy-card, .footer-col { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .step-card::before { left: 50% !important; transform: translateX(-50%) scaleX(0); }
    .step-card.visible::before { transform: translateX(-50%) scaleX(1); }
    .footer-col ul { text-align: center; }
    
    nav { position: absolute; top: 80px; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-150%); transition: transform 0.4s ease; z-index: 999; }
    nav.active { transform: translateY(0); }
    nav ul { flex-direction: column; text-align: center; gap: 20px; }
    nav a { color: var(--text-main) !important; }
    
    .header-btn { display: none !important; }
    .mobile-only-btn { display: block !important; width: 100%; }
    
    .vacancies-hero h1 { font-size: 2.5rem; }
    .v-grid { grid-template-columns: 1fr; }
    
    .dropdown-item { display: block; width: 100%; text-align: center; }
    .dropdown-content { display: block; position: static; box-shadow: none; background: rgba(0,0,0,0.03); width: 100%; padding: 5px 0; margin-top: 5px; border-radius: 4px; }
    .dropdown-content a { text-align: center; padding: 10px; color: inherit !important; }
    .dropbtn i { display: none; }
    .destinations-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .doc-layout { flex-direction: column; } 
    .doc-sidebar { width: 100% !important; max-width: 100%; margin-bottom: 30px; }
    .sticky-widget { position: static; width: 100%; }
    .sidebar-box.nav-box { width: 100%; text-align: center; padding: 15px; }
    .nav-box ul { text-align: center; }
    .nav-box ul li { border-bottom: 1px solid #eee; padding: 10px 0; text-align: center; }
    .nav-box ul li:last-child { border-bottom: none; }
    .nav-box a { font-size: 16px; display: block; text-align: center; }
    .doc-content { padding: 20px; }
    
    .hero-stats { flex-direction: column; gap: 20px; } 
    .value-grid { grid-template-columns: 1fr; } 
    .tiers-grid { grid-template-columns: 1fr; gap: 50px; } 
    .tier-card.popular { transform: scale(1); } 
    .partner-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .footer-col { text-align: center; align-items: center; }
    .footer-col div[style*="display: flex"] { justify-content: center; }
    .jm-footer { flex-direction: column; gap: 15px; text-align: center; }
    .jm-body { padding: 20px; }
}