
/* Vendor Contact Section Styling - Refined Premium & Responsive */
.vendor-contact-section {
    background-color: #f8faff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.vendor-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: #febf0044;
}

.vendor-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.initials-circle {
    width: 64px;
    height: 64px;
    border-radius: 20px; /* Squircle for modern look */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 26px;
    margin-right: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hc-bg {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
}

.h-bg {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
}

.vendor-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.phone-action-box {
    background-color: #f9fafb;
    border-radius: 18px;
    /* padding: 18px 24px; */
    padding: 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f3f4f6;
    margin-top: auto;
    gap: 15px;
}

.phone-info {
    display: flex;
    align-items: center;
    color: #1f2937;
    font-weight: 800;
    font-size: 20px;
    white-space: nowrap; /* Forces single line */
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.phone-info i {
    margin-right: 15px;
    color: #febf00;
    font-size: 22px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.call-btn {
    background-color: #2563eb;
}

.whatsapp-btn {
    background-color: #16a34a;
}

.action-btn:hover {
    transform: scale(1.15) translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.request-call-box {
    background: linear-gradient(135deg, #fffcf0, #fff9e6);
    border-radius: 24px;
    padding: 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #febf00;
    text-align: center;
    box-shadow: 0 10px 30px rgba(254, 191, 0, 0.08);
}

.request-call-box h4 {
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.request-call-box p {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 320px;
    line-height: 1.6;
}

.get-call-btn {
    background-color: #febf00;
    color: #111827;
    padding: 18px 45px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(254, 191, 0, 0.4);
    font-size: 18px;
    border: none;
}

.get-call-btn:hover {
    background-color: #111827;
    color: #febf00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.get-call-btn i {
    margin-left: 15px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.get-call-btn:hover i {
    transform: translateX(8px);
}

/* Responsiveness */
@media (max-width: 1199px) {
    .vendor-header h3 { font-size: 24px; }
    .phone-info { font-size: 18px; }
    .initials-circle { width: 56px; height: 56px; font-size: 22px; }
    .vendor-card { padding: 30px; }
}

@media (max-width: 991px) {
    .vendor-card, .request-call-box {
        margin-bottom: 0px;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .phone-action-box {
        flex-direction: column;
        gap: 0px;
        text-align: center;
        padding: 25px;
    }
    .phone-info { 
        font-size: 22px; 
        justify-content: center;
        width: 100%;
    }
    .action-buttons {
        width: 100%;
        justify-content: center;
    }
    .vendor-header {
        flex-direction: column;
        text-align: center;
    }
    .initials-circle {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .vendor-card { padding: 13px 20px; }
    .phone-info { font-size: 19px; }
    .request-call-box h4 { font-size: 24px; }
    .get-call-btn { width: 100%; justify-content: center; }
}
