.home-page {
    overflow: hidden;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sky-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.light-label {
    color: #ffffff;
}

/* Hero */
.hero-section .hero-slide {
    min-height: 760px;
}

.hero-section .hero-slide img {
    width: 100%;
    height: 760px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(20, 33, 61, 0.88), rgba(20, 33, 61, 0.62), rgba(20, 33, 61, 0.2));
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 16px;
    color: #ffffff;
    background: rgba(40, 94, 167, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-text {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.7;
}

/* Trust Strip */
.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -42px;
}

.trust-strip .container {
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.12);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trust-item i {
    font-size: 26px;
}

.trust-item span {
    color: var(--sky-navy);
    font-weight: 800;
}

/* Intro */
.intro-section {
    background: #ffffff;
}

.check-card {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
    padding: 16px;
    color: var(--sky-navy);
    background: var(--light);
    font-weight: 700;
}

.check-card i {
    color: var(--sky-blue);
}

.intro-image {
    position: relative;
    min-height: 520px;
}

.intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.intro-floating-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 330px;
    padding: 28px;
    background: #ffffff;
    border-left: 5px solid var(--sky-blue);
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.16);
}

.intro-floating-card h5 {
    margin-bottom: 10px;
}

.intro-floating-card p {
    margin-bottom: 0;
}

/* Services */
.services-section {
    background: var(--light);
}

.home-service-card {
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(20, 33, 61, 0.08);
    transition: 0.35s;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(20, 33, 61, 0.14);
}

.home-service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
}

.home-service-card:hover img {
    transform: scale(1.06);
}

.home-service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    color: #ffffff;
    background: var(--sky-blue);
    font-size: 22px;
}

.home-service-card h4 {
    margin-bottom: 14px;
}

.home-service-card p {
    margin-bottom: 20px;
}

.home-service-card a {
    color: var(--sky-blue);
    font-weight: 800;
}

.home-service-card a:hover {
    color: var(--sky-navy);
}

/* Process */
.process-section {
    background: #ffffff;
}

.process-card {
    height: 100%;
    padding: 32px;
    background: var(--light);
    border-bottom: 4px solid transparent;
    transition: 0.35s;
}

.process-card:hover {
    background: #ffffff;
    border-bottom-color: var(--sky-blue);
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.1);
    transform: translateY(-4px);
}

.process-card span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--sky-blue);
    font-size: 34px;
    font-weight: 900;
}

.process-card h4 {
    margin-bottom: 12px;
}

.process-card p {
    margin-bottom: 0;
}

/* Why */
.why-section {
    background: var(--light);
}

.why-section img {
    min-height: 520px;
    object-fit: cover;
}

.why-list>div {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.why-list i {
    margin-top: 4px;
    color: var(--sky-blue);
    font-size: 24px;
}

.why-list h5 {
    margin-bottom: 6px;
}

.why-list p {
    margin-bottom: 0;
}

/* CTA */
.home-cta {
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.96), rgba(40, 94, 167, 0.92)), url("../img/carousel-2.jpg") center center / cover no-repeat;
}

/* FAQ */
.faq-section {
    background: #ffffff;
}

.faq-card {
    height: 100%;
    padding: 30px;
    background: var(--light);
    border-left: 4px solid var(--sky-blue);
    transition: 0.35s;
}

.faq-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.1);
    transform: translateY(-4px);
}

.faq-card h5 {
    margin-bottom: 12px;
}

.faq-card p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {

    .hero-section .hero-slide,
    .hero-section .hero-slide img {
        min-height: 660px;
        height: 660px;
    }

    .hero-overlay {
        background: rgba(20, 33, 61, 0.78);
    }

    .hero-text {
        font-size: 17px;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip .container {
        box-shadow: none;
        border-bottom: 1px solid rgba(20, 33, 61, 0.08);
    }

    .intro-image,
    .intro-image img,
    .why-section img {
        min-height: 420px;
        height: 420px;
    }
}

@media (max-width: 575.98px) {

    .hero-section .hero-slide,
    .hero-section .hero-slide img {
        min-height: 620px;
        height: 620px;
    }

    .hero-section h1,
    .hero-section h2 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-text {
        font-size: 16px;
    }

    .trust-item {
        flex-direction: column;
        gap: 8px;
    }

    .intro-floating-card {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .intro-image,
    .intro-image img,
    .why-section img {
        min-height: 320px;
        height: 320px;
    }
}