﻿.home-hero {
    background: #ffffff;
    padding: 70px 0 45px;
    font-family: 'Poppins', sans-serif;
}

.home-container {
    width: min(92%, 1180px);
    margin: 0 auto;
}

.hero-heading {
    text-align: center;
    margin-bottom: 34px;
}

    .hero-heading h1 {
        color: #0b1f4d;
        font-size: clamp(3rem, 7vw, 5.7rem);
        font-weight: 800;
        letter-spacing: -0.055em;
        line-height: 1;
        margin: 0;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

        .hero-heading h1.fade-out,
        .hero-heading p.fade-out {
            opacity: 0;
            transform: translateY(8px);
        }

.hero-accent {
    width: 76px;
    height: 6px;
    background: #f97316;
    border-radius: 999px;
    margin: 28px auto 22px;
}

.hero-heading p {
    color: #0b1f4d;
    font-size: clamp(1.25rem, 2.5vw, 1.85rem);
    line-height: 1.45;
    max-width: 780px;
    margin: 0 auto;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
    gap: 36px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    padding: 34px 32px 28px;
    text-align: center;
    text-decoration: none;
    color: #0b1f4d;
    transition: 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.13);
        border-color: #f97316;
    }

    .service-card h2 {
        color: #0b1f4d;
        font-size: 1.75rem;
        font-weight: 800;
        margin: 18px 0 10px;
    }

    .service-card p {
        color: #0b1f4d;
        font-size: 1.05rem;
        line-height: 1.5;
        max-width: 260px;
        margin: 0 auto 24px;
    }

.book-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f97316;
    color: white;
    min-height: 56px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    transition: 0.2s ease;
}

.service-card:hover .book-button {
    background: #ea580c;
}

.book-button span {
    font-size: 1.7rem;
    line-height: 1;
}

.service-icon {
    width: 170px;
    height: 145px;
    margin: 0 auto;
    position: relative;
}

    .service-icon span {
        position: absolute;
        display: block;
    }

    /* Person icon */
    .service-icon .person::before {
        content: "";
        position: absolute;
        left: 24px;
        top: 10px;
        width: 25px;
        height: 25px;
        background: #0b1f4d;
        border-radius: 50%;
    }

    .service-icon .person::after {
        content: "";
        position: absolute;
        left: 23px;
        top: 42px;
        width: 22px;
        height: 70px;
        background: #0b1f4d;
        border-radius: 14px;
        transform: rotate(10deg);
        box-shadow: -16px 50px 0 -3px #0b1f4d, 20px 50px 0 -3px #0b1f4d;
    }

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

    .service-icon svg {
        width: 90px;
        height: 90px;
        stroke-width: 2;
        color: #f97316;
    }

.trust-strip {
    background: #f8fbff;
    border-top: 1px solid #e5eaf1;
    border-bottom: 1px solid #e5eaf1;
    padding: 34px 0;
    font-family: 'Poppins', sans-serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 32px;
    border-right: 1px solid #cfd8e5;
}

    .trust-item:last-child {
        border-right: none;
    }

.trust-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    background: #0b1f4d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.35rem;
    font-weight: 500;
}

.trust-item h3 {
    color: #0b1f4d;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.trust-item p {
    color: #0b1f4d;
    line-height: 1.45;
    margin: 0;
}

.final-cta {
    background: #06224b;
    text-align: center;
    padding: 36px 0 42px;
    font-family: 'Poppins', sans-serif;
}

    .final-cta h2 {
        color: #ffffff;
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .final-cta p {
        color: #f97316;
        font-size: 1.45rem;
        font-weight: 800;
        margin: 0;
    }

        .final-cta p span {
            display: inline-block;
            width: 55px;
            height: 4px;
            background: #f97316;
            border-radius: 999px;
            vertical-align: middle;
            margin: 0 18px;
        }

@media (max-width: 900px) {
    .service-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        gap: 24px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid #cfd8e5;
        justify-content: flex-start;
        padding: 24px 0;
    }

        .trust-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 600px) {
    .home-hero {
        padding-top: 45px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .final-cta p span {
        display: none;
    }
}
