/*==========================================================
Forno Sethi Resources
Commercial Pizza Oven Consultation
Hero Section
==========================================================*/

:root{

    --fs-primary:#f58220;
    --fs-dark:#111111;
    --fs-text:#555555;
    --fs-light:#fafafa;
    --fs-white:#ffffff;
    --fs-border:#e8e8e8;

}

/*=========================================
Hero
==========================================*/

.fs-resource-hero{

    position:relative;

    background:#fafafa;

    padding:110px 0;

    overflow:hidden;

}

/* Orange Glow */

.fs-resource-hero::before{

    content:'';

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    top:-180px;

    background:radial-gradient(circle,
    rgba(245,130,32,.12),
    rgba(245,130,32,0));

    border-radius:50%;

    z-index:0;

}

.fs-resource-content{

    position:relative;

    z-index:5;

}

.fs-resource-image{

    position:relative;

    z-index:5;

    text-align:right;

}

.fs-resource-image img{

    width:100%;

    max-width:620px;

    border-radius:18px;

    display:block;

    margin-left:auto;

}

/*=========================================
Breadcrumb
==========================================*/

.fs-breadcrumb{

    margin-bottom:22px;

    font-size:14px;

    color:#888;

}

.fs-breadcrumb a{

    color:#888;

    text-decoration:none;

    transition:.3s;

}

.fs-breadcrumb a:hover{

    color:var(--fs-primary);

}

.fs-breadcrumb span{

    margin:0 10px;

}

/*=========================================
Badge
==========================================*/

.fs-resource-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid rgba(245,130,32,.25);

    background:#fff;

    color:var(--fs-primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:28px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

/*=========================================
Heading
==========================================*/

.fs-resource-content h1{

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    color:#111;

    margin-bottom:18px;

}

.fs-resource-content h2{

    font-size:27px;

    font-weight:600;

    line-height:1.45;

    color:#333;

    margin-bottom:28px;

}

.fs-resource-content p{

    font-size:18px;

    line-height:34px;

    color:#666;

    margin-bottom:38px;

    max-width:620px;

}

/*=========================================
Buttons
==========================================*/

.fs-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.fs-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 34px;

    background:var(--fs-primary);

    color:#fff;

    font-size:16px;

    font-weight:700;

    border-radius:8px;

    text-decoration:none;

    transition:.35s;

}

.fs-btn-primary:hover{

    background:#111;

    color:#fff;

    transform:translateY(-3px);

    text-decoration:none;

}

.fs-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 34px;

    border:2px solid #111;

    color:#111;

    font-size:16px;

    font-weight:700;

    border-radius:8px;

    text-decoration:none;

    transition:.35s;

}

.fs-btn-outline:hover{

    background:#111;

    color:#fff;

    transform:translateY(-3px);

    text-decoration:none;

}

/*=========================================
Trust Cards
==========================================*/

.fs-hero-features{

    display:grid;

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

    gap:18px;

}

.fs-hero-features div{

    background:#fff;

    padding:18px 22px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    color:#333;

    border:1px solid #eee;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.fs-hero-features div:hover{

    transform:translateY(-5px);

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

}

/*=========================================
Floating Cards
==========================================*/

.fs-resource-image{

    position:relative;

}

.fs-floating-card{

    position:absolute;

    background:#fff;

    padding:14px 20px;

    border-radius:12px;

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

    font-size:15px;

    font-weight:700;

    color:#222;

}

.fs-floating-top{

    top:40px;

    left:-40px;

}

.fs-floating-middle{

    right:-30px;

    top:50%;

    transform:translateY(-50%);

}

.fs-floating-bottom{

    bottom:30px;

    left:-20px;

}

/*=========================================
Responsive
==========================================*/

@media(max-width:1199px){

.fs-resource-content h1{

font-size:48px;

}

}

@media(max-width:991px){

.fs-resource-hero{

padding:90px 0;

}

.fs-resource-content{

text-align:center;

}

.fs-resource-content p{

margin-left:auto;

margin-right:auto;

}

.fs-hero-buttons{

justify-content:center;

}

.fs-resource-image{

margin-top:60px;

text-align:center;

}

.fs-resource-image img{

margin:auto;

max-width:520px;

}

.fs-hero-features{

grid-template-columns:1fr 1fr;

}

.fs-floating-card{

display:none;

}

}

