/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a3552 100%);
    color: white;
    padding: 72px 0 80px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 42, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h2 span {
    color: #facc15;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 10px 22px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    padding: 28px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats div {
    text-align: center;
}

.hero-stats .num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #facc15;
    letter-spacing: 1px;
}

.hero-stats .label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1a2e;
    margin-bottom: 8px;
    position: relative;
}

.section-title span {
    color: #c52a2a;
}

.title-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #c52a2a, #facc15);
    border-radius: 4px;
    margin: 8px 0 20px 0;
}

.section-sub {
    color: #4a5f78;
    margin-bottom: 28px;
    font-size: 1rem;
}

/* ===== CARDS & GRIDS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border-color: #c52a2a30;
}

.card i {
    font-size: 2.2rem;
    color: #c52a2a;
    margin-bottom: 14px;
    background: #fef0ee;
    padding: 10px;
    border-radius: 14px;
}

.card h4 {
    font-weight: 700;
    margin-bottom: 6px;
}

.card p {
    color: #4a5f78;
    font-size: 0.9rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 28px 0 40px;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 28px 12px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: 0.2s;
}

.stat-item:hover {
    border-color: #c52a2a;
}

.stat-item .num {
    font-size: 2.6rem;
    font-weight: 800;
    color: #c52a2a;
}

.stat-item .lbl {
    color: #4a5f78;
    font-weight: 500;
}

/* gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid .item {
    background: #eef2f7;
    border-radius: 16px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2f44;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-grid .item:hover {
    border-color: #c52a2a;
    background: #e2e8f0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-placeholder {
    background: #0b1a2e;
    color: white;
    padding: 48px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
}

.video-placeholder:hover {
    opacity: 0.85;
}

.video-placeholder i {
    font-size: 3rem;
    color: #facc15;
}

.download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0 24px;
}

.download-list a {
    background: white;
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid #dce2ec;
    text-decoration: none;
    color: #0b1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-list a:hover {
    border-color: #c52a2a;
    background: #fef6f5;
    box-shadow: 0 4px 12px rgba(197, 42, 42, 0.08);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 24px 0 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #edf2f7;
    transition: 0.2s;
}

.testimonial-card:hover {
    border-color: #c52a2a30;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.testimonial-card i.fa-star {
    color: #facc15;
    margin-right: 2px;
}

.contact-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: white;
    padding: 36px;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    margin: 20px 0 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 40px 0;
}

@media (max-width:768px) {

    .news-grid,
    .about-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    
    .grid-3,
    .grid-4,
    .stat-grid,
    .testimonial-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}