/* ===============================
   WHY CHOOSE US
================================ */

.why-choose-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title h2 {
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    max-width: 650px;
    margin: auto;
}

/* GRID */

.why-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:992px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.why-card h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}


/* ===============================
   PROCESS SECTION
================================ */

.process-section {
    padding: 80px 0;
    background: #fff;
}

.section-title h2 {
    font-weight: 900;
}

.section-title p {
    color: #666;
    max-width: 650px;
    margin: auto;
}

/* GRID */

.process-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */

.process-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-6px);
}

/* STEP NUMBER */

.process-number {
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 18px;
}

.process-card h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #555;
}

/* ===============================
   CALL TO ACTION
================================ */

.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5a000, #ffc107);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.cta-card h2 {
    font-weight: 900;
    margin-bottom: 12px;
    color: #000;
}

.cta-card p {
    color: #222;
    margin-bottom: 30px;
    font-size: 16px;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
}

.cta-btn.btn-outline-light {
    border: 2px solid #000;
    color: #000;
}

.cta-btn.btn-outline-light:hover {
    background: #000;
    color: #fff;
}

/* ===============================
   HAPPY CLIENTS SECTION
================================ */

.stats-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffc107;
}

.stat-card p {
    font-size: 15px;
    margin-top: 8px;
    color: #555;
}


/* =========================
copy
================================ */


.color-year {
    padding: 80px 0;
    background: #f5f5f5;
    font-family: sans-serif;
}

.color-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Left Content */

.color-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.color-left p {
    color: #555;
    margin-bottom: 25px;
}

.catalog-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.catalog-btn:hover {
    background: #000;
    color: #fff;
}

/* Cards */

.color-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transform: translateY(0);
    transition: all .4s ease;
}

.color-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform .5s ease;
}

.color-card:hover img {
    transform: scale(1.1);
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.color-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    color: white;
}

.color-info span {
    font-size: 12px;
    opacity: .8;
}

.color-info h3 {
    font-size: 26px;
    margin: 5px 0;
}

.color-info p {
    font-size: 14px;
    opacity: .9;
}

/* Responsive */

@media(max-width:1000px) {

    .color-wrapper {
        grid-template-columns: 1fr;
    }

    .color-left {
        text-align: center;
        margin-bottom: 30px;
    }

}