/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Poppins:wght@500;700&display=swap');

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #F5F7FA;
    color: #1A1A1A;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-content {
    max-width: 1200px;
    margin: auto;
}

.logo-placeholder {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A3D6F;
}

/* HERO */
.hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A3D6F, #2EC4B6);
    color: white;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* FIXED IMAGE SCALING */
.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.hero-text h1 {
    font-family: Poppins, sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f2f7ff;
}

.phone-highlight {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* BUTTONS */
.contact-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.call { background: #1A3D6F; }
.whatsapp { background: #25D366; }
.email { background: #6F7A89; }

/* INFO SECTION */
.info-section {
    background: #F0F6FA;
    padding: 80px 20px;
    text-align: center;
}

.info-section h2 {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    margin-bottom: 40px;
    color: #1A3D6F;
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* CARD */
.info-card {
    background: white;
    padding: 32px 26px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

/* ICON */
.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* TEXT */
.info-card h3 {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1A3D6F;
}

.info-card p {
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}

/* WHO SECTION */
.who-section {
    background: #F0F6FA;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #dce6ef;
    border-bottom: 1px solid #dce6ef;
}

.who-section h2 {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    margin-bottom: 40px;
    color: #1A3D6F;
}

.who-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.who-card {
    background: white;
    padding: 22px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 14px;
}

.who-icon {
    font-size: 30px;
}

.who-card h3 {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    margin: 0;
    color: #1A3D6F;
}

/* TESTIMONIALS */
.testimonials {
    background: #F0F6FA;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #dce6ef;
}

.testimonials h2 {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    margin-bottom: 40px;
    color: #1A3D6F;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
}

.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #444;
}

.testimonial-card .name {
    font-size: 15px;
    font-weight: 600;
    color: #1A3D6F;
}

/* ZERO COST SECTION */
.zero-cost {
    background: #F0F6FA;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #dce6ef;
    border-bottom: 1px solid #dce6ef;
}

.zero-cost h2 {
    font-family: Poppins, sans-serif;
    font-size: 34px;
    margin-bottom: 40px;
    color: #1A3D6F;
}

.zero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.zero-card {
    background: white;
    padding: 30px 24px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: left;
}

.zero-card h3 {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1A3D6F;
}

.zero-card p {
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}

.icon-img {
    font-size: 48px;
    margin-bottom: 20px;
}

/* CTA */
.cta-section {
    background: #D9ECF5;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: Poppins, sans-serif;
    font-size: 36px;
    color: #1A3D6F;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn {
    padding: 14px 24px;
    font-size: 18px;
}

/* FOOTER */
.footer {
    background: #15345A;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image img {
        width: 100%;
        max-width: 320px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 18px;
    }
}

/* Improve tap targets */
@media (max-width: 600px) {
    .cta-buttons .btn {
        padding: 18px 26px;
        font-size: 20px;
    }
}