/* --- GLOBAL RESET & DEFAULTS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    scroll-behavior: smooth; 
    overflow-x: hidden;
    color: #0f172a;
    background-color: #ffffff;
}

/* --- NAVIGATION & DRAWER --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px; /* Compact height */
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.logo-img {
    height: 42px; /* Professional compact size */
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links li a:hover { color: #2563eb; }

.admin-link {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700 !important;
    font-size: 13px !important;
}

/* --- MOBILE DRAWER --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: #f1f5f9;
    border: none;
    padding: 10px;
    border-radius: 8px;
    z-index: 1002;
    gap: 4px;
}

.bar {
    width: 20px;
    height: 2px;
    background-color: #1e3a8a;
    transition: 0.3s;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 1000;
}

.menu-overlay.active { display: block; }

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 24px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid #f8fafc; }
    .nav-links li a { display: block; padding: 15px 0; font-size: 16px; }
    .admin-link { text-align: center; margin-top: 20px; width: 100%; }
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 110px 24px 60px; /* Compact padding */
    background: radial-gradient(circle at top right, #f8fafc, #ffffff);
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title span { color: #2563eb; }

.hero-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 480px;
}

.hero-image-container {
    position: relative;
    max-width: 480px;
}

.flag-text {
    position: absolute;
    top: 25.5%;
    left: 64.5%;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    transform: rotate(-13deg);
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* --- FOOTER (COMPACT) --- */
.site-footer {
    background: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #f1f5f9;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.social-item {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin-left: 8px;
    transition: 0.3s;
}

.social-item:hover { background: #2563eb; color: #fff; transform: translateY(-2px); }

/* Animation to X */
.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-active .bar:nth-child(2) { opacity: 0; }
.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }