/* 
   WMC-VOGO Indonesia Stylesheet 
   Standard Corporate Design
*/

:root {
    /* Brand Colors */
    --color-blue-primary: #004aad;
    --color-blue-dark: #003380;
    --color-green: #00a86b;
    --color-gold: #d4af37;

    /* Indonesian Accent Colors */
    --color-terracotta: #D84315;
    --color-indonesian-gold: #FFA000;
    --color-forest-green: #2E7D32;
    --color-batik-brown: #5D4037;

    /* Text Colors */
    --color-text-dark: #333333;
    --color-text-gray: #666666;
    --color-text-light: #ffffff;

    /* Background Colors */
    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding-top: 80px;
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-blue-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mt-md {
    margin-top: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-blue-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

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

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border-color: var(--color-blue-primary);
    color: var(--color-blue-primary);
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-blue-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-blue-primary);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-globe-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: var(--transition);
    border-radius: 50%;
}

.lang-globe-btn:hover {
    background-color: rgba(0, 74, 173, 0.1);
    color: var(--color-blue-primary);
}

.lang-globe-btn svg {
    width: 24px;
    height: 24px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition);
    position: relative;
}

.lang-option:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-option:hover {
    background-color: var(--color-bg-light);
    color: var(--color-blue-primary);
}

.lang-option.active {
    background-color: rgba(0, 74, 173, 0.1);
    color: var(--color-blue-primary);
    font-weight: 600;
}

.lang-option.active::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    color: var(--color-blue-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    transition: var(--transition);
}

/* Hide mobile language section on desktop */
.mobile-lang-section {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Improved touch targets for mobile menu */
    .nav-links a {
        padding: 16px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    /* Mobile Language Selection */
    .mobile-lang-section {
        display: block;
        width: 100%;
        padding: 1.5rem 1rem 0.5rem;
        border-top: 1px solid #e0e0e0;
        margin-top: 1rem;
    }

    .mobile-lang-title {
        font-size: 0.75rem;
        color: #666;
        text-align: center;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-lang-buttons {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-lang-btn {
        padding: 0.5rem 1rem;
        border: 1.5px solid var(--primary-color);
        background: white;
        color: var(--primary-color);
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 80px;
    }

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 20, 50, 0.6), rgba(0, 20, 50, 0.5)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-blue-primary);
    color: white;
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.stat-number::after {
    content: "+";
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-blue-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-gray);
}

/* Cards (Generic) */
.about-card,
.partner-card,
.business-card,
.project-card,
.news-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-card:hover,
.partner-card:hover,
.business-card:hover,
.project-card:hover,
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    text-align: left;
}

.about-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-list li::before {
    content: "•";
    color: var(--color-blue-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-blue-dark);
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
    border-left: 2px solid #ddd;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--color-blue-primary);
    border-radius: 50%;
    border: 2px solid white;
}

.timeline-date {
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 0.5rem;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    /* Ensure image stays within border radius */
    padding: 0 !important;
    /* Remove padding from card container */
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 1rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
}

.partner-card:hover .partner-img {
    transform: scale(1.05);
}

.partner-content {
    padding: 1.5rem;
}

.partner-card h3 {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.partner-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.partner-list li::before {
    content: "•";
    color: var(--color-green);
    position: absolute;
    left: 0;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.business-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.business-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.business-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    margin: 0;
}

.business-card:hover .business-img {
    transform: scale(1.05);
}

.business-content {
    padding: 1.5rem;
}

.business-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-blue-primary);
}

