/* =========================================================
   HOME PAGE CSS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 70px 0;
    background: #fff6f6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--red);

    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    max-width: 600px;

    font-size: 48px;
    line-height: 1.15;

    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--red);
}

.hero-text > p {
    max-width: 540px;

    margin-bottom: 25px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    color: var(--gray);

    font-size: 12px;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    height: 430px;

    object-fit: cover;

    border-radius: 12px;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 35px;

    text-align: center;
}

.section-heading > span {
    display: block;

    margin-bottom: 8px;

    color: var(--red);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin-bottom: 10px;

    font-size: 34px;
}

.section-heading p {
    color: var(--gray);

    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 70px 0;
    background: var(--white);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    padding: 28px 25px;

    background: var(--white);

    border: 1px solid var(--light-gray);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: #f2caca;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* SERVICE ICON */

.service-icon {
    display: flex;

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

    width: 58px;
    height: 58px;

    margin-bottom: 18px;

    color: var(--red);

    background: #fff1f1;

    border-radius: 50%;

    font-size: 30px;
}


/* SERVICE CONTENT */

.service-content h3 {
    margin-bottom: 8px;

    font-size: 18px;
}

.service-content p {
    margin-bottom: 14px;

    color: var(--gray);

    font-size: 13px;
    line-height: 1.7;
}


/* SERVICE BUTTON */

.service-btn {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    color: var(--white);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}


/* RED BUTTONS */

.service-card:nth-child(odd) .service-btn {
    background: var(--red);
}


/* YELLOW BUTTONS */

.service-card:nth-child(even) .service-btn {
    color: var(--black);

    background: var(--yellow);
}


.service-btn:hover {
    transform: translateX(2px);

    opacity: 0.9;
}


.service-btn i {
    font-size: 14px;
}

.service-card h3 {
    margin-bottom: 8px;

    font-size: 18px;
}

.service-card p {
    color: var(--gray);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    padding: 70px 0;

    background: #fafafa;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 28px 20px;

    text-align: center;

    background: var(--white);

    border-radius: var(--radius);

    border: 1px solid var(--light-gray);

    box-shadow: var(--shadow);

    transition: var(--transition);
}


.why-card:hover {
    transform: translateY(-5px);

    border-color: #f2caca;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* WHY ICON */

.why-icon {
    display: flex;

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

    width: 64px;
    height: 64px;

    margin: 0 auto 18px;

    color: var(--red);

    background: #fff1f1;

    border-radius: 50%;

    font-size: 32px;
}


.why-card:nth-child(even) .why-icon {
    color: var(--black);

    background: #fff8d9;
}


/* WHY CONTENT */

.why-card h3 {
    margin-bottom: 8px;

    font-size: 17px;
}


.why-card p {
    max-width: 220px;

    margin: 0 auto;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   MOVING PROCESS
========================================================= */

.process-section {
    padding: 70px 0;

    background: var(--white);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-card {
    position: relative;

    padding: 25px 20px;

    border: 1px solid var(--light-gray);
    border-radius: var(--radius);

    background: var(--white);
}

.process-card > span {
    display: inline-flex;

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

    width: 42px;
    height: 42px;

    margin-bottom: 15px;

    color: var(--white);

    background: var(--red);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 8px;

    font-size: 17px;
}

.process-card p {
    color: var(--gray);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding: 70px 0;

    background: #fafafa;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.review-card {
    padding: 25px;

    background: var(--white);

    border: 1px solid var(--light-gray);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.review-stars {
    margin-bottom: 12px;

    color: var(--yellow);

    font-size: 17px;
    letter-spacing: 2px;
}

.review-card p {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 13px;
    line-height: 1.8;
}

.review-card h4 {
    color: var(--black);

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   FINAL CTA
========================================================= */

.cta-section {
    padding: 55px 0;

    background: var(--red);
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-content h2 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 32px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;
}

.cta-content .btn-yellow {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .hero {
        padding: 55px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-image img {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
        gap: 7px;
    }

    .hero-image img {
        height: 260px;
    }

    .services-section,
    .why-section,
    .process-section,
    .reviews-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .services-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 45px 0;
    }

    .cta-content {
        flex-direction: column;

        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

}