.hero {
    height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero .hero-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.hero .hero-image {
    width: 50%;
    max-width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    background-color: var(--color-gray);
    padding: 2rem;
    min-height: 150px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 1rem;
}

.features-section .container {
    display: flex;
    align-items: center;
    justify-self: space-between;
    gap: 1rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-primary);
    flex: 1;
    background-color: var(--color-white);
}

.feature-card:nth-child(2) {
    border: 1px solid var(--color-secondary);
}

.feature-card svg {
    width: 35px;
    height: 35px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--color-text);
}

.feature-card p {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
}

/* Popular Destinations Section */
.popular-destinations {
    margin-top: 3rem;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 2rem;
    gap: 2rem;
}

.destination-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--color-gray);
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.why-choose-us .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.reasons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Testimonials Section */
.home-testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 4rem;
    gap: 2rem;
}

.testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .hero .hero-body {
        align-items: center;
    }

    .hero .hero-image {
        width: 100%;
        max-width: 300px;
    }

    .features-section {
        padding: 1.5rem 1rem;
        max-height: fit-content;
    }

    .features-section .container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .feature-card {
        padding: 1.5rem;
        width: 100%;
        /* Prevent cards from being too wide */
        margin: 0 auto;
    }

    .feature-card h3 {
        font-size: var(--font-size-xl);
    }

    .feature-card svg {
        width: 32px;
        height: 32px;
    }

    .why-choose-us .container {
        flex-direction: column;
        align-items: center;
    }

    .reasons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}