*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --red: #ff3e3e;
    --red-glow: rgba(255,62,62,0.5);
    --dark: #060608;
    --white: #ffffff;
    --text-dark: #121212;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.vignette {
    position: absolute;
    inset: 0;
    z-index: 5; 
    pointer-events: none;
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.nav-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
.nav-logo img { height: 60px; width: auto; }
.logo-text { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.5px; }
.logo-text em { font-style: normal; color: var(--red); margin-left: 4px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link-item {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}
.nav-link-item:hover { color: #fff; }

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--red);
    box-shadow: 0 4px 15px var(--red-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-btn:hover { transform: translateY(-2px); background: #ff5252; box-shadow: 0 8px 25px var(--red-glow); }

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.slider { position: absolute; inset: -50px; z-index: 0; }
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
    margin-bottom: 30px;
}
.title-line-1 { font-size: clamp(6rem, 16vw, 14rem); font-weight: 900; letter-spacing: -6px; }
.title-line-2 { font-size: clamp(3rem, 9vw, 8rem); font-weight: 900; color: var(--red); text-shadow: 0 0 50px rgba(255,62,62,0.4); }

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.slide-dots { display: flex; gap: 10px; margin-top: 60px; }
.dot {
    width: 35px; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background: var(--red); width: 70px; }

.scroll-hint {
    position: absolute;
    bottom: 50px; right: 100px;
    z-index: 10;
    cursor: pointer;
}
.scroll-line {
    width: 1px; height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: scroll 2.2s infinite;
}
@keyframes scroll {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.news-section {
    position: relative;
    z-index: 100;
    padding: 140px 0;
    background: var(--white);
    color: var(--text-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-header { margin-bottom: 60px; }
.header-line { width: 60px; height: 4px; background: var(--red); margin-bottom: 20px; border-radius: 2px; }
.section-badge { color: var(--red); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -1.5px; color: #000; }
.section-title span { color: var(--red); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 40px; }
.news-card { background: var(--white); border-radius: 32px; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.news-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: transparent; }
.news-img-wrap { height: 280px; position: relative; overflow: hidden; }
.news-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.news-card:hover .news-img { transform: scale(1.1); }
.news-category { position: absolute; top: 25px; left: 25px; background: var(--white); color: #000; padding: 8px 18px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.news-body { padding: 40px; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.news-date { font-size: 0.8rem; font-weight: 700; color: #000; }
.news-dot { width: 4px; height: 4px; background: #ddd; border-radius: 50%; }
.news-read { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.news-title { font-size: 1.6rem; font-weight: 800; line-height: 1.3; margin-bottom: 15px; color: #000; }
.news-desc { font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 30px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #000; font-weight: 800; font-size: 0.9rem; transition: gap 0.3s; }
.news-link svg { color: var(--red); transition: transform 0.3s; }
.news-link:hover { gap: 15px; }
.news-link:hover svg { transform: translateX(5px); }

.about-contact-section {
    padding: 140px 0;
    background: var(--light-bg);
    color: var(--text-dark);
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.combined-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.flag-status-card {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.flag-visual {
    position: relative;
    width: 60px;
    height: 80px;
}

.flag-pole {
    width: 4px;
    height: 100%;
    background: #333;
    border-radius: 2px;
}

.flag-cloth {
    position: absolute;
    top: 5px;
    left: 4px;
    width: 45px;
    height: 30px;
    border-radius: 2px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.flag-white { background: #fff; border: 1px solid #ddd; }
.flag-red { background: var(--red); }
.flag-none { background: #444; border: 1px solid #555; }

.flag-info h3 { font-size: 1.2rem; font-weight: 900; color: #000; }
.flag-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }

.weather-brief {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}
.weather-brief strong { color: #000; }

.contact-details-box {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.5rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.detail-info h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 5px; }
.detail-info p { font-size: 0.95rem; color: #666; line-height: 1.5; }

.mini-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.m-feat {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.map-container {
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.footer { padding: 100px 0 60px; background: var(--white); color: #000; border-top: 1px solid #eee; position: relative; z-index: 100; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.footer-logo span { color: var(--red); }
.footer p { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

@media (max-width: 1100px) {
    .combined-grid { grid-template-columns: 1fr; gap: 60px; }
    .map-container { height: 400px; }
}

@media (max-width: 768px) {
    .container { padding: 0 30px; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 30px; text-align: center; }
    .nav { padding: 0 20px; }
}
