﻿/* ============================================================
   FAYVOR LANDING PAGE CSS
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;700;900&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    --green-dark: #4a6741;
    --green-mid: #6b8f5e;
    --green-light: #e8ede6;
    --white: #ffffff;
    --off-white: #f7f7f7;
    --text-dark: #222222;
    --text-body: #444444;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ============================================================
   RESET
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   HERO SECTION FULL WIDTH
   ============================================================ */
.hero-section {
    width: 100%;
    background: #547546;
    min-height: 260px;
    padding: 0;
    margin-top:0px;
    margin-bottom:0px;
    margin: 0;
    overflow: hidden;
}

/* ---------- INNER WRAPPER ---------- */
.hero-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 6% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* ---------- LEFT CONTENT ---------- */
.hero-content {
    flex: 1;
    max-width: 750px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
    margin-top:0px;
    margin-bottom: 30px;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* ---------- FEATURES ---------- */
.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

    .hero-features li {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #fff;
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: bold;
}

/* ---------- BUTTON ---------- */
.btn-assessment {
    display: inline-block;
    padding: 18px 42px;
    background: #f1f1f1;
    color: #4f6d42;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.3s ease;
}

    .btn-assessment:hover {
        transform: translateY(-3px);
    }

/* ---------- RIGHT IMAGE ---------- */
.hero-image {
    flex-shrink: 0;
    width: 500px;
}

    .hero-image img {
        width: 100%;
        object-fit: contain;
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-features li {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.4rem;
    }

    .hero-image {
        width: 350px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        width: 280px;
    }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    width: 100%;
    background: #f6f6f6;
    padding: 20px 0;
}

/* ---------- CENTER CONTAINER ---------- */
.container-custom {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0px;
}

/* ---------- TOP AREA ---------- */
.how-top {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.how-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #677744;
}

.how-subtitle {
    font-size: 2.0rem;
    color: #444;
    font-weight: 400;
}
/* ---------- STEPS ---------- */
.steps-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap; /* IMPORTANT */
}

/* ---------- CARD ---------- */
.step-card {
    width: 33.33%;
    text-align: center;
}

/* ---------- STEP TEXT ---------- */
.step-action {
    font-size: 3.5rem;
    font-weight: 900;
    color: #677744;
    line-height: 1;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 1.9rem;
    color: #333;
    margin-bottom: 24px;
}

/* ---------- IMAGE ---------- */
.step-image {
    width: 100%;
    max-width: 260px;
    height: 260px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

.step-card:hover .step-image img {
    transform: scale(1.06);
}
@media (max-width: 768px) {

    .steps-container {
        flex-wrap: wrap;
    }

    .step-card {
        width: 100%;
    }
}
/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    width: 100%;
    background: var(--green-dark);
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    max-width: 800px;
}

.trust-title {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: var(--font-display);
}

.trust-body {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 30px;
}

.our-assessment-title {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.assessment-points {
    list-style: none;
}

    .assessment-points li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 18px;
        color: rgba(255,255,255,0.88);
        line-height: 1.8;
        font-size: 1.8rem;
    }

        .assessment-points li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.8rem;
        }

/* ---------- PHONE IMAGE ---------- */
.trust-phone {
    width: 300px;
    flex-shrink: 0;
}

    .trust-phone img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {

    .hero-title {
        font-size: 3rem;
    }

    .how-title {
        font-size: 3rem;
    }

    .steps-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-features li {
        justify-content: center;
    }

    .trust-section {
        flex-direction: column;
        text-align: center;
    }

    .assessment-points li {
        text-align: left;
    }

    .steps-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.5rem;
    }

    .how-title {
        font-size: 2.4rem;
    }

    .how-subtitle {
        font-size: 1.1rem;
    }

    .step-card {
        width: 100%;
    }

    .step-image {
        width: 240px;
        height: 240px;
    }

    .trust-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {

    .hero-section {
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .how-it-works {
        padding: 70px 0;
    }

    .container-custom {
        padding: 0 20px;
    }

    .how-title {
        font-size: 1.9rem;
    }

    .step-action {
        font-size: 2.4rem;
    }

    .step-image {
        width: 210px;
        height: 210px;
    }

    .trust-phone {
        width: 220px;
    }
}

/* =========================================================
   DISCOVER SECTION
   ========================================================= */

.discover-section {
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
}

.discover-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================================
   TOP AREA
   ========================================================= */

.discover-top {
    text-align: center;
    margin-bottom: 60px;
}

.discover-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: #5f7141;
    margin-bottom: 16px;
    line-height: 1.1;
}

