/* Woetter Contact Pro - Form Styles */

.wcp-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wcp-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.wcp-form-header h2 {
    font-size: 28px;
    color: #0F3B7A;
    margin-bottom: 10px;
}

.wcp-form-header p {
    color: #666;
    font-size: 14px;
}

.wcp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcp-form-group {
    display: flex;
    flex-direction: column;
}

.wcp-form-group label {
    font-weight: 600;
    color: #0F3B7A;
    margin-bottom: 8px;
    font-size: 14px;
}

.wcp-form-group input,
.wcp-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.wcp-form-group input:focus,
.wcp-form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.wcp-submit-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, #0F3B7A 0%, #1A56DB 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wcp-submit-btn:hover {
    background: linear-gradient(135deg, #0A2351 0%, #0F3B7A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 59, 122, 0.2);
}

.wcp-submit-btn:active {
    transform: translateY(0);
}

.wcp-form-message {
    padding: 12px 15px;
    border-radius: 6px;
    display: none;
    font-size: 14px;
}

.wcp-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wcp-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* WhatsApp & Telegram buttons */
.wcp-whatsapp-btn,
.wcp-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 10px;
}

.wcp-whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.wcp-whatsapp-btn:hover {
    background: #1FAD56;
    transform: translateY(-2px);
}

.wcp-telegram-btn {
    background: #0088cc;
    color: #ffffff;
}

.wcp-telegram-btn:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.wcp-icon {
    font-size: 18px;
}

/* Dark mode support */
body.dark-mode .wcp-form-wrapper {
    background: #1C2128;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .wcp-form-header h2 {
    color: #D4AF37;
}

body.dark-mode .wcp-form-header p {
    color: #8B949E;
}

body.dark-mode .wcp-form-group label {
    color: #D4AF37;
}

body.dark-mode .wcp-form-group input,
body.dark-mode .wcp-form-group textarea {
    background: #0D1117;
    border-color: #30363D;
    color: #F0F6FC;
}

body.dark-mode .wcp-form-group input:focus,
body.dark-mode .wcp-form-group textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .wcp-form-wrapper {
        padding: 20px;
    }
    
    .wcp-form-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .wcp-form-wrapper {
        padding: 15px;
    }
    
    .wcp-form-header h2 {
        font-size: 20px;
    }
    
    .wcp-form-group input,
    .wcp-form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
