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

:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --secondary-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-white: #ffffff;
    --bg-light: #f4f7f6;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-center { text-align: center; }
.text-white { color: white !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,86,179,0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.full-width { width: 100%; }

/* Header & Nav */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo span {
    font-weight: 300;
    color: var(--text-light);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 90px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
}

.hero .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

/* Sections */
.section {
    padding: 120px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.rounded-img {
    border-radius: 15px;
    width: 100%;
    display: block;
}

.shadow { box-shadow: var(--shadow); }

/* Stats */
.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Success Cards */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.success-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.success-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
}

/* Topics */
.topics-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.topic-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.topic-item.reverse {
    direction: rtl;
}

.topic-item.reverse .topic-text {
    direction: ltr;
}

.topic-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.check-list {
    margin-top: 1.5rem;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

/* Initiative */
.large-p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3.5rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #f8fafc;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: white;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about h3 { color: white; margin-bottom: 1.5rem; }
.footer-about p { color: #a0aec0; }

.footer-nav h4, .footer-legal h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-nav a, .footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .topic-item, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 { font-size: 2.8rem; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 1002;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section { padding: 80px 0; }
}
