﻿/* ==========================================
CONTACT PAGE - PART 2
HIYASHRI NUTS & NATURALS
==========================================*/

/* CONTACT SECTION */

.contact-section {
    padding: 100px 0;
    background: #f8faf7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form,
.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-form h3,
    .contact-info h3 {
        color: #1b4d2a;
        margin-bottom: 30px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px 18px;
        border: 1px solid #ddd;
        border-radius: 12px;
        font-size: 16px;
        transition: .3s;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c79b24;
            outline: none;
            box-shadow: 0 0 10px rgba(199,155,36,.25);
        }

    .form-group textarea {
        resize: vertical;
    }

.contact-form button {
    width: 100%;
}

/* CONTACT INFO */

.info-card {
    text-align: center;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 15px;
    background: #f8faf7;
    transition: .3s;
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .info-card i {
        font-size: 40px;
        color: #c79b24;
        margin-bottom: 15px;
    }

    .info-card h4 {
        color: #1b4d2a;
        margin-bottom: 10px;
    }

    .info-card p {
        color: #666;
        line-height: 1.7;
    }

/* BUSINESS HOURS */

.business-hours {
    padding: 90px 0;
    background: #fff;
}

.hours-box {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .hours-box table {
        width: 100%;
        border-collapse: collapse;
    }

    .hours-box td {
        padding: 20px;
        border-bottom: 1px solid #eee;
        font-size: 17px;
    }

    .hours-box tr:last-child td {
        border-bottom: none;
    }

    .hours-box td:last-child {
        color: #1b4d2a;
        font-weight: 600;
        text-align: right;
    }

/* GOOGLE MAP */

.google-map {
    padding: 90px 0;
    background: #f8faf7;
}

.map-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

    .map-box iframe {
        display: block;
    }

/* WHATSAPP CTA */

.whatsapp-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg,#1b4d2a,#2f6d40);
    color: #fff;
}

    .whatsapp-cta h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .whatsapp-cta p {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .whatsapp-cta .btn {
        background: #25D366;
        color: #fff;
        font-size: 18px;
        padding: 15px 35px;
    }

        .whatsapp-cta .btn:hover {
            background: #fff;
            color: #1b4d2a;
        }

/* SCHEDULE CALL */

.schedule-call {
    padding: 100px 0;
    background: #fff;
}

.schedule-box {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

    .schedule-box form {
        display: grid;
        gap: 20px;
    }

    .schedule-box input {
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 12px;
        font-size: 16px;
    }

        .schedule-box input:focus {
            outline: none;
            border-color: #c79b24;
        }

/* TESTIMONIALS */

.testimonial {
    padding: 100px 0;
    background: #f8faf7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
    }

    .testimonial-card h4 {
        margin: 15px 0;
        color: #1b4d2a;
    }

    .testimonial-card strong {
        display: block;
        margin-top: 20px;
        color: #c79b24;
    }

/* PRODUCT CATALOGUE */

.catalogue {
    padding: 100px 0;
    background: #fff;
}

.catalogue-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 60px;
    border-radius: 25px;
    background: linear-gradient(135deg,#1b4d2a,#285937);
    color: #fff;
}

    .catalogue-box h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .catalogue-box p {
        margin-bottom: 35px;
        font-size: 18px;
    }

    .catalogue-box .btn {
        background: #c79b24;
        color: #fff;
        padding: 16px 40px;
    }

        .catalogue-box .btn:hover {
            background: #fff;
            color: #1b4d2a;
        }

/* RESPONSIVE */

@media(max-width:992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-section,
    .business-hours,
    .google-map,
    .whatsapp-cta,
    .schedule-call,
    .testimonial,
    .catalogue {
        padding: 70px 0;
    }

    .contact-form,
    .contact-info,
    .schedule-box,
    .catalogue-box {
        padding: 25px;
    }

    .hours-box td {
        display: block;
        text-align: left;
    }

        .hours-box td:last-child {
            text-align: left;
            padding-top: 0;
        }

    .whatsapp-cta h2,
    .catalogue-box h2 {
        font-size: 30px;
    }
}body {
}
