/*
|--------------------------------------------------------------------------
| SLT Contact (Speak with our specialist)
|--------------------------------------------------------------------------
*/

.cew-slt-contact {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #2D6A4F;
    color: #ffffff;
}

.cew-slt-contact-container {
    max-width: 1200px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}

/*
|--------------------------------------------------------------------------
| Glass card
|--------------------------------------------------------------------------
*/

.cew-slt-contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;

    padding: 48px;

    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 24px;
}

.cew-slt-contact-text {
    text-align: left;
}

.cew-slt-contact-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cew-slt-contact-description {
    max-width: 32rem;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.90);
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Side (person + button)
|--------------------------------------------------------------------------
*/

.cew-slt-contact-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.cew-slt-contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cew-slt-contact-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;

    border-radius: 999px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
    color: #2D6A4F;
}

.cew-slt-contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cew-slt-contact-avatar .material-symbols-outlined {
    font-size: 40px;
    line-height: 1;
}

.cew-slt-contact-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.cew-slt-contact-role {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.80);
    margin: 4px 0 0 0;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.cew-slt-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 40px;
    border-radius: 16px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    background-color: #F4A261;
    color: #ffffff;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cew-slt-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cew-slt-contact-btn .material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .cew-slt-contact-card {
        flex-direction: column;
        text-align: center;
    }

    .cew-slt-contact-text {
        text-align: center;
    }

    .cew-slt-contact-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cew-slt-contact-side {
        align-items: center;
    }

}

@media (max-width: 768px) {

    .cew-slt-contact {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .cew-slt-contact-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .cew-slt-contact-card {
        padding: 28px;
    }

    .cew-slt-contact-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .cew-slt-contact-description {
        font-size: 16px;
        line-height: 26px;
    }

    .cew-slt-contact-btn {
        width: 100%;
        justify-content: center;
    }

}