@media(max-width:767px){

.fs-resource-content h1{

font-size:36px;

}

.fs-resource-content h2{

font-size:22px;

}

.fs-resource-content p{

font-size:16px;

line-height:30px;

}

.fs-btn-primary,

.fs-btn-outline{

width:100%;

}

.fs-hero-features{

grid-template-columns:1fr;

}

}

/*==================================================
Problem Section
===================================================*/

.fs-problem-section{

    padding:110px 0;

    background:#ffffff;

}

.fs-section-heading{

    margin-bottom:70px;

}

.fs-section-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:#fff7f0;

    color:#f58220;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.fs-section-heading h2{

    font-size:46px;

    font-weight:800;

    line-height:1.25;

    color:#111;

    margin-bottom:25px;

}

.fs-section-heading p{

    max-width:820px;

    margin:auto;

    font-size:18px;

    line-height:32px;

    color:#666;

}

.fs-question-card{

    background:#fafafa;

    border:1px solid #eee;

    border-radius:18px;

    padding:35px;

}

.fs-question-item{

    padding:18px 0;

    border-bottom:1px solid #ececec;

    font-size:17px;

    color:#333;

    font-weight:600;

}

.fs-question-item:last-child{

    border:none;

}

.fs-solution-card{

    background:#111;

    color:#fff;

    border-radius:18px;

    padding:45px;

    margin-left:30px;

}

.fs-solution-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#f58220;

    font-size:13px;

    font-weight:700;

    margin-bottom:25px;

}

.fs-solution-card h3{

    font-size:34px;

    line-height:1.35;

    margin-bottom:25px;

    color:#fff;

    font-weight:700;

}

.fs-solution-card p{

    font-size:17px;

    line-height:30px;

    color:#d8d8d8;

    margin-bottom:30px;

}

.fs-solution-card ul{

    padding:0;

    margin:0 0 35px;

    list-style:none;

}

.fs-solution-card ul li{

    margin-bottom:14px;

    font-size:16px;

    color:#f4f4f4;

}

.fs-solution-card .fs-btn-primary{

    width:100%;

    justify-content:center;

}

@media(max-width:991px){

.fs-solution-card{

margin-left:0;

margin-top:40px;

}

}

@media(max-width:767px){

.fs-problem-section{

padding:80px 0;

}

.fs-section-heading h2{

font-size:34px;

}

.fs-question-card{

padding:25px;

}

.fs-solution-card{

padding:30px;

}

.fs-solution-card h3{

font-size:28px;

}

}

/*==================================================
Business Planning Tools
===================================================*/

.fs-tools-section{

padding:110px 0;

background:#fafafa;

}

.fs-tool-card{

background:#fff;

border-radius:18px;

padding:40px 30px;

height:100%;

text-align:center;

border:1px solid #eee;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.fs-tool-card:hover{

transform:translateY(-8px);

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

}

.fs-tool-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#fff7f0;

font-size:34px;

color:#f58220;

}

.fs-tool-card h3{

font-size:26px;

font-weight:700;

margin-bottom:20px;

color:#111;

}

.fs-tool-card p{

font-size:16px;

line-height:30px;

color:#666;

margin-bottom:28px;

}

.fs-tool-card a{

display:inline-block;

font-weight:700;

font-size:16px;

color:#f58220;

text-decoration:none;

transition:.3s;

}

.fs-tool-card a:hover{

letter-spacing:.5px;

}

@media(max-width:991px){

.fs-tool-card{

margin-bottom:30px;

}

}
/*==================================================
Consultation Process
===================================================*/

.fs-process-section{

    padding:110px 0;

    background:#fff;

}

.fs-process-card{

    position:relative;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:35px;

    margin-bottom:30px;

    transition:.35s;

    height:100%;

}

.fs-process-card:hover{

    transform:translateY(-8px);

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

}

.fs-step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff7f0;

    color:#f58220;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:800;

    margin-bottom:25px;

}

.fs-process-card h3{

    font-size:24px;

    font-weight:700;

    color:#111;

    margin-bottom:18px;

}

.fs-process-card p{

    font-size:16px;

    line-height:30px;

    color:#666;

    margin:0;

}

