﻿/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a8e;
    --accent: #c8a45c;
    --accent-light: #e8d4a0;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8f9fc;
    --bg-dark: #0f1729;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,58,95,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.lang-toggle:hover { border-color: var(--primary); }
.lang-separator { color: var(--border); }
.lang-option { color: var(--text-light); transition: color var(--transition); }
.lang-option.active { color: var(--primary); }

.btn-nav { padding: 10px 24px; font-size: 0.85rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef6 50%, #dce4f0 100%);
    z-index: -2;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}
.hero-accent {
    color: var(--accent);
    display: block;
    font-size: 1.2em;
}

.hero-visa-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero-visa-block {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
}
.hero-visa-divider {
    font-size: 1.4rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: nowrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}
.flag-img {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: middle;
}
.stat-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.service-flag-img {
    width: 1.8rem;
    height: 1.8rem;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { background: var(--bg-alt); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.55;
}
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-lg);
}
.about-image-placeholder {
    background: linear-gradient(135deg, var(--bg-alt), #e8eef6);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 4rem;
    border: 2px dashed var(--border);
}
.about-image-placeholder p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}
.highlight-icon { font-size: 1.1rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-alt); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.step {
    text-align: center;
    position: relative;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
}
.testimonial-stars { margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-card > p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.testimonial-author strong {
    color: var(--primary);
}
.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-dark);
    color: #fff;
}
.contact .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
    border-color: rgba(255,255,255,0.1);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.contact-channel:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(4px);
}
.channel-icon { font-size: 1.5rem; }
.contact-channel strong { display: block; font-size: 0.9rem; }
.contact-channel span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}
.form-group select option {
    background: var(--bg-dark);
    color: #fff;
}
.form-group textarea { resize: vertical; }

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
}

.form-success {
    text-align: center;
    padding: 40px;
}
.success-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    color: rgba(255,255,255,0.6);
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.footer-brand p {
    width: 100%;
    font-size: 0.85rem;
    margin-top: 4px;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom { font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .hamburger { display: flex; }
    
    /* Mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .steps-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .hero { padding: 70px 0 40px; }
    section { padding: 40px 0; }
    
    .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-accent { font-size: 1.1em; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; }
}

