/*=========================
      CONSULTATION
=========================*/

.consultation {
    background: var(--cream);
    padding: clamp(60px, 10vw, 120px) 0;
}

.consultation-box {
    background:
        linear-gradient(rgba(10, 10, 10, .92),
            rgba(10, 10, 10, .92)),
        url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=2000");
    background-size: cover;
    background-position: center;
    border-radius: clamp(22px, 4vw, 30px);
    padding: clamp(35px, 6vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}

.consultation-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(176, 141, 87, .08);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.consultation-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.consultation-content .section-title {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

.consultation-content .text {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    font-size: clamp(0.92rem, 1.8vw, 1rem);
}

.consultation-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
}

.call-btn,
.consultation-actions .btn-primary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 15px 25px;
    border-radius: 100px;
    text-align: center;
    transition: .35s;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.call-btn:hover {
    background: #fff;
    color: #111;
}

/* ==========================
   CONSULTATION MOBILE
========================== */

@media (max-width: 900px) {
    .consultation-box {
        flex-direction: column;
        text-align: center;
        padding: 45px 25px;
        gap: 30px;
    }

    .consultation-actions {
        max-width: 100%;
        align-items: center;
    }

    .consultation-actions a,
    .consultation-actions button {
        max-width: 320px;
    }

    .consultation-content .text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .consultation-box {
        padding: 35px 18px;
        border-radius: 20px;
    }

    .call-btn,
    .consultation-actions .btn-primary {
        padding: 13px 20px;
        font-size: 0.88rem;
    }
}