.discover-subtitle {
    font-size: 2.1rem;
    color: #333;
    margin-bottom: 16px;
}

.discover-link {
    font-size: 1.7rem;
    color: #222;
    font-weight: 700;
    text-decoration: underline;
}

/* =========================================================
   GRID
   ========================================================= */

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* =========================================================
   CARD
   ========================================================= */

.discover-card {
    text-align: center;
}

/* =========================================================
   IMAGE WRAP
   ========================================================= */

.discover-image-wrap {
    position: relative;
    width: 230px;
    margin: 0 auto 24px;
}

/* MAIN ROUND IMAGE */

.discover-main-image {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
}

/* SMALL PILL IMAGE */

.discover-pill-image {
    position: absolute;
    left: -15px;
    bottom: 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* =========================================================
   TEXT
   ========================================================= */

.discover-card-title {
    font-size: 3rem;
    font-weight: 800;
    color: #5f7141;
    margin-bottom: 6px;
}

.discover-card-subtitle {
    font-size: 1.7rem;
    color: #333;
}

/* =========================================================
   HOVER
   ========================================================= */

.discover-card:hover .discover-main-image {
    transform: scale(1.04);
    transition: 0.4s ease;
}


/* SMALL CIRCLE */
.small-pill-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    left: -15px;
    bottom: 5px;
    z-index: 5;
}

/* ROUND BACKGROUND */
.circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* CAPSULE IMAGE */
.capsule-small {
    position: absolute;
    width: 55px;
    height: 55px;
    object-fit: contain;
    top: 8px;
    left: 8px;
    transform: rotate(-5deg);
}
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .discover-title {
        font-size: 2rem;
    }

    .discover-subtitle {
        font-size: 1rem;
    }

    .discover-image-wrap {
        width: 200px;
    }

    .discover-main-image {
        width: 200px;
        height: 200px;
    }

    .discover-pill-image {
        width: 60px;
        height: 60px;
    }

    .discover-card-title {
        font-size: 1.7rem;
    }

    .discover-card-subtitle {
        font-size: 1.1rem;
    }
}


/* =========================================================
   SCIENCE SECTION
========================================================= */

.science-section {
    width: 100%;
    background: #f5f5f5;
}

/* =========================================================
   CONTAINER
========================================================= */

.science-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px 30px;
}

/* =========================================================
   TOP AREA
========================================================= */

.science-top {
    text-align: center;
    margin-bottom: 60px;
}

.science-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 12px;
}

.science-subtitle {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
}

.science-btn {
    display: inline-block;
    background: #6d7d3f;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 2.1rem;
    font-weight: 700;
    transition: 0.3s ease;
}

    .science-btn:hover {
        transform: translateY(-3px);
    }

/* =========================================================
   IMAGES
========================================================= */

.science-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

.science-image-card {
    position: relative;
}

.science-main-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
}

/* SMALL CIRCLE */

.science-small-circle {
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f5f5f5;
}

.science-small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   BOTTOM FEATURES
========================================================= */

.science-features {
    width: 100%;
    background: #2f2f2f;
    padding: 55px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 320px;
    flex-wrap: wrap;
}

.science-feature-item {
    text-align: center;
    color: #fff;
}

.science-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
/* ICON IMAGE */
.science-icon-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.science-feature-item h3 {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

    .science-title {
        font-size: 2.4rem;
    }

    .science-images {
        gap: 60px;
    }

    .science-features {
        gap: 60px;
    }
}

