.elementor-1518 .elementor-element.elementor-element-4c34df2{--display:flex;}.elementor-1518 .elementor-element.elementor-element-a60bae0.elementor-element{--flex-grow:1;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-1518 .elementor-element.elementor-element-4c34df2{--content-width:95%;}}/* Start custom CSS for html, class: .elementor-element-a60bae0 */.contact-wrapper {
    max-width: 1200px;
    margin: 5px auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    line-height: 1.6;
}

.contact-intro {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: #1e1e2f;
}

.contact-intro .subtitle {
    font-size: 1.05rem;
    color: #5a6a7a;
    max-width: 600px;
    margin: 10px auto 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #480371;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: right;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(72, 3, 113, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 1.4rem;
    font-size: 28px;
    color: #333;
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.card p {
    margin: 0 0 1.2rem;
    color: #5a6a7a;
    font-size: 0.9rem;
    flex-grow: 1;
}

.card .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f5f0f9;
    color: #480371;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    direction: ltr;
    word-break: break-all;
}

.card .contact-link:hover {
    background: #480371;
    color: white;
}

.copy-hint {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-top: 0.5rem;
    cursor: default;
}

.quick-note {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quick-note h4 {
    font-size: 1.3rem;
    margin: 0 0 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #1e1e2f;
    flex-wrap: wrap;
}

.quick-note p {
    color: #4a5568;
    margin: 0 0 1.4rem;
    font-size: 0.95rem;
}

.priorities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    border: rgba(241, 245, 249, 0.8);
    white-space: nowrap;
}

.priority-item .badge {
    background: #d4dde9;
    color: #475569;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.no-call-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.7rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, 0.5);
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.6;
}

.no-call-message strong {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .quick-note {
        padding: 1.2rem 1rem;
        border-radius: 20px;
    }

    .quick-note h4 {
        font-size: 1.1rem;
        gap: 0.3rem;
    }

    .quick-note p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .priorities {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .priority-item {
        width: 100%;
        max-width: 280px;
        justify-content: start;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        gap: 32px;
    }

    .no-call-message {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}/* End custom CSS */