/*
Theme Name: Commoffice
Author: Synet / Design: Sonda
Requires at least: 5.9
Requires PHP: 7.4
Version: 1.0
Text Domain: commoffice
*/

/* Lead Capture Form Styling */
.o-lead-capture__form .wpcf7-form {
    margin: 0;
}

.o-lead-capture__form .wpcf7-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.o-lead-capture__form .wpcf7-form input[type="text"],
.o-lead-capture__form .wpcf7-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    margin-bottom: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.o-lead-capture__form .wpcf7-form input[type="text"]:focus,
.o-lead-capture__form .wpcf7-form input[type="email"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.o-lead-capture__form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.o-lead-capture__form .wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #005a87 0%, #004666 100%);
    box-shadow: 0 6px 16px rgba(0, 124, 186, 0.4);
    transform: translateY(-2px);
}

.o-lead-capture__form .wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

/* Error styling */
.o-lead-capture__form .wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.o-lead-capture__form .wpcf7-form .wpcf7-validation-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Success message styling */
.o-lead-capture__form .wpcf7-form .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* GDPR Consent Checkbox Styling */
.o-lead-capture__form .wpcf7-form .wpcf7-acceptance {
    margin: 16px 0 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.o-lead-capture__form .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #007cba;
    margin-top: 2px;
}

.o-lead-capture__form .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-weight: 400 !important;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin: 0;
    flex: 1;
}

.o-lead-capture__form .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Remove default CF7 styling */
.o-lead-capture__form .wpcf7-form p {
    margin: 0 0 16px 0;
}

.o-lead-capture__form .wpcf7-form br {
    display: none;
}
