/* ===== Incotec CTA Box ===== */

.incotec-cta-box {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 64px 24px;
    box-sizing: border-box;
}

.incotec-cta-box__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Photo */
.incotec-cta-box__photo-wrap {
    flex-shrink: 0;
}

.incotec-cta-box__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Content */
.incotec-cta-box__content {
    flex: 1;
    min-width: 0;
}

/* Quote */
.incotec-cta-box__quote {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
    position: relative;
}

.incotec-cta-box__quote-icon {
    display: block;
    margin-bottom: 8px;
    color: #00a99d;
    opacity: 0.6;
}

/* Person */
.incotec-cta-box__person {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.incotec-cta-box__name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.incotec-cta-box__position {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact */
.incotec-cta-box__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.incotec-cta-box__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.incotec-cta-box__contact-item:hover {
    color: #00a99d;
}

.incotec-cta-box__contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* CTA Button */
.incotec-cta-box__actions {
    margin-bottom: 16px;
}

.incotec-cta-box__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00a99d;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 169, 157, 0.3);
}

.incotec-cta-box__button:hover {
    background: #008f85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 157, 0.4);
    color: #ffffff;
}

.incotec-cta-box__button svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.incotec-cta-box__button:hover svg {
    transform: translateX(4px);
}

/* Trust element */
.incotec-cta-box__trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.incotec-cta-box__trust svg {
    color: #00a99d;
    flex-shrink: 0;
}

/* ===== Centered Layout ===== */
.incotec-cta-box--centered .incotec-cta-box__inner {
    flex-direction: column;
    text-align: center;
    max-width: 700px;
}

.incotec-cta-box--centered .incotec-cta-box__quote-icon {
    margin-left: auto;
    margin-right: auto;
}

.incotec-cta-box--centered .incotec-cta-box__person {
    align-items: center;
}

.incotec-cta-box--centered .incotec-cta-box__contact {
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .incotec-cta-box {
        padding: 48px 20px;
    }

    .incotec-cta-box__inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .incotec-cta-box__photo {
        width: 150px;
        height: 150px;
    }

    .incotec-cta-box__quote {
        font-size: 18px;
    }

    .incotec-cta-box__quote-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .incotec-cta-box__person {
        align-items: center;
    }

    .incotec-cta-box__contact {
        justify-content: center;
    }

    .incotec-cta-box__button {
        width: 100%;
        justify-content: center;
    }

    .incotec-cta-box__trust {
        justify-content: center;
    }
}