@media(max-width:991px){

.fs-process-card{

margin-bottom:30px;

}

}

/*==================================================
Consultation Benefits
===================================================*/

.fs-benefits-section{

padding:110px 0;

background:#fafafa;

}

.fs-benefit-card{

background:#fff;

padding:35px;

border-radius:18px;

height:100%;

border:1px solid #ececec;

transition:.35s;

margin-bottom:30px;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.fs-benefit-card:hover{

transform:translateY(-8px);

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

}

.fs-benefit-icon{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

background:#fff7f0;

border-radius:50%;

margin-bottom:25px;

font-size:30px;

color:#f58220;

}

.fs-benefit-card h3{

font-size:25px;

font-weight:700;

margin-bottom:18px;

color:#111;

}

.fs-benefit-card p{

font-size:16px;

line-height:30px;

color:#666;

margin:0;

}

@media(max-width:991px){

.fs-benefit-card{

margin-bottom:30px;

}

}

/*==================================================
Industries Section
===================================================*/

.fs-industries-section{

    padding:110px 0;

    background:#ffffff;

}

.fs-industry-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    margin-bottom:30px;

}

.fs-industry-card:hover{

    transform:translateY(-8px);

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

}

.fs-industry-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fff7f0;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#f58220;

    font-size:32px;

}

.fs-industry-card h3{

    font-size:24px;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

.fs-industry-card p{

    font-size:16px;

    line-height:28px;

    color:#666;

    margin:0;

}

@media(max-width:991px){

    .fs-industry-card{

        margin-bottom:30px;

    }

}

/*==================================================
Why Choose Forno Sethi
===================================================*/

.fs-why-section{

    padding:110px 0;

    background:#fafafa;

}

.fs-why-image img{

    width:100%;

    border-radius:18px;

    display:block;

}

.fs-why-content{

    padding-left:35px;

}

.fs-why-content h2{

    font-size:46px;

    font-weight:800;

    line-height:1.25;

    color:#111;

    margin:20px 0 25px;

}

.fs-why-content p{

    font-size:17px;

    line-height:31px;

    color:#666;

    margin-bottom:35px;

}

.fs-why-item{

    display:flex;

    align-items:flex-start;

    margin-bottom:28px;

}

.fs-why-item i{

    color:#f58220;

    font-size:28px;

    margin-right:18px;

    margin-top:5px;

}

.fs-why-item h4{

    font-size:22px;

    font-weight:700;

    color:#111;

    margin-bottom:8px;

}

.fs-why-item p{

    margin:0;

    font-size:16px;

    line-height:28px;

}

@media(max-width:991px){

.fs-why-content{

padding-left:0;

margin-top:50px;

}

}

/*==================================================
Projects Section
===================================================*/

.fs-projects-section{

    padding:110px 0;

    background:#ffffff;

}

.fs-project-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.fs-project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.fs-project-image{

    overflow:hidden;

}

.fs-project-image img{

    width:100%;

    transition:.5s;

    display:block;

}

.fs-project-card:hover img{

    transform:scale(1.05);

}

.fs-project-content{

    padding:30px;

}

.fs-project-location{

    display:inline-block;

    color:#f58220;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;

}

.fs-project-content h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    color:#111;

}

.fs-project-model{

    font-size:16px;

    color:#444;

    margin-bottom:18px;

}

.fs-project-content p{

    font-size:16px;

    line-height:30px;

    color:#666;

    margin:0;

}

.fs-project-btn{

    margin-top:50px;

}

@media(max-width:991px){

.fs-project-card{

margin-bottom:30px;

}

}

/*==================================================
Consultation Form
===================================================*/

.fs-contact-section{

padding:110px 0;

background:#fafafa;

}

.fs-contact-content{

padding-right:40px;

}

.fs-contact-content h2{

font-size:46px;

font-weight:800;

line-height:1.25;

margin:20px 0 25px;

}

.fs-contact-content p{

font-size:17px;

line-height:31px;

color:#666;

margin-bottom:35px;

}

.fs-contact-item{

display:flex;

margin-bottom:30px;

}

.fs-contact-item i{

width:60px;

height:60px;

border-radius:50%;

background:#fff7f0;

display:flex;

align-items:center;

justify-content:center;

color:#f58220;

font-size:22px;

margin-right:18px;

flex-shrink:0;

}