.business-card p {
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    margin: 0;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background-color: var(--color-blue-primary);
    color: white;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.project-tag.future {
    background-color: var(--color-gold);
}

.project-tag.completed {
    background-color: var(--color-green);
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: var(--color-blue-primary);
    border-radius: var(--radius-sm);
    color: white;
}

.news-date .day {
    font-size: 1.2rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.8rem;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-blue-primary);
    font-weight: 600;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-item h4 {
    color: var(--color-blue-primary);
    margin-bottom: 0.2rem;
}

.info-item p {
    color: var(--color-text-gray);
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--color-blue-primary);
    border-bottom-color: var(--color-blue-primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
}

/* Footer */
footer {
    background-color: #0a1018;
    /* Dark Navy/Black from reference */
    color: #ffffff;
    padding: 5rem 0 2rem;
    font-family: var(--font-main);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

.footer-col.brand-col {
    max-width: 500px;
}

.footer-col.contact-col {
    text-align: right;
}

.footer-col h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    color: #555;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-col.contact-col {
        text-align: left;
    }
}

/* Tablet-Specific Breakpoints */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Navigation spacing for tablets */
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .logo {
        margin-right: 2rem;
    }

    /* Hero adjustments for tablets */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Grid optimizations */
    .stats-grid,
    .partners-grid,
    .business-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive - Optimized for More Content */
@media (max-width: 767px) {

    /* Compact Typography */
    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    h2 {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    /* Hero section mobile optimization */
    .hero {
        min-height: 85vh;
        padding: 90px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.75rem;
        align-items: center;
    }

    /* Compact Touch targets */
    .btn {
        min-height: 44px;
        padding: 10px 20px;
        width: 100%;
        max-width: 320px;
        font-size: 0.9rem;
    }

    /* Contact form */
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.25rem;
    }

    /* Grid layouts - single column with compact spacing */
    .stats-grid,
    .partners-grid,
    .business-grid,
    .projects-grid,
    .about-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* News grid mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Compact Section padding */
    .section {
        padding: 2rem 0;
    }

    /* Tighter Container padding */
    .container {
        width: 96%;
        padding: 0 0.75rem;
    }

    /* Stats section */
    .stats-section {
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Card spacing */
    .card {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Language switcher - ensure it's hidden on mobile */
    .lang-switcher {
        display: none;
    }

    /* Header optimization */
    header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    /* Footer optimization */
    footer {
        padding: 2rem 0 1.5rem;
        font-size: 0.85rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    /* Form inputs */
    input,
    textarea {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    /* Timeline compact */
    .timeline-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .timeline-year {
        font-size: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* ===================================
   ABOUT PAGE PREMIUM STYLES
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.85) 0%, rgba(0, 102, 204, 0.85) 100%),
        url('../images/backgrounds/batik_hero.png') center/cover no-repeat;
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Statistics Section */
.about-stats-section {
    padding: 4rem 0;
    background: var(--color-bg-light);
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: white url('../images/backgrounds/batik_cards.png') center/cover;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.stat-card>* {
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(216, 67, 21, 0.15);
    border-color: var(--color-indonesian-gold);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Vision Section */
.about-vision-section {
    padding: 5rem 0;
    text-align: center;
}

.about-vision-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-blue-primary);
}

.about-vision-section .section-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.vision-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Cooperation Areas Section */
.cooperation-areas-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.cooperation-areas-section .section-title {
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--color-indonesian-gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(216, 67, 21, 0.15);
}

.area-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    width: 80px;
    height: 80px;
}

.area-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.area-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Partners Showcase Section */
.partners-showcase-section {
    padding: 5rem 0;
}

.partners-showcase-section .section-title {
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--color-blue-primary);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.1);
    transform: translateY(-3px);
}

.partner-name {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.timeline-section .section-title {
    margin-bottom: 4rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-blue-primary) 0%, var(--color-blue-secondary) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--color-blue-primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.2);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.timeline-year {
    display: inline-block;
    background: var(--color-blue-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Closing Statement Section */
.about-closing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.closing-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.closing-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-weight: 500;
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid var(--color-blue-primary);
    background: white;
    border-radius: var(--radius-md);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0 4rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .stats-grid-about {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .timeline-container {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.5rem;
    }

    .closing-text {
        font-size: 1.1rem;
    }
}

/* About Page Specifics - Enhanced Design */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-dark) 100%);
    color: white;
    padding: 6rem 0 5rem;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* About Us Section */
.about-us-section {
    padding: 5rem 0;
    background-color: #fafbfc;
}

.about-us-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--color-blue-dark);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #444;
}

