/* ===== WHY CHOOSE US ===== */
.why-choose {
    margin: 80px auto 0;
    width: 95%;
    max-width: 1700px;
}

.why-container {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 24px;

    /* Hover illusion elevation */
    box-shadow:
        0 8px 20px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.05);

    transition: box-shadow .25s ease, transform .25s ease;
}

.why-container:hover {
    box-shadow:
        0 14px 28px rgba(0,0,0,0.1),
        0 6px 18px rgba(0,0,0,0.08);
}

/* Title */
.why-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
}

/* Grid */
/* .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
} */

/* Responsive grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}


/* Cards */
.why-card {
    padding: 30px 25px;
    border-radius: 18px;
    background: #fafafa;
    justify-content: center;

    transition:
        background .2s ease,
        transform .2s ease;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Hover effect */
.why-card:hover {
    background: #098317;
    color: #ffffff;
    transform: translateY(-6px);
}

.why-card:hover p {
    opacity: 1;
}


/* ---------------------------------------QUICK CONTACT----------------------------------------- */
.quick-contact {
    width: 95%;
    max-width: 1500px;
    margin: 80px auto 0;
    padding: 0px 0px 50px 0px;
}

.quick-contact-inner {
    background: #111;
    color: #fff;
    border-radius: 26px;
    padding: 60px 40px;
    text-align: center;

    /* Elevation illusion */
    box-shadow:
        0 12px 28px rgba(0,0,0,0.18),
        0 6px 16px rgba(0,0,0,0.12);
}

.quick-contact h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.quick-contact p {
    opacity: 0.85;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

/* Buttons */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform .2s ease, background .2s ease;
}

/* Variants */
.contact-btn.call {
    background: #098317;
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.email {
    background: #333;
}

/* Hover */
.contact-btn:hover {
    transform: translateY(-4px);
}

/* Meta info */
.contact-meta {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Icons inside buttons */
/* Icons inside buttons — FIXED */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
    width: auto;
    white-space: nowrap;
    margin: 0 15px 0 auto;
}


.contact-btn i {
    font-size: 18px;
}

.contact-btn.whatsapp .icon {
    fill: white;
    stroke: none;
}

@media (max-width: 768px) {
    .contact-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;        /* Keeps it responsive... */
        max-width: 320px;
        margin: 0 auto 15px auto;
        justify-content: center;
    }

    .contact-btn:last-child {
        margin-bottom: 0;
    }
}

/* --- TABLET / NOTEBOOK LAYOUT (The 2x2 Fix) --- */
/* This triggers when the screen is too narrow for 1 row, but too wide for mobile */
@media (max-width: 1200px) and (min-width: 769px) {
    .contact-actions {
        display: grid;                 /* Switch to Grid for perfect alignment */
        grid-template-columns: 1fr 1fr; /* Create exactly 2 equal columns */
        gap: 20px;                      /* Clean spacing */
        max-width: 700px;               /* Keep buttons from getting too wide */
        margin: 0 auto;                 /* Center the whole block */
    }

    .contact-btn {
        width: 100%;           /* Make button fill its grid cell */
        max-width: 320px;
        justify-content: center;
        margin: 0;             /* Remove any old margins */
        margin: 0 auto 15px auto;
    }
}