.fs-contact-item h4{

font-size:21px;

font-weight:700;

margin-bottom:5px;

color:#111;

}

.fs-contact-item p{

margin:0;

font-size:16px;

line-height:28px;

}

.fs-contact-form{

background:#fff;

padding:45px;

border-radius:20px;

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

}

.fs-contact-form input,

.fs-contact-form select,

.fs-contact-form textarea{

width:100%;

height:58px;

border:1px solid #ddd;

border-radius:8px;

padding:0 18px;

margin-bottom:22px;

font-size:16px;

outline:none;

transition:.3s;

}

.fs-contact-form textarea{

height:170px;

padding-top:18px;

resize:none;

}

.fs-contact-form input:focus,

.fs-contact-form select:focus,

.fs-contact-form textarea:focus{

border-color:#f58220;

}

.fs-contact-form button{

border:none;

cursor:pointer;

width:100%;

}

@media(max-width:991px){

.fs-contact-content{

padding-right:0;

margin-bottom:50px;

}

.fs-contact-form{

padding:30px;

}

}

/*==================================================
Knowledge Center FAQ
==================================================*/

.fs-faq-category{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.fs-category-title{
    background:#111;
    padding:30px 35px;
}

.fs-category-title h3{
    margin:0 0 10px;
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.fs-category-title p{
    margin:0;
    color:#d7d7d7;
    font-size:16px;
    line-height:28px;
}

/*====================================*/

.fs-faq-item{
    border-bottom:1px solid #ececec;
}

.fs-faq-item:last-child{
    border-bottom:none;
}

/*====================================*/

.fs-faq-question{

    width:100%;

    background:#fff;

    border:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    transition:.3s;

}

.fs-faq-question:hover{

    background:#fff8f2;

}

.fs-faq-question span:first-child{

    width:90%;

    text-align:left;

    font-size:21px;

    line-height:32px;

    font-weight:700;

    color:#111;

}

/*====================================*/

.fs-faq-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#f58220;

    position:relative;

    flex-shrink:0;

    transition:.3s;

}

.fs-faq-icon::before{

    content:"+";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    font-size:30px;

    font-weight:700;

    line-height:1;

}

.fs-faq-item.active .fs-faq-icon{

    background:#111;

}

.fs-faq-item.active .fs-faq-icon::before{

    content:"−";

}

/*====================================*/

.fs-faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 30px;

    transition:max-height .45s ease,padding .35s ease;

}

.fs-faq-item.active .fs-faq-answer{

    max-height:1000px;

    padding:0 30px 30px;

}

.fs-faq-answer p{

    margin:0 0 20px;

    color:#555;

    font-size:17px;

    line-height:32px;

}

/*====================================*/

.fs-related-tools{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:20px;

}

.fs-related-tools a{

    padding:10px 18px;

    border-radius:40px;

    background:#fff7f0;

    border:1px solid #ffd7b6;

    color:#f58220;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.fs-related-tools a:hover{

    background:#f58220;

    color:#fff;

}

/*====================================*/

@media(max-width:767px){

.fs-category-title{

padding:22px;

}

.fs-category-title h3{

font-size:24px;

}

.fs-faq-question{

padding:18px;

align-items:flex-start;

}

.fs-faq-question span:first-child{

font-size:18px;

line-height:28px;

padding-right:15px;

}

.fs-faq-icon{

width:36px;

height:36px;

}

.fs-faq-answer{

padding:0 20px;

}

.fs-faq-item.active .fs-faq-answer{

padding:0 20px 20px;

}

.fs-faq-answer p{

font-size:15px;

line-height:28px;

}

.fs-related-tools{

flex-direction:column;

}

.fs-related-tools a{

width:100%;

text-align:center;

justify-content:center;

}

}

/*=========================================
Knowledge Center Section (added for consistency)
==========================================*/

.fs-knowledge-section{

    padding:110px 0;

    background:#fafafa;

}

.fs-knowledge-footer{

    background:#ffffff;

    border:1px solid var(--fs-border);

    border-radius:16px;

    padding:50px 40px;

    margin-top:50px;

}

.fs-knowledge-buttons{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:24px;

}
