/* --- Global Reset & Variables --- */
:root {
    --primary: #0056b3;
    --accent: #00a8ff;
    --dark: #1e272e;
    --grey: #4d545a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* --- Layout Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3 {
    line-height: 1.2;
}

p {
    color: var(--grey);
}

/* --- Header & Navigation --- */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.logo span { color: var(--dark); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    font-weight: 600;
    transition: var(--transition);
}

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

.cta-btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f4f8 100%);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content { flex: 1.2; }

.badge {
    background: #e1effe;
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-image { flex: 1; text-align: right; }

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* --- Stats Bar --- */
.stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

/* --- Services Grid --- */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

/* --- Team Grid --- */
.team { padding: 100px 0; }

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

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f1f5f9;
}

/* --- Support Section --- */
.support { padding: 100px 0; background: var(--white); }

.support-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.support-text { flex: 1.5; }

.support-list {
    list-style: none;
    margin-top: 25px;
}

.support-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.support-list i { color: #2ecc71; margin-right: 10px; }

.help-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

/* --- Footer --- */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about .logo { color: var(--white); margin-bottom: 20px; display: block; }

.footer-contact h3, .footer-links h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a { text-decoration: none; color: inherit; transition: 0.3s; }

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary { background: var(--primary); color: white; border: 1px solid var(--primary); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

.btn-secondary { border: 2px solid var(--primary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }

.btn-whatsapp { background: #25d366; color: white; margin-top: 20px; }

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .hero-flex, .support-flex { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .nav-links { display: none; } /* Mobile menu needed */
    .hero-image { order: -1; } /* Image on top for mobile */
    .stats-flex { flex-direction: column; gap: 30px; }
}