/* ================== Section 1: Hero ================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    background-image: url('../../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 28, 46, 0.85) 0%, rgba(10, 28, 46, 0.4) 50%, rgba(10, 28, 46, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding-top: 2rem;
}

.hero-content h1 {
    color: #fff;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.25;
    letter-spacing: 2px;
}

.hero-content h1 .en-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* ================== Global Section Header ================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 3px;
}

/* ================== Section 2: Who We Are ================== */
.who-we-are {
    padding: 10rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: #e9ecef;
}

.shadow-lg {
    box-shadow: var(--shadow-md);
}

.text-column h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-column .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.text-column p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* ================== Section 3: Why NM ================== */
.why-nm {
    padding: 10rem 0;
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.why-nm .section-header h2 {
    color: #fff;
    font-size: 2.5rem;
}

.why-nm .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 28, 46, 0.1);
    border-color: rgba(10, 28, 46, 0.1);
}

.icon-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    background: rgba(0, 209, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.icon {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ================== Section 4: What We Do (Bento) ================== */
.what-we-do {
    padding: 10rem 0;
}

.what-we-do .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.what-we-do .section-header h2 {
    font-size: 2.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 2rem;
}

.bento-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-large {
    grid-row: span 2;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.card-img {
    height: 55%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    transition: transform 0.6s ease;
}

.card-large .card-img {
    height: 70%;
}

.bento-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    background: #fff;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.bento-bg-placeholder-2 {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.bento-bg-placeholder-3 {
    background-image: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

/* ================== Section 5: News & Events ================== */
.news-section {
    padding: 8rem 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 60% 35%;
    gap: 5%;
}

.news-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.featured-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease;
}

.news-featured:hover .featured-img {
    transform: scale(1.03);
}

.placeholder-news-bg {
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(10, 28, 46, 0.95) 0%, rgba(10, 28, 46, 0) 100%);
    color: #fff;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.featured-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more:hover {
    color: #fff;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    cursor: pointer;
}

.news-item .thumb {
    width: 140px;
    height: 80px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.news-item .info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    transition: color var(--transition-fast);
}

.news-item:hover .info h4 {
    color: var(--color-accent);
}

.news-item .date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ================== Section 6: Disclaimer ================== */
.disclaimer-banner {
    background-color: #f8f9fa;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #f8f9fa 10px, rgba(0, 0, 0, 0.02) 10px, rgba(0, 0, 0, 0.02) 11px);
    padding: 2.5rem 0;
    border-top: 1px solid #eef0f2;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(10, 28, 46, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.disclaimer-icon svg {
    width: 24px;
    height: 24px;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.disclaimer-text strong {
    color: var(--color-primary);
}