* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 50%, #e8a562 100%);
    --red-light: linear-gradient(135deg, #2a2a4e 0%, #a0395f 100%);
    --red-dark: linear-gradient(135deg, #0f0f1e 0%, #6b2439 100%);
    --orange-accent: #e8a562;
    --burgundy-accent: #8b2e4a;
    --burgundy-hover: #a0395f;
    --navy-blue: #1a1a2e;
    --dark-text: #1a1a2e;
    --medium-gray: #454545;
    --light-gray: #F9F9F9;
    --warm-beige: linear-gradient(135deg, #fffbf5 0%, #fff5eb 100%);
    --light-pink: linear-gradient(135deg, #fff9f0 0%, #fef5eb 100%);
    --border-gray: #D9D9D9;
    --white: #FFFFFF;
    --gradient-navy-burgundy: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 100%);
    --gradient-burgundy-gold: linear-gradient(135deg, #8b2e4a 0%, #e8a562 100%);
    --gradient-full: linear-gradient(135deg, #1a1a2e 0%, #8b2e4a 50%, #e8a562 100%);
    --h2: 36px;
    --h3: 28px;
    --h4: 26px;
    --h5: 22px;
    --text-big: 20px;
    --text-base: 18px;
    --text-small: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: var(--dark-text);
    line-height: 1.4;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Gradient text helper class */
.gradient-text {
    background: var(--gradient-burgundy-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.fade-in-up.animated {
    animation-name: fadeInUp;
}

.fade-in.animated {
    animation-name: fadeIn;
}

.scale-in.animated {
    animation-name: scaleIn;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation */
nav {
    background: white;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-left: auto;
    margin-right: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--medium-gray);
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--burgundy-accent);
}

.btn-login {
    background: var(--gradient-burgundy-gold);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 46, 74, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 165, 98, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 16px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 46, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 165, 98, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-text);
    line-height: 1.2;
}

.hero h1 .red {
    background: var(--gradient-burgundy-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: var(--text-big);
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 16px;
    background: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: var(--h2);
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--dark-text);
}

.timeline-section h2 .red {
    background: var(--gradient-burgundy-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border-gray);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 60px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: calc(50% + 60px);
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 24px;
    height: 24px;
    background: var(--gradient-burgundy-gold);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(139, 46, 74, 0.15);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 46, 74, 0.2);
    border-color: var(--burgundy-accent);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-burgundy-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: var(--h5);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.timeline-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 16px;
    background: linear-gradient(135deg, #fff9f0 0%, #FFFFFF 100%);
    position: relative;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle, #8b2e4a 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 46, 74, 0.2);
    border-color: var(--burgundy-accent);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-burgundy-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(139, 46, 74, 0.3);
}

.vm-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.vm-card h3 {
    font-size: var(--h4);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.vm-card p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Values Section */
.values-section {
    padding: 80px 16px;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: var(--h2);
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--dark-text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 46, 74, 0.15);
    border-color: var(--burgundy-accent);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.value-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 16px;
    background: white;
}

.cta-content {
    background: linear-gradient(135deg, #FFFBF5 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #F2F2F2;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-content h2 .red {
    background: var(--gradient-burgundy-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-primary {
    background: var(--gradient-burgundy-gold);
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(139, 46, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a0395f 0%, #f5b777 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 165, 98, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: var(--orange-accent);
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 30px;
    }

    .vision-mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    }

    .nav-menu .lang-flag-img {
        width: 24px !important;
        height: 18px !important;
        margin-right: 8px !important;
        vertical-align: middle !important;
    }

    .hero h1 {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-future-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
