/* Contact Modal Styles - Extracted from _Layout.cshtml */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.show {
    display: flex;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-modal-container {
    position: relative;
    margin: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #8B6F47 0%, #B8956A 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.contact-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-modal-header h2 i {
    font-size: 1.5rem;
}

.contact-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 30px;
}

.contact-instruction-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid #dee2e6;
}

.instruction-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C49A6C 0%, #D1A76F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(196, 154, 108, 0.3);
}

.instruction-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-instruction-card h3 {
    color: #2c3e50;
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.contact-instruction-card p {
    color: #6c757d;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-steps {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8B6F47 0%, #B8956A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #2c3e50;
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-box {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.contact-info-box h4 {
    color: #004085;
    margin: 0 0 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-box li {
    color: #004085;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info-box li:last-child {
    margin-bottom: 0;
}

.contact-info-box li i {
    color: #007bff;
    margin-top: 4px;
}

.contact-login-prompt {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.contact-login-prompt p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.contact-login-prompt a {
    color: #856404;
    font-weight: 600;
    text-decoration: underline;
}

.contact-action-buttons {
    text-align: center;
}

.btn-chat-now {
    background: linear-gradient(135deg, #C49A6C 0%, #D1A76F 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 154, 108, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-chat-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 154, 108, 0.5);
}

.btn-chat-now:active {
    transform: translateY(0);
}

.btn-chat-now i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .contact-modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .contact-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-modal-body {
        padding: 20px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .instruction-icon {
        width: 60px;
        height: 60px;
    }
    
    .instruction-icon i {
        font-size: 2rem;
    }
    
    .btn-chat-now {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .contact-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}










