/* Contact Page specific styles */

.contact-hero {
    background: #0f172a;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.support-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1rem;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.icon-circle {
    transition: transform 0.3s ease;
}

.support-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 1.5rem;
}

.map-card {
    border-radius: 1.5rem;
}

/* Floating labels adjustments */
.form-floating > .form-control {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.15);
}

/* Custom validation styles */
.was-validated .form-control:invalid {
    border-color: #ef4444;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid {
    border-color: #10b981;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* FAQ Styles */
.custom-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background-color: transparent;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--brand);
    background-color: var(--brand-soft);
}

.custom-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    background: transparent;
}
