:root {
    --primary: #002366; /* Royal Blue */
    --primary-light: #0047AB; /* Cobalt Blue */
    --secondary: #C0C0C0; /* Silver */
    --accent: #E5E4E2; /* Platinum */
    --white: #FFFFFF;
    --dark: #0A0A0A;
    --text: #333333;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --shadow: 0 10px 40px rgba(0, 35, 102, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: #f8faff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, background 0.3s ease, opacity 0.3s ease;
    z-index: 10000;
    opacity: 1 !important;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
}

.cursor-follower {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--primary);
    transition: transform 0.3s ease-out;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(4);
    background: rgba(0, 35, 102, 0.2);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scroll Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    width: 0%;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.logo h1 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

/* Hero Refinements */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.hero-label {
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 35, 102, 0.25);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.image-bg {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 30px;
    z-index: 0;
}


@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 3.5rem; }
    .hero p { margin: 0 auto 3rem; }
    .hero-btns { justify-content: center; }
    .image-wrapper { max-width: 500px; margin: 0 auto; }
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: #f0f4f8;
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: none;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    background: var(--accent);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary);
    font-weight: 700;
}

/* Cards with Glassmorphism */
.project-card, .reform-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* Toast System */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 35, 102, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    transition: var(--transition);
    border-left: 5px solid var(--primary-light);
    font-weight: 600;
}

.toast.show {
    transform: translateX(0);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .cursor, .cursor-follower {
        display: none;
    }
    * { cursor: auto !important; }
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        z-index: 999;
    }
}