@media(max-width:768px) {

    .science-container {
        padding: 60px 20px;
    }

    .science-title {
        font-size: 2rem;
    }

    .science-subtitle {
        font-size: 1rem;
    }

    .science-main-image {
        width: 210px;
        height: 210px;
    }

    .science-small-circle {
        width: 70px;
        height: 70px;
    }

    .science-feature-item h3 {
        font-size: 1.3rem;
    }

    .science-icon {
        font-size: 3rem;
    }
}

/* =========================================================
   EXPERT SUPPORT SECTION
   ========================================================= */

.expert-support-section {
    width: 100%;
    background: #f7f7f7;
    padding: 10px 0 20px;
}

.expert-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TOP */

.expert-top {
    text-align: center;
    margin-bottom: 60px;
}

.expert-title {
    font-size: 4rem;
    font-weight: 800;
    color: #66773f;
    margin-bottom: 18px;
}

.expert-subtitle {
    max-width: 1000px;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #333;
}

.expert-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #66773f;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    transition: 0.3s ease;
}

    .expert-btn:hover {
        transform: translateY(-3px);
    }

/* GRID */

.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */

.expert-card {
    text-align: center;
}

.expert-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

.expert-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 6px;
}

.expert-role {
    font-size: 1.5rem;
    color: #666;
}

/* =========================================================
   HEALTH SECTION
   ========================================================= */

.health-section {
    width: 100%;
    background: #c9df79;
    padding: 20px 0;
}

.health-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.health-content {
    flex: 1;
    max-width: 550px;
}

.health-title {
    font-size: 4rem;
    font-weight: 900;
    color: #222;
    line-height: 1.1;
    margin-bottom: 24px;
}

.health-text {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
}

.health-subtitle {
    font-size: 3.6rem;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
}

/* RIGHT */

.health-image-box {
    width: 520px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.health-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.health-caption {
    padding: 18px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .health-container {
        flex-direction: column;
    }

    .health-image-box {
        width: 100%;
        max-width: 550px;
    }
}

@media (max-width: 768px) {

    .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-title {
        font-size: 2.2rem;
    }

    .health-title {
        font-size: 2.2rem;
    }

    .health-subtitle {
        font-size: 1.5rem;
    }

    .expert-image {
        height: 280px;
    }
}

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */

.testimonial-section {
    width: 100%;
    background: #f7f7f7;
    padding: 10px 0;
}

.testimonial-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================================
   TOP AREA
   ========================================================= */

.testimonial-top {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title {
    font-size: 4rem;
    font-weight: 800;
    color: #66773f;
    margin-bottom: 12px;
}

.testimonial-review {
    font-size: 2.0rem;
    font-weight: 800;
    color: #333;
    text-decoration: underline;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 1.9rem;
    color: #666;
}

/* =========================================================
   GRID
   ========================================================= */

/*.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}*/
.testimonial-grid {
    column-count: 4;
    column-gap: 16px;
}

.testimonial-item {
    break-inside: avoid;
    margin-bottom: 16px;
    width: 100%;
    display: inline-block;
}

/* =========================================================
   IMAGE BOX
   ========================================================= */

/*.image-box {
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .image-box:hover img {
        transform: scale(1.05);
    }*/
/* IMAGE */

.image-box {
    border-radius: 14px;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        display: block;
        border-radius: 14px;
        transition: 0.4s ease;
    }

    .image-box:hover img {
        transform: scale(1.05);
    }
/* =========================================================
   REVIEW BOX
   ========================================================= */

/*.review-box {
    border-radius: 14px;
    padding: 24px 20px;
    color: #fff;
}

.dark-box {
    background: #4a4a4a;
}

.blue-box {
    background: #455b88;
}

.review-box p {
    font-size: 1.95rem;
    line-height: 1.6;
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}*/
/* REVIEW BOX */

.review-box {
    padding: 24px 20px;
    border-radius: 14px;
    color: #fff;
}

.dark-box {
    background: #4a4a4a;
}

.blue-box {
    background: #455b88;
}

.review-box p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
/* TALL BOX */

.tall-box {
    min-height: 395px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-title {
        font-size: 2.2rem;
    }

    .testimonial-review {
        font-size: 1.4rem;
    }

    .image-box {
        height: 240px;
    }

    .tall-box {
        min-height: auto;
    }
}
