/* ========================================
   Contact Owner Simple Modal Styles
   ======================================== */
.contact-owner-modal-content {
    max-width: 400px;
}

.contact-owner-hero-section {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 15px;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    background-color: #8b5cf6;
    color: white;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin: 0 auto 15px;
    box-shadow: none;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.contact-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Phone Number Row */
.phone-number-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.phone-number-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: 0.5px;
}

.copy-btn {
    background-color: #edf2f7;
    color: #4a5568;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.copy-btn:hover {
    background-color: #e2e8f0;
    color: #1a202c;
}

.copy-btn:active {
    transform: scale(0.96);
}

.copy-btn.copied {
    background-color: #cce4ff;
    color: #1a2633;
}

/* Call Button */
.call-owner-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    background-color: #8b5cf6;
    color: white;
    box-shadow: none;
    transition: all 0.2s;
    font-family: inherit;
}

.call-owner-btn:hover {
    background-color: #2c3e50;
    box-shadow: none;
}

.call-owner-btn:active {
    transform: scale(0.98);
}

/* Interactive Action Toast */
.contact-toast {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    background-color: #1a202c;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.contact-toast.show {
    transform: translateY(0);
    opacity: 1;
}




