/* =========================================
   QUICK LINKS CONTAINER
========================================= */

.insurance-quick-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}


/* =========================================
   EACH INSURANCE SECTION
========================================= */

.insurance-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================
   CARD
   ONLY THE ICON IS INSIDE THIS
========================================= */

.insurance-item {
    width: 110px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #fff;

    border-radius: 18px;

    border: 1px solid #edf0f5;

    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.10);

    position: relative;
    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.insurance-item:hover {
    transform: translateY(-8px);

    background: #f8fbff;

    border-color: #1769d2;

    box-shadow:
        0 12px 28px rgba(23, 105, 210, 0.20);
}


/* =========================================
   ICON BUTTON
========================================= */
/* Mobile */
@media (max-width: 768px) {
        .insurance-toggle {
        justify-content: center; /* Center */
    }
}

    .insurance-toggle i {
        font-size: 32px;
    }




/* =========================================
   ICON
========================================= */

.insurance-toggle i {
    font-size: 90px;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


/* =========================================
   ICON HOVER
========================================= */

.insurance-item:hover .insurance-toggle i {
    transform: scale(1.2) rotate(5deg);

    filter:
        drop-shadow(0 5px 8px rgba(0, 0, 0, 0.18));
}


/* =========================================
   HEALTH
========================================= */

.health .insurance-toggle {
    color: #e63956;
}


/* =========================================
   CAR
========================================= */

.car .insurance-toggle {
    color: #1769d2;
}


/* =========================================
   BIKE
========================================= */

.bike .insurance-toggle {
    color: #159447;
}


/* =========================================
   TEXT BELOW CARD
========================================= */

.insurance-name {
    margin-top: 10px;

    font-size: 15px;

    font-weight: 700;

    color: #222;
}


/* =========================================
   PLANS + QUOTE
   HIDDEN INITIALLY
========================================= */

.insurance-actions {
    display: none;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    margin-top: 8px;
}


/* =========================================
   SHOW WHEN CARD IS ACTIVE
========================================= */

.insurance-section.active .insurance-actions {
    display: flex;
}


/* =========================================
   PLANS
========================================= */

.plan-link {
    text-decoration: none;

    background: #edf4ff;

    color: #1769d2;

    padding: 6px 25px;

    border-radius: 18px;

    font-size: 11px;

    font-weight: 700;

    text-align: center;

    transition: all 0.25s ease;
}


.plan-link:hover {
    background: #1769d2;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   QUOTE
========================================= */

.quote-link {
    text-decoration: none;

    background: #1769d2;

    color: white;

    padding: 6px 25px;

    border-radius: 18px;

    font-size: 11px;

    font-weight: 700;

    text-align: center;

    transition: all 0.25s ease;
}


.quote-link:hover {
    background: #0047ab;

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(23, 105, 210, 0.25);
}









.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

     width: fit-content;
}


/* Get Quote */

.hero-buttons .btn:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    background: #1769d2;
    color: white;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    white-space: nowrap;
}


/* WhatsApp */

.hero-buttons .green {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #25D366;
    color: white;

    border-radius: 8px;

    text-decoration: none;
}


/* Call */

.hero-buttons .call-btn {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #159447;
    color: white;

    border-radius: 8px;

    text-decoration: none;
}


/* Hover */

.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}


@media (max-width: 600px) {

    .hero-buttons {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 8px;

        margin: 0;
        padding: 0;
    }

    /* Get Quote takes remaining space */
    .hero-buttons .btn:first-child {
        flex: 1;

        min-width: 0;

        padding: 12px 10px;

        text-align: center;
    }

    /* WhatsApp */
    .hero-buttons .green {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;
    }

    /* Call */
    .hero-buttons .call-btn {
        flex: 0 0 45px;

        width: 45px;
        height: 45px;
    }
}


