/*-----------------------------
** Contactt Area Start
------------------------------*/
/* ==================== FORM STYLES ==================== */
.contact-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

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

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    transition: all 0.3s ease;
    background: white;
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-input:focus {
    outline: none;
    border-color: #a52a2a;
    box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

.contact-input.error {
    border-color: #ef4444;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}
/* ==================== CHARACTER COUNTER ==================== */
.contact-char-counter {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

/* ==================== CONTACT PREFERENCE ==================== */
.contact-preference-group {
    margin: 20px 0;
}

.contact-preference-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
    display: block;
}

.contact-preference-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 5px;
}

.contact-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ca2230;
}

.contact-checkbox-label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

/* ==================== CONSENT CHECKBOXES ==================== */
.contact-consent-section {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.contact-consent-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.contact-consent-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-consent-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-privacy-link {
    color: #ca2230;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-privacy-link:hover {
    color: #7a1f1f;
    text-decoration: underline;
}

.contact-disclaimer {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 10px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
}

/* ==================== SUBMIT BUTTON ==================== */
.contact-submit-wrapper {
    text-align: center;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.contact-submit-btn {
    background: #ca2230;
    color: white;
    border: none;
    padding: 10px 60px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(165, 42, 42, 0.3);
    min-width: 200px;
}
.contact-submit-btn:focus {
    outline: none;
}
.contact-submit-btn:hover:not(:disabled) {
    background: #7a1f1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 42, 42, 0.4);
}

.contact-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

/* ==================== HONEYPOT (ANTI-BOT) ==================== */
.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ==================== SUCCESS MESSAGE ==================== */
.contact-success-message {
    display: none;
    background: #d1fae5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    animation: slideDown 0.4s ease;
}

.contact-success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-required-note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}
.contact-success-message h4 {
    color: #047857;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-success-message p {
    color: #065f46;
    font-size: 14px;
}

/* ==================== ERROR MESSAGE ==================== */
.contact-error-message {
    display: none;
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-error-message.show {
    display: block;
}

.contact-error-message h4 {
    color: #dc2626;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-error-message p {
    color: #991b1b;
    font-size: 14px;
}

/* ==================== FORM STYLES ==================== */
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

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

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    transition: all 0.3s ease;
    background: white;
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-input:focus {
    outline: none;
    border-color: #a52a2a;
    box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

.contact-input.error {
    border-color: #ef4444;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}