/* ==========================================
   HOME PAGE CSS - MEHER AYURVEDA
========================================== */

:root{
    --primary:#2D6A4F;
    --primary-dark:#1B4332;
    --gold:#D4AF37;
    --cream:#FFF8E7;
    --white:#ffffff;
    --text:#333;
    --gray:#777;
    --shadow:0 15px 40px rgba(0,0,0,0.08);
    --radius:18px;
}

/* ==========================================
   COMMON
========================================== */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:var(--gold);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary-dark);
    font-family:'Playfair Display', serif;
    line-height:1.3;
}

.btn-primary{
    display:inline-block;
    background:linear-gradient(135deg,var(--gold),#f1cf6b);
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    display:inline-block;
    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
}

/* ==========================================
   HERO
========================================== */

.hero{
    background:
    linear-gradient(rgba(255,248,231,.95),
    rgba(255,248,231,.95)),
    url('../images/banners/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    min-height:90vh;

    display:flex;
    align-items:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:#fff;
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    box-shadow:var(--shadow);
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    color:var(--primary-dark);
    margin-bottom:25px;
    font-family:'Playfair Display', serif;
}

.hero p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-trust{
    margin-top:45px;
    display:flex;
    gap:40px;
}

.hero-trust strong{
    display:block;
    font-size:28px;
    color:var(--gold);
}

.hero-trust span{
    color:#666;
}

.hero-image img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
}

/* ==========================================
   TRUST BAR
========================================== */

.trust-bar{
    background:var(--primary-dark);
    padding:25px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-item{
    color:#fff;
    text-align:center;
    font-weight:600;
}

/* ==========================================
   ABOUT PRODUCT
========================================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

.about-content p{
    line-height:1.9;
    margin-bottom:20px;
    color:#555;
}

.about-content ul{
    margin-bottom:30px;
}

.about-content li{
    padding:10px 0;
    color:#444;
    font-weight:500;
}

.about-content li::before{
    content:"✓ ";
    color:var(--gold);
    font-weight:bold;
}

/* ==========================================
   BENEFITS
========================================== */

.benefits{
    background:#fafafa;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card i{
    font-size:45px;
    color:var(--gold);
    margin-bottom:20px;
}

.benefit-card h3{
    color:var(--primary-dark);
}

/* ==========================================
   INGREDIENTS
========================================== */

.ingredient-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ingredient-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.3s;
}

.ingredient-card:hover{
    transform:translateY(-8px);
}

.ingredient-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.ingredient-card h3{
    padding:20px;
    color:var(--primary-dark);
}

/* ==========================================
   WHY US
========================================== */

.why-us{
    background:var(--cream);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:var(--shadow);
    font-weight:600;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    background:#fafafa;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    position:relative;
}

.testimonial-card::before{
    content:"❝";
    font-size:50px;
    color:var(--gold);
}

.testimonial-card p{
    line-height:1.8;
    color:#555;
    margin:15px 0;
}

.testimonial-card h4{
    color:var(--primary-dark);
}

/* ==========================================
   FRANCHISE CTA
========================================== */

.franchise-cta{
    background:
    linear-gradient(
        rgba(27,67,50,.92),
        rgba(27,67,50,.92)
    ),
    url('../images/banners/franchise-bg.jpg');

    background-size:cover;
    color:#fff;
    text-align:center;
}

.franchise-content span{
    color:var(--gold);
    font-weight:600;
}

.franchise-content h2{
    font-size:48px;
    margin:20px 0;
    font-family:'Playfair Display', serif;
}

.franchise-content p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:30px;
}

/* ==========================================
   ORDER CTA
========================================== */

.order-banner{
    background:linear-gradient(135deg,var(--gold),#f5d87c);
    text-align:center;
}

.order-banner h2{
    font-size:48px;
    color:#000;
    margin-bottom:15px;
}

.order-banner p{
    margin-bottom:25px;
    color:#222;
}

/* ==========================================
   FAQ
========================================== */

.faq-item{
    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    margin-bottom:20px;
    padding:25px;
}

.faq-item h3{
    color:var(--primary-dark);
    margin-bottom:10px;
}

/* ==========================================
   CONTACT FORM
========================================== */

.home-contact{
    background:#fafafa;
}

.home-form{
    max-width:700px;
    margin:auto;
}

.home-form input,
.home-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
}

.home-form textarea{
    height:150px;
    resize:none;
}

.home-form button{
    border:none;
    cursor:pointer;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .hero-grid,
    .about-grid{
        grid-template-columns:1fr;
    }

    .benefits-grid,
    .testimonial-grid,
    .ingredient-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:44px;
    }

    .section-title h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-trust{
        justify-content:center;
        flex-wrap:wrap;
    }

    .trust-grid,
    .benefits-grid,
    .testimonial-grid,
    .ingredient-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:36px;
    }

    .section-title h2{
        font-size:28px;
    }

    .franchise-content h2,
    .order-banner h2{
        font-size:32px;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-trust{
        gap:20px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}