/* Mobile Collection Form Styles */
.mnc-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.mnc-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.mnc-popup-container {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    width: 90%;
    margin: 50px auto;
    text-align: center;
}

.mnc-close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mnc-close-popup:hover {
    background: #f5f5f5;
    color: #333;
}

.mnc-popup-header h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.mnc-popup-header p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

.mnc-location-info {
    margin: 10px 0;
    padding: 8px 12px;
    background: #e7f3ff;
    border-radius: 6px;
    border-left: 4px solid #007cba;
}

.mnc-location-info small {
    color: #0066cc;
    font-weight: 500;
}

.mnc-mobile-form {
    margin: 20px 0;
}

.mnc-input-group {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mnc-country-code {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnc-mobile-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid transparent;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.mnc-mobile-input:focus {
    border-color: #667eea;
}

.mnc-mobile-input::placeholder {
    color: #999;
}

.mnc-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.mnc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mnc-success-message {
    color: #28a745;
    font-weight: 600;
    padding: 15px;
    background: #d4edda;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
}

.mnc-error-message {
    color: #dc3545;
    font-weight: 600;
    padding: 15px;
    background: #f8d7da;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
}

.mnc-whatsapp-chat {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.mnc-whatsapp-chat p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
}

.mnc-whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mnc-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.mnc-privacy-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.mnc-privacy-note small {
    color: #888;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 480px) {
    .mnc-popup-container {
        padding: 25px 20px;
        margin: 20px auto;
    }
    
    .mnc-popup-header h3 {
        font-size: 20px;
    }
    
    .mnc-popup-header p {
        font-size: 14px;
    }
    
    .mnc-country-code,
    .mnc-mobile-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mnc-whatsapp-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}