/* ======================================== */
/* RESET - Clears default browser styles   */
/* ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ======================================== */
/* BODY - Main page style                   */
/* ======================================== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5fbf5;
    color: #1a3a2a;
    line-height: 1.7;
}

/* ======================================== */
/* CONTAINER - Centers content              */
/* ======================================== */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* ======================================== */
/* SECTION 1: HERO                         */
/* ======================================== */
.hero {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
    text-align: center;
    padding: 60px 20px 50px 20px;
    border-radius: 0 0 40px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.top-tag {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 36px;
    margin: 10px 0 5px 0;
    font-weight: 900;
}

.ceo-name {
    font-size: 18px;
    margin: 10px 0;
}

.ceo-name span {
    background: rgba(255,255,255,0.2);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 5px;
}

.slogan {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0 30px 0;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* ======================================== */
/* BUTTONS                                 */
/* ======================================== */
.btn-primary {
    display: inline-block;
    background: white;
    color: #1b5e20;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    border: 2px solid white;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
    border: 2px solid white;
    text-align: center;
}

.btn-secondary:hover {
    background: white;
    color: #1b5e20;
    transform: scale(1.05);
}

/* ======================================== */
/* SECTION TITLES                          */
/* ======================================== */
h2 {
    font-size: 28px;
    color: #1b5e20;
    margin-bottom: 10px;
    border-left: 5px solid #2e7d32;
    padding-left: 15px;
}

.subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
    padding-left: 20px;
}

/* ======================================== */
/* SECTION 2: ABOUT                        */
/* ======================================== */
.about {
    padding: 40px 0;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-text ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e8f5e9;
    font-size: 15px;
}

.about-text ul li strong {
    color: #1b5e20;
}

.mission {
    font-size: 20px;
    font-weight: bold;
    color: #1b5e20;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 12px;
}

/* ======================================== */
/* SECTION 3 & 4: FORMS                    */
/* ======================================== */
.consultation, .medical-test {
    background: #e8f5e9;
    padding: 40px 0;
    border-radius: 40px 40px 0 0;
    margin-top: 10px;
}

.medical-test {
    background: #f0f7f0;
    border-radius: 0;
}

.consult-form {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #1a3a2a;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #c8e6c9;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: #fafffa;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231b5e20' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2e7d32;
    outline: none;
    background: white;
}

.consult-form .btn-primary {
    width: 100%;
    text-align: center;
    background: #1b5e20;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
}

.consult-form .btn-primary:hover {
    background: #2e7d32;
}

/* ======================================== */
/* SECTION 5: CONTACT                      */
/* ======================================== */
.contact {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.contact-card {
    background: #f0f7f0;
    padding: 18px 14px;
    border-radius: 12px;
    border: 1px solid #c8e6c9;
}

.contact-card h3 {
    font-size: 16px;
    color: #1b5e20;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #333;
    margin: 3px 0;
}

.contact-card a {
    color: #1b5e20;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ======================================== */
/* FOOTER                                  */
/* ======================================== */
footer {
    background: #1a3a2a;
    color: #c8e6c9;
    text-align: center;
    padding: 30px 0;
    border-radius: 40px 40px 0 0;
    margin-top: 20px;
}

footer p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-tag {
    font-style: italic;
    color: #a5d6a7;
    font-size: 16px;
}

.footer-motto {
    font-weight: bold;
    color: #81c784;
    font-size: 18px;
    margin-top: 10px;
}

/* ======================================== */
/* RESPONSIVE - Tablets & Desktop          */
/* ======================================== */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .consult-form {
        padding: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* ======================================== */
/* WHATSAPP FLOATING BUTTON (Optional)     */
/* ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
