/*==================================================
ORIQO FOODS
style.css
Page 3B
==================================================*/

/*==========================
ABOUT SECTION
==========================*/

.about{
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-content h3{
    font-size:36px;
    color:var(--primary);
    margin-bottom:20px;
}

.about-content p{
    color:var(--text);
    margin-bottom:20px;
    line-height:1.8;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    padding:12px 0;
    color:#444;
    font-weight:500;
}

.about-list li i{
    color:var(--secondary);
    margin-right:12px;
}

/*==========================
PRODUCTS
==========================*/

.products{
    background:var(--gray);
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.product-image{
    height:240px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-content h3{
    color:var(--primary);
    margin-bottom:12px;
}

.product-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
}

.product-btn{
    display:inline-block;
    padding:12px 25px;
    background:var(--secondary);
    color:#111;
    border-radius:30px;
    font-weight:600;
}

/*==========================
WHY CHOOSE US
==========================*/

.why-us{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-box:hover{
    background:var(--primary);
    color:#fff;
}

.why-box i{
    font-size:50px;
    color:var(--secondary);
    margin-bottom:20px;
}

.why-box h4{
    margin-bottom:15px;
    font-size:22px;
}

.why-box p{
    line-height:1.7;
}

/*==========================
MANUFACTURING PROCESS
==========================*/

.process{
    background:var(--gray);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-card span{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    background:var(--secondary);
    color:#111;
    border-radius:50%;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.process-card h4{
    color:var(--primary);
    margin-bottom:12px;
}

.process-card p{
    color:#666;
}

/*==========================
STATISTICS
==========================*/

.stats{
    background:var(--primary);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-item{
    text-align:center;
}

.stat-item h2{
    color:var(--secondary);
    font-size:58px;
    font-weight:800;
}

.stat-item p{
    margin-top:10px;
    font-size:18px;
}

/*==========================
CONTACT
==========================*/

.contact{
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info{
    padding:20px;
}

.contact-info h3{
    color:var(--primary);
    margin-bottom:20px;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:var(--secondary);
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:22px;
}

.contact-item h4{
    margin-bottom:6px;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:18px;
    outline:none;
    font-size:15px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    border:none;
    background:var(--secondary);
    color:#111;
    padding:15px 35px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
}

/*==========================
FOOTER
==========================*/

footer{
    background:#111;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-logo img{
    height:80px;
    margin-bottom:20px;
}

.footer-title{
    color:var(--secondary);
    margin-bottom:20px;
}

.footer-links a{
    display:block;
    color:#ddd;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:8px;
}

.footer-contact p{
    margin-bottom:15px;
    color:#ddd;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:var(--secondary);
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#bbb;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.about-wrapper,
.contact-wrapper{
    grid-template-columns:1fr;
}

.about-content{
    order:2;
}

.about-image{
    order:1;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:576px){

.product-grid,
.process-grid,
.stats-grid,
.why-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:25px;
}

.stat-item h2{
    font-size:42px;
}

.about-content h3{
    font-size:28px;
}

}