.about-content p strong {
    color: var(--color-blue-primary);
    font-weight: 600;
}

/* Vision & Mission Section */
.about-vision-section {
    padding: 5rem 0;
    background: white;
}

.about-vision-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--color-blue-dark);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-box,
.mission-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-blue-primary);
    transition: all 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vision-box h3,
.mission-box h3 {
    color: var(--color-blue-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-gold);
    display: inline-block;
}

.vision-box p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-blue-dark);
    line-height: 1.7;
}

.mission-box ul {
    list-style: none;
    padding: 0;
}

.mission-box li {
    margin-bottom: 1.3rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.mission-box li::before {
    content: "✓";
    color: var(--color-green);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.mission-box li strong {
    color: var(--color-blue-primary);
}

/* Business Areas Section */
.cooperation-areas-section {
    padding: 5rem 0;
    background: #fafbfc;
}

.cooperation-areas-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-blue-dark);
}

.cooperation-areas-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.area-card-detail {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-blue-primary);
    transition: all 0.3s ease;
}

.area-card-detail:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-left-color: var(--color-green);
}

.area-card-detail h3 {
    color: var(--color-blue-primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.partner-info {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: var(--color-text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    border-left: 3px solid var(--color-gold);
}

.area-desc {
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.area-card-detail ul {
    list-style: none;
    padding: 0;
    background: #fafbfc;
    padding: 1.5rem;
    border-radius: 8px;
}

.area-card-detail li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444;
}

.area-card-detail li:last-child {
    margin-bottom: 0;
}

.area-card-detail li::before {
    content: "▸";
    color: var(--color-blue-primary);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.area-card-detail li strong {
    color: var(--color-blue-dark);
}

/* Partners Section */
.partners-showcase-section {
    padding: 5rem 0;
    background: white;
}

.partners-showcase-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-blue-dark);
}

.partners-showcase-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-item:hover {
    background: white;
    border-color: var(--color-blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.15);
}

.partner-name {
    font-weight: 600;
    color: var(--color-blue-dark);
    font-size: 1rem;
}

/* ========================================
   MODERN BUSINESS PAGE STYLES
   ======================================== */

/* Business Hero */
.business-hero {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--color-text-light);
}

.business-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.business-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Container Wide */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Business Areas Modern */
.business-areas-modern {
    padding: 80px 0;
    background: var(--color-bg-light);
}

/* Business Area Card */
.business-area-card {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 0;
    margin-bottom: 0;
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.business-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.business-area-card:not(:last-child) {
    margin-bottom: 60px;
}

/* Reverse layout for alternating cards */
.business-area-card.reverse {
    grid-template-columns: 55fr 45fr;
}

.business-area-card.reverse .business-area-image {
    order: 2;
}

.business-area-card.reverse .business-area-content {
    order: 1;
}

/* Business Area Image */
.business-area-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.business-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.business-area-card:hover .business-area-image img {
    transform: scale(1.08);
}

/* Image Overlay */
.business-area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.85) 0%, rgba(0, 51, 128, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

.business-area-card:hover .business-area-overlay {
    opacity: 0;
    display: none;
}

.business-area-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    display: none;
}

/* Business Area Content */
.business-area-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.business-area-content h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.business-area-content p {
    font-size: 1.0625rem;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* Business Area Tags */
.business-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.business-area-tags span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-dark) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-area-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-hero h1 {
        font-size: 2.5rem;
    }

    .business-area-card,
    .business-area-card.reverse {
        grid-template-columns: 1fr;
    }

    .business-area-card.reverse .business-area-image,
    .business-area-card.reverse .business-area-content {
        order: initial;
    }

    .business-area-image {
        height: 350px;
    }

    .business-area-content {
        padding: 40px;
    }

    .business-area-content h3 {
        font-size: 2rem;
    }

    .business-area-number {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .business-hero {
        padding: 80px 0 60px;
    }

    .business-hero h1 {
        font-size: 2rem;
    }

    .business-hero .hero-subtitle {
        font-size: 1rem;
    }

    .business-areas-modern {
        padding: 40px 0;
    }

    .business-area-card:not(:last-child) {
        margin-bottom: 40px;
    }

    .business-area-image {
        height: 280px;
    }

    .business-area-content {
        padding: 30px 20px;
    }

    .business-area-content h3 {
        font-size: 1.75rem;
    }

    .business-area-content p {
        font-size: 1rem;
    }

    .business-area-number {
        font-size: 4rem;
    }

    .business-area-tags span {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ========================================
   PREMIUM PROJECTS PAGE STYLES
   ======================================== */

/* Projects Hero */
.projects-hero {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--color-text-light);
}

.projects-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.projects-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Section Title Modern */
.section-title-modern {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    margin-bottom: 3rem;
    text-align: center;
}

/* Projects Timeline Section */
.projects-timeline-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-blue-primary) 0%, var(--color-green) 100%);
    border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--color-blue-primary);
    z-index: 2;
}

