/* * * * * * * * * * * * * * * * * *\
/*           HOME PAGE             *|
\* * * * * * * * * * * * * * * * * */

/* Home service cards */
.fm-home-card {
    background: #fff;
    border: 1px solid rgba(106, 138, 146, 0.2);
    border-radius: 8px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fm-home-card:hover {
    box-shadow: 0 8px 32px rgba(106, 138, 146, 0.2);
    transform: translateY(-4px);
}

.fm-home-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(247, 200, 181, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--fm-primary-color);
    flex-shrink: 0;
}

.fm-home-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.fm-home-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* About teaser */
.fm-home-about {
    padding: 4rem 0;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-home-about-image {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.fm-home-about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.fm-home-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.fm-home-about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Testimonials */
.fm-testimonials {
    padding: 4rem 0;
    border-top: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-testimonial-card {
    background: #fff;
    border-left: 4px solid var(--fm-secondary-color);
    border-radius: 0 8px 8px 0;
    padding: 2rem;
    position: relative;
    height: 100%;
}

.fm-testimonial-card::before {
    content: "\201C";
    font-family: "Lora", serif;
    font-size: 5rem;
    color: var(--fm-secondary-color);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
    opacity: 0.3;
    pointer-events: none;
}

.fm-testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.fm-testimonial-author {
    font-family: "Montserrat", serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fm-primary-color);
}

/* Home CTA */
.fm-home-cta {
    background: linear-gradient(135deg, rgba(247, 200, 181, 0.3) 0%, rgba(106, 138, 146, 0.12) 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.fm-home-cta p {
    color: #555;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Intro section */
.fm-home-intro {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(106, 138, 146, 0.15);
}

.fm-home-intro p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Intro checklist (light background) */
.fm-intro-checklist {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fm-intro-checklist li {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
}

.fm-intro-checklist li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.15rem;
}

/* Hero checklist */
.fm-hero-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.fm-hero-checklist li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.fm-hero-checklist li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 0.1rem;
}

.fm-home-about .fm-home-about-image img {
    object-fit: contain;
    height: auto;
}

@media screen and (max-width: 767px) {
    .fm-home-about-image img {
        height: 280px;
    }

    .fm-home-about .fm-home-about-image img {
        height: auto;
    }
}
