/* BLOG PAGE LAYOUT */

.blog-page-layout{

max-width:1100px;
margin:auto;

display:grid;

grid-template-columns:2.3fr 1fr;

gap:60px;

padding:60px 0;

}


/* BLOG TITLE */

.blog-title{

font-size:38px;
font-weight:700;
line-height:1.3;

margin-bottom:15px;

position:relative;

padding-bottom:12px;

}

.blog-title::after{

content:"";

width:120px;
height:4px;

background:#ff6a00;

position:absolute;

left:0;
bottom:0;

}


/* META INFO */

.blog-meta{

font-size:16px;
color:#666;

margin-bottom:25px;

display:flex;

gap:30px;

}


/* MAIN IMAGE */

.blog-main-image{

width:100%;

border-radius:10px;

margin-bottom:30px;

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

}


/* BLOG TEXT */

.blog-main-content p{

font-size:16px;

line-height:1.8;

color:#444;


}


/* BLOG SUB HEADINGS */

.blog-main-content h2{

font-size:24px;

margin-top:35px;

margin-bottom:10px;

color:#111;

}


/* PRODUCT HEADER */

.category-header{

font-size:22px;

font-weight:600;

margin-bottom:20px;

position:relative;

padding-bottom:10px;

}

.category-header::after{

content:"";

width:70px;

height:3px;

background:#ff7834;

position:absolute;

left:0;

bottom:0;

}


/* PRODUCT LINKS */

.nav-category-list{

list-style:none;

padding:0;

margin:0;

}


.nav-category-list a{

text-decoration:none;

}


.nav-category-item{

padding:13px 0;

border-bottom:1px solid #e6e6e6;

font-size:15px;

color:#333;

transition:0.3s;

}


.nav-category-item:hover{

color:#ff7834;

padding-left:6px;

}


.active-product-menu{

color:#ff7834;

font-weight:600;

}


/* LETS CONNECT */

.inquiry-connect-panel{

background:#f3f3f3;

padding:28px;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

}


.connect-headline{

font-size:22px;

font-weight:600;

margin-bottom:20px;

position:relative;

padding-bottom:10px;

}

.connect-headline::after{

content:"";

width:70px;

height:3px;

background:#ff7834;

position:absolute;

left:0;

bottom:0;

}


/* CONTACT ITEMS */

.touchpoint-element{

display:flex;

align-items:center;

gap:12px;

margin-bottom:15px;

text-decoration:none;

color:#333;

font-size:15px;

transition:0.3s;

}


.touchpoint-element:hover{

color:#ff7834;

}


/* ICON CIRCLE */

.touchpoint-icon{

width:42px;

height:42px;

background:#ff7834;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:18px;

}


/* BROCHURE BUTTON */

.catalog-fetch-button{

display:block;

margin-top:20px;

padding:13px;

text-align:center;

background:#ff7834;

color:white;

border-radius:6px;

font-weight:600;

text-decoration:none;

transition:0.3s;

}

.catalog-fetch-button:hover{

background:#e5671f;

}
/* ==========================
   SIDEBAR
========================== */

.blog-sidebar{
    position:sticky;
    top:100px; /* navbar ke niche */
    height:fit-content;
}

/* Tab Container */

.prod-des-container{
    width:100%;
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:0;
}

.layout-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    width:100%;
}

/* Sticky Sidebar */

.stiky-sidebar{
    position:sticky;
    top:100px; /* sticky yahi se hoga */

    display:flex;
    flex-direction:column;
    gap:30px;

    height:fit-content;
    width:320px;
    min-width:320px;
}

/* Products section */

.prod-des-sidebar{
    background-color:#f8f8f8;
    border-radius:12px;
    padding:25px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:transform .3s ease;
}