.timeline-marker.ongoing {
    background: var(--color-green);
    box-shadow: 0 0 0 4px var(--color-green), 0 0 20px rgba(0, 168, 107, 0.4);
}

.timeline-marker.future {
    background: var(--color-indonesian-gold);
    box-shadow: 0 0 0 4px var(--color-indonesian-gold), 0 0 20px rgba(255, 160, 0, 0.4);
}

.timeline-marker.completed {
    background: var(--color-blue-primary);
    box-shadow: 0 0 0 4px var(--color-blue-primary), 0 0 20px rgba(0, 74, 173, 0.4);
}

/* Timeline Content */
.timeline-content {
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 60px;
}

/* Project Card Modern */
.project-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Project Image Modern */
.project-image-modern {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-modern:hover .project-image-modern img {
    transform: scale(1.1);
}

/* Project Status Badge */
.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

.project-status.ongoing {
    background: rgba(0, 168, 107, 0.95);
}

.project-status.future {
    background: rgba(255, 160, 0, 0.95);
}

.project-status.completed {
    background: rgba(0, 74, 173, 0.95);
}

/* Project Info Modern */
.project-info-modern {
    padding: 30px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--color-text-gray);
}

.project-year {
    font-weight: 600;
    color: var(--color-blue-primary);
}

.project-location::before {
    content: '📍 ';
}

.project-info-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-info-modern p {
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Project Tags Modern */
.project-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags-modern span {
    padding: 6px 16px;
    background: var(--color-bg-light);
    color: var(--color-blue-primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* News Modern Section */
.news-modern-section {
    padding: 100px 0;
    background: white;
}

/* News Grid Modern */
.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card-modern.featured {
    grid-column: 1 / -1;
}

/* News Card Modern */
.news-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.news-card-modern.featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

/* News Image Modern */
.news-image-modern {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-card-modern.featured .news-image-modern {
    height: 100%;
}

.news-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-image-modern img {
    transform: scale(1.08);
}

/* News Date Badge */
.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-date-badge .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    line-height: 1;
}

.news-date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-gray);
    text-transform: uppercase;
    margin-top: 4px;
}

/* News Content Modern */
.news-content-modern {
    padding: 30px;
}

.news-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-dark) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.news-content-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-content-modern p {
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-blue-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    gap: 8px;
}

.news-link:hover {
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .news-grid-modern {
        grid-template-columns: 1fr;
    }

    .news-card-modern.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 80px 0 60px;
    }

    .projects-hero h1 {
        font-size: 2rem;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .projects-timeline-section,
    .news-modern-section {
        padding: 60px 0;
    }

    .timeline-item {
        margin-bottom: 60px;
    }

    .project-image-modern {
        height: 220px;
    }

    .project-info-modern h3 {
        font-size: 1.5rem;
    }

    .news-image-modern {
        height: 220px;
    }

    .news-content-modern h3 {
        font-size: 1.25rem;
    }
}