:root {
    /* Color Palette - AG Logo (Deep Navy/White) */
    --primary-color: #0d2149;
    --secondary-color: #f1c40f;
    --accent-color: #c0c0c0;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --bg-light: #ffffff;
    --bg-dark: #f4f7f6;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 100px 5%;
    --border-radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

section {
    padding: var(--section-padding);
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1a3a7a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 33, 73, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Navigation */
/* About Summary Highlight */
.about-highlight {
    background: var(--bg-dark);
    padding: 120px 5%;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Values Pillar Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 25px;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* News & Realizations Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: scale(1.02);
}

.news-img {
    height: 230px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* Partners Carousel/Grid */
.partners-section {
    padding: 80px 5%;
    background: white;
    border-top: 1px solid #eee;
}

.partners-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ccc;
    font-size: 1.5rem;
}

.header-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    display: none;
    border-top: 3px solid var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    text-transform: none;
    font-size: 0.9rem;
}

/* Home Specific */
.hero-premium {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 33, 73, 0.7);
    z-index: -1;
}

.hero-content-v2 h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 900px;
    margin: 20px auto;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hub-card {
    background: white;
    padding: 40px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.hub-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Global Components */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 140px 5% 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.mv-card {
    background: var(--bg-dark);
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 20px;
}

/* Activity Styles */
.activity-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.activity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 33, 73, 0.7);
}

.activity-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.activity-slogan {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Expertise & Impact */
.expertise-list-v2 {
    margin-top: 40px;
}

.expertise-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.expertise-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.commitment-section {
    margin-top: 80px;
    padding: 60px;
    background: var(--bg-dark);
}

.commitment-grid,
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.c-card,
.i-card {
    background: white;
    padding: 30px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.c-card h5,
.i-card h5 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Contact V3 */
.contact-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-top: 40px;
}

.contact-card-premium {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.c-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 4px;
}

.c-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-form-container {
    background: white;
    padding: 50px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.form-premium .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-v3 {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-v3 label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.form-group-v3 input,
.form-group-v3 select,
.form-group-v3 textarea {
    padding: 15px;
    border: 1.5px solid #eee;
    border-radius: 4px;
    font-family: inherit;
}

.btn-primary-full {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    border: none;
}

.map-visual {
    height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 900px) {
    :root {
        --section-padding: 60px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
        box-shadow: none;
        display: block;
        background: #f9f9f9;
        border: none;
        padding-left: 20px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Layout Stacking */
    .about-flex,
    .values-grid,
    .news-grid,
    .hub-grid,
    .footer-grid,
    .contact-grid-v3,
    .commitment-grid,
    .impact-grid,
    .activity-grid,
    .form-premium .form-row,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .hero-content-v2 h1 {
        font-size: 2.2rem;
    }

    .page-header h1,
    .activity-hero h1 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-flex {
        gap: 40px;
    }

    .activity-hero {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
    }
}