.prod-des-sidebar:hover{
    transform:translateY(-5px);
}
.inquiry-connect-panel {
    flex: 1;
    min-width: 280px;
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.catalog-fetch-button {
    display: inline-block;
    background-color: #ff7834;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(255, 127, 0, 0.2);
}
.pullquote {
    border-left: 4px solid #ff5e00;
    background: var(--paper-warm);
    padding: 28px 32px;
    margin: 40px 0;
    font-family: 'Playfair Display', serif,;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink-light);
    line-height: 1.55;
    color: #ff5e00;
}
.table-wrap {
    overflow-x: auto;
    margin: 32px 0;
}
thead th {
    padding: 14px 16px;
    text-align: left;
    font-family: 'Source Serif 4', ;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
     color: #ff5e00;
}
tbody td:first-child {
    font-weight: 600;
    color: var(--accent);
    font-family: 'Playfair Display', ;
}
.callout {
    background: var(--highlight);
    border: 1px solid  #ff5e00;
    border-radius: 2px;
    padding: 24px 28px;
    margin: 36px 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-light);
}
.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}
.model-card {
    border: 1px solid #ff6f00;
    background: #fff;
    padding: 24px;
    position: relative;
    transition: box-shadow 0.2s;
}
.model-card .model-name {
    font-family: 'Playfair Display',;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 4px;
}
.model-card .model-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--caption);
    margin-bottom: 16px;
    display: block;
}
.model-card {
    border: 1px solid var(--rule);
    background: #fff;
    padding: 24px;
    position: relative;
    transition: box-shadow 0.2s;
}
.model-card .model-name {
    font-family: 'Playfair Display',;
    font-size: 1.4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 4px;
}
.model-card .model-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff6f00;
    margin-bottom: 16px;
    display: block;
}
.model-card .stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid #656565;
    font-size: 0.88rem;
}
/* CTA BOX */

.blog-cta{
    background:#fff7f2;
    border-left:5px solid #ff5e00;
    padding:30px;
    border-radius:12px;
    margin:40px 0;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.blog-cta h3{
    font-size:28px;
    color:#111;
    margin-bottom:12px;
    margin-top:0;
}

.blog-cta p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.cta-btn{
    display:inline-block;
    background:#ff5e00;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s ease;
}

.cta-btn:hover{
    background:#e65300;
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

    .blog-cta{
        padding:20px;
    }

    .blog-cta h3{
        font-size:22px;
    }

    .cta-btn{
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }
}
.faq-section{
    margin-top:40px;
}

.faq-section h3{
    font-size:22px;
    margin:25px 0 10px;
    color:#111;
}

.faq-section p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 992px){

    .blog-page-layout{
        grid-template-columns:1fr;
        gap:30px;
        padding:30px 15px;
    }

    .stiky-sidebar,
    .blog-sidebar{
        position:static !important;
        width:100%;
        min-width:100%;
        margin-top:0;
    }

    .layout-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .prod-des-container{
        flex-direction:column;
    }

    .prod-des-sidebar,
    .inquiry-connect-panel{
        width:100%;
        min-width:100%;
    }

    .blog-title{
        font-size:30px;
    }

    .blog-meta{
        flex-wrap:wrap;
        gap:10px;
        font-size:14px;
    }

    .blog-main-content h2{
        font-size:22px;
    }

    .blog-main-content p{
        font-size:16px;
        line-height:1.8;
    }

    .blog-main-image{
        width:100%;
        height:auto;
    }

    .model-grid{
        grid-template-columns:1fr;
    }

    .table-wrap{
        overflow-x:auto;
    }
}

@media screen and (max-width:768px){

    .blog-page-layout{
        padding:20px 12px;
        margin-top: 40px;
    }

    .blog-title{
        font-size:26px;
    }

    .blog-title::after{
        width:80px;
    }

    .blog-main-content h2{
        font-size:20px;
    }

    .blog-main-content p{
        font-size:15px;
        text-align:left;
    }

    .pullquote{
        padding:20px;
        font-size:18px;
    }

    .callout{
        padding:18px;
    }

    .blog-cta{
        padding:20px;
    }

    .blog-cta h3{
        font-size:22px;
    }

    .cta-btn{
        width:100%;
        text-align:center;
        display:block;
    }

    .catalog-fetch-button{
        width:100%;
        box-sizing:border-box;
    }

    .touchpoint-element{
        font-size:14px;
        word-break:break-word;
    }

    .category-header,
    .connect-headline{
        font-size:20px;
    }

    .faq-section h3{
        font-size:18px;
    }

    .faq-section p{
        font-size:15px;
    }
}

@media screen and (max-width:480px){

    .blog-title{
        font-size:22px;
        line-height:1.4;
    }

    .blog-main-content p{
        font-size:14px;
    }

    .blog-main-content h2{
        font-size:18px;
    }

    .pullquote{
        font-size:16px;
        padding:16px;
    }

    .model-card{
        padding:16px;
    }

    .model-card .model-name{
        font-size:20px;
    }

    .blog-cta h3{
        font-size:20px;
    }
}