/* ========== CONTACT INTRO ========== */
.contact-intro {
    padding: 160px 40px 20px;
    text-align: center;
    background: #fff;
}

.contact-intro h1 {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 14px;
}

.contact-intro p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #777;
}

/* ========== SUPPLIER BOXES ========== */
.supplier-boxes {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
}

.supplier-box {
    display: flex;
    width: 100%;
    height: 300px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.supplier-box:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25), 0 0 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.supplier-box__image {
    width: 66.666%;
    height: 100%;
    overflow: hidden;
}

.supplier-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.supplier-box:hover .supplier-box__image img {
    transform: scale(1.03);
}

.supplier-box__content {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 20px;
}

.supplier-box__logo {
    height: 40px;
    width: auto;
}

.supplier-box__title {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

.supplier-box__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: #aaa;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.6;
}

/* BeMade box */
.supplier-box__content--bemade {
    background: #000;
}

/* Granite Tops box */
.supplier-box--granite {
    flex-direction: row-reverse;
}

.supplier-box__content--granite {
    background: #32373c;
}

.supplier-box__logo--gtuk {
    height: 32px;
}

.btn-gtuk {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #32373c;
    background: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-gtuk:hover {
    background: transparent;
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .contact-intro {
        padding: 130px 20px 40px;
    }

    .contact-intro h1 {
        font-size: 1.6rem;
        letter-spacing: 5px;
    }

    .supplier-box {
        flex-direction: column;
        height: auto;
    }

    .supplier-box--granite {
        flex-direction: column;
    }

    .supplier-boxes {
        padding: 40px 20px 60px;
        gap: 14px;
    }

    .supplier-box__image {
        width: 100%;
        height: 200px;
    }

    .supplier-box__content {
        width: 100%;
        padding: 40px 20px;
    }
}
