/* ===========================================
   FOODREVIEW+ ABOUT PAGE
===========================================*/

body{
    margin:0;
    padding:0;
    background:#f4f6f9;
    font-family:'Poppins',sans-serif;
    color:#222;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* ===========================================
   HERO
===========================================*/

.about-hero{

    position:relative;

    height:450px;

    padding-top:90px;

    background:url('../images/about-banner.jpg') center center;

    background-size:cover;

    display:flex;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.75)
    );

}

.hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
    color:#fff;

    padding-top:300px;
}

.hero-badge{

    display:inline-block;

    background:#E50914;

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

    letter-spacing:1px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

    color:#eee;

}

.hero-btn{

    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    background:#E50914;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    background:#b6060f;

    transform:translateY(-3px);

    color:#fff;

}

/* ===========================================
   ABOUT
===========================================*/

.about-section{

    background:#fff;

}

.about-section p{

    font-size:18px;

    line-height:2;

}

/* ===========================================
   FEATURE
===========================================*/

.feature-section{

    background:#f8f9fb;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-icon{

    font-size:56px;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}

/* ===========================================
   VISION
===========================================*/

.vision-section{

    background:#fff;

}

.vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.vision-box{

    background:#fafafa;

    border-radius:20px;

    padding:40px;

    border-left:5px solid #E50914;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.vision-box h2{

    margin-bottom:20px;

}

.vision-box p{

    line-height:1.9;

    color:#555;

}

.vision-box ul{

    margin:0;

    padding-left:20px;

}

.vision-box li{

    margin-bottom:15px;

    color:#555;

}

/* ===========================================
   STATS
===========================================*/

.stats-section{

    background:#E50914;

    color:#fff;

}

.stats-section h2{

    text-align:center;

    margin-bottom:60px;

    font-size:42px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    background:rgba(255,255,255,.08);

    border-radius:18px;

    padding:40px 20px;

    backdrop-filter:blur(8px);

}

.counter{

    display:block;

    font-size:52px;

    font-weight:700;

    margin-bottom:15px;

}

.stat-card small{

    font-size:18px;

    color:#fff;

}

/* ===========================================
   SIMPLE FADE ANIMATION
===========================================*/

.feature-card,
.vision-box,
.stat-card{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ===========================================
   OUR TEAM
===========================================*/

.team-section{
    background:#ffffff;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:35px 25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.team-photo{
    width:120px;
    height:120px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#E50914,#ff5858);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:55px;
    color:#fff;
}

.team-card h3{
    margin-bottom:8px;
    font-size:24px;
}

.team-card span{
    display:block;
    color:#E50914;
    font-weight:600;
    margin-bottom:18px;
}

.team-card p{
    color:#666;
    line-height:1.8;
}

/* ===========================================
   WHY CHOOSE
===========================================*/

.why-section{
    background:#f8f9fb;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#E50914;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.why-item h3{
    margin-bottom:10px;
}

.why-item p{
    color:#666;
    line-height:1.8;
}

/* ===========================================
   CORE VALUES
===========================================*/

.value-section{
    background:#fff;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-card{
    background:#fafafa;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    border-top:5px solid #E50914;
}

.value-card:hover{
    background:#E50914;
    color:#fff;
    transform:translateY(-8px);
}

.value-card:hover p{
    color:#fff;
}

.value-card h3{
    margin-bottom:20px;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

/* ===========================================
   CONTACT
===========================================*/

.contact-section{
    background:#f8f9fb;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.contact-grid>div{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-grid h3{
    margin-bottom:15px;
    color:#E50914;
}

.contact-grid p{
    color:#666;
    line-height:1.8;
}

/* ===========================================
   CTA
===========================================*/

.cta-section{
    background:linear-gradient(135deg,#E50914,#b6060f);
    color:#fff;
    text-align:center;
}

.cta-section h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:800px;
    margin:0 auto 40px;
    line-height:2;
    font-size:18px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#E50914;
    padding:18px 45px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    background:#222;
    color:#fff;
    transform:translateY(-4px);
}

/* ===========================================
   RESPONSIVE
===========================================*/

@media(max-width:1200px){

.feature-grid,
.team-grid,
.value-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:992px){

.hero-content h1{
    font-size:48px;
}

.hero-content p{
    font-size:17px;
}

.vision-grid,
.why-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about-hero{
    position:relative;
    min-height:750px;
    padding-top:120px;
    display:flex;
    align-items:center;
    background:url('../images/about-banner.jpg') center center/cover no-repeat;
}

.about-hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:720px;
    position:relative;
    z-index:2;
    margin-top:60px;
    padding-top:0;
}

.hero-content h1{
    margin:0 0 25px 0;
    font-size:64px;
    line-height:1.2;
}
.hero-content p{
    font-size:15px;
}

.feature-grid,
.team-grid,
.value-grid,
.contact-grid,
.stats-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

.cta-section h2{
    font-size:34px;
}

.counter{
    font-size:42px;
}

.team-photo{
    width:95px;
    height:95px;
    font-size:42px;
}

}

@media(max-width:576px){

section{
    padding:60px 0;
}

.hero-btn,
.cta-btn{
    width:100%;
    text-align:center;
}

.hero-content{
    text-align:center;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    line-height:1.8;
}

}
