:root{

    --primary:#16A5E8;
    --primary-dark:#0B88C5;
    --accent:#FF1E2D;
    --dark:#1E293B;
    --border:#E5E7EB;
    --white:#FFFFFF;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



.page-section{
    padding:100px 0;
    min-height:500px;
}

.page-section h1{
    font-size:42px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
}

.page-section p{
    font-size:18px;
    color:#64748B;
}



body{

    font-family:'Inter',sans-serif;
    font-size:18px;
    line-height:1.8;
    color:var(--dark);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* BOOTSTRAP CONTAINER */

.container{
    max-width:1320px;
}

/* =========================
   TOP BAR
========================= */

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:10px 0;
}

.top-bar-inner{

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.top-info{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:600;
}

.top-info i{

    font-size:14px;
    line-height:1;
}

.mobile-trust{

    display:none;
}

/* TOP RIGHT */

.top-right{

    display:flex;
    align-items:center;
    gap:18px;
}

/* EMAIL */

.top-email a{

    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-weight:600;
}

.top-email i{

    font-size:14px;
    line-height:1;
}

/* LANGUAGE SWITCHER */

.language-switcher{

    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
}

.language-switcher a{

    color:#fff;
    transition:.3s ease;
}

.language-switcher a:hover{

    opacity:.85;
}

.language-switcher .active{

    background:rgba(229,57,53,.18);
    border:1px solid rgba(255,255,255,.15);
    padding:3px 8px;
    border-radius:20px;
    font-weight:700;
}

/* =========================
   HEADER
========================= */

.main-header{

    background:#fff;
    border-bottom:1px solid var(--border);

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 2px 15px rgba(0,0,0,.04);
}

.navbar{

    min-height:100px;
    padding:0;
}

.navbar-collapse{

    justify-content:flex-end;
}

/* LOGO */

.navbar-brand{

    display:flex;
    align-items:center;
    margin:0;
    padding:0;
}

.navbar-brand img{

    height:78px;
    width:auto;
    display:block;
}

/* MENU */

.navbar-nav{

    gap:18px;
}

.nav-link{

    color:var(--dark);
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
    padding:0 !important;
    transition:.3s ease;
}

.nav-link{
    position:relative;
}

.nav-link:hover{
    color:#E53935;
}

.nav-link.active{
    color:#E53935;
    font-weight:700;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#E53935;
    transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* CTA BUTTON */

.quote-btn{

    margin-left:24px;

    background:var(--primary);
    color:#fff;

    border:none;
    border-radius:10px;

    padding:14px 24px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-height:54px;

    font-weight:700;
    white-space:nowrap;

    box-shadow:0 10px 25px rgba(22,165,232,.20);

    transition:.3s ease;
}

.quote-btn:hover{

    background:var(--primary-dark);
    color:#fff;
}

.quote-btn i{

    font-size:16px;
}

/* TOGGLER */

.navbar-toggler{

    border:none;
    box-shadow:none !important;
    padding:0;
}

.navbar-toggler i{

    font-size:34px;
    color:var(--dark);
}

/* =========================
   MOBILE
========================= */

@media(max-width:1199px){

     .nav-link.active{
        color:#E53935;
    }

    .desktop-trust{
        display:none;
    }

    .mobile-trust{
        display:inline;
    }

    .top-bar-inner{

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:6px;

        text-align:center;
    }

    .top-email{
        display:none;
    }

    .top-right{

        display:flex;

        justify-content:center;

        align-items:center;

        margin-top:4px;

        gap:15px;
    }

    .language-switcher{

        font-size:13px;
    }

    .navbar{

        min-height:80px;

        padding:12px 0;
    }

    .navbar-brand img{

        height:68px;
    }

    .navbar-collapse{

        margin-top:20px;

        border-top:1px solid var(--border);

        padding-top:20px;
    }

    .navbar-nav{

        gap:0;
    }

    .nav-link{

        display:block;

        padding:14px 0 !important;

        border-bottom:1px solid #F1F5F9;

        font-size:17px;
    }

    .quote-btn{

        width:100%;

        margin:20px 0 0 0;
    }
}

/* SMALL MOBILE */

@media(max-width:575px){

    .navbar-brand img{

        height:60px;
    }

    .mobile-trust{

        font-size:13px;
    }

    .language-switcher{

        font-size:12px;
    }
}



.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

.goog-logo-link{
    display:none !important;
}

.goog-te-gadget{
    font-size:0 !important;
}

body{
    top:0 !important;
}



/* ===================================================
   COMMON CONTAINER FIX
=================================================== */

.container-custom{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}

@media(max-width:767px){
    .container-custom{
        padding-left:18px;
        padding-right:18px;
    }
}




/* ===================================================
FOOTER CTA
=================================================== */

.footer-cta{
padding:80px 0 40px;
background:#fff;
}

.footer-cta-box{
background:linear-gradient(
135deg,
#16A5E8 0%,
#0B88C5 100%
);
border-radius:24px;
padding:60px 40px;
text-align:center;
color:#fff;
box-shadow:0 20px 60px rgba(22,165,232,.18);

}

.footer-cta-box h2{
font-size:34px;
font-weight:800;
margin-bottom:15px;
line-height:1.3;
}

.footer-cta-box p{
max-width:850px;
margin:0 auto 30px;
font-size:18px;
line-height:1.8;
}

.footer-cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.footer-btn-primary,
.footer-btn-secondary{
padding:14px 28px;
border-radius:10px;
font-weight:700;
}

.footer-btn-primary{
    background:#E53935;
    color:#fff;
}

.footer-btn-primary:hover{
    background:#D32F2F;
    color:#fff;
}

.cta-highlight{
    color:#FFD6D4;
    position:relative;
}

.cta-highlight::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:rgba(255,255,255,.35);
    border-radius:50px;
}

.footer-btn-secondary{
background:rgba(255,255,255,.15);
color:#fff;
border:1px solid rgba(255,255,255,.25);
}

/* ===================================================
MAIN FOOTER
=================================================== */

.main-footer{
background:linear-gradient(
135deg,
#F8FBFF 0%,
#EEF7FF 50%,
#FFFFFF 100%
);
padding:80px 0 60px;
}

.main-footer h4{
font-size:20px;
font-weight:700;
color:#E53935;
margin-bottom:25px;
}

.main-footer p{
color:#475569;
line-height:1.8;
margin-bottom:25px;
}

.footer-list,
.footer-links,
.footer-contact{
list-style:none;
padding:0;
margin:0;
}

.footer-list li,
.footer-contact li{
display:flex;
align-items:flex-start;
gap:10px;
margin-bottom:12px;
color:#475569;
line-height:1.7;
}

.footer-list i,
.footer-contact i{
color:#E53935;
flex-shrink:0;
}

.footer-links li{
margin-bottom:12px;
}

.footer-links a{
color:#475569;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#E53935;
padding-left:4px;
}

/* Japanese content wrapping */

.main-footer p,
.footer-links a,
.footer-list li,
.footer-contact li,
.trust-card span,
.social-text{
word-break:break-word;
overflow-wrap:anywhere;
}

/* ===================================================
TRUST SECTION
=================================================== */

.trust-strip{
background:#fff;
padding:20px 0 60px;
}

.trust-card{
background:#fff;
border:1px solid #E2E8F0;
border-radius:18px;
padding:25px;
text-align:center;
height:100%;
box-shadow:0 4px 20px rgba(0,0,0,.04);
transition:.3s;
}

.trust-card:hover{
transform:translateY(-5px);
border-color:rgba(229,57,53,.20);
}

.trust-card i{
display:block;
font-size:32px;
color:#E53935;
margin-bottom:15px;
}

.trust-card span{
font-weight:700;
color:#0F172A;
}

/* ===================================================
SOCIAL
=================================================== */

.social-strip{
background:linear-gradient(
135deg,
#E53935,
#FF5A4F
);
padding:50px 0;
text-align:center;
}

.social-strip h5{
color:#fff;
font-size:24px;
font-weight:700;
margin-bottom:12px;
}

.social-text{
color:rgba(255,255,255,.9);
max-width:750px;
margin:0 auto 30px;
}

.social-icons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.social-icons a{
width:54px;
height:54px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.15);
color:#fff;
font-size:22px;
transition:.3s;
}

.social-icons a:hover{
background:#fff;
color:#E53935;
transform:translateY(-4px);
}

/* ===================================================
COPYRIGHT
=================================================== */

.copyright{
background:#F8FAFC;
border-top:1px solid #E2E8F0;
padding:20px 0;
}

.copyright-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
font-size:15px;
color:#64748B;
}

.copyright a{
color:#64748B;
text-decoration:none;
transition:.3s;
}

.copyright a:hover

/* ===================================================
MOBILE
=================================================== */

@media(max-width:991px){

.footer-cta-box{
    padding:40px 25px;
}

.footer-cta-box h2{
    font-size:28px;
}

.footer-cta-buttons{
    flex-direction:column;
}

.footer-btn-primary,
.footer-btn-secondary{
    width:100%;
}

.copyright-inner{
    flex-direction:column;
    text-align:center;
}

}




/* ===================================================
   HERO SECTION
=================================================== */

.hero-section{
    padding:90px 0;
    background:linear-gradient(
        135deg,
        #F8FBFF 0%,
        #EEF7FF 50%,
        #FFFFFF 100%
    );
}

.hero-badge{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:12px;

     background:rgba(229,57,53,.08);
    color:#E53935;

    padding:14px 20px;
    border-radius:24px;

    font-weight:600;
    line-height:1.6;

    width:100%;
    max-width:420px;

    margin-bottom:25px;

    word-break:break-word;
    overflow-wrap:anywhere;
}


.hero-badge i{
    color:#E53935;
    margin-top:4px;
    flex-shrink:0;
}


.hero-content h1{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    color:#0F172A;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#475569;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-btn-primary{
    background:#16A5E8;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
}

.hero-btn-secondary{
    border:2px solid #16A5E8;
    color:#16A5E8;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.hero-features span{
    font-weight:600;
    color:#334155;
}

.hero-features i{
    color:#E53935;
    margin-right:6px;
}


.hero-image{
    text-align:center;
}


.hero-image img{
    width:100%;
    max-width:650px;
    height:auto;
    border-radius:24px;
    display:block;
    margin:0 auto;
}

.hero-stats{
    margin-top:70px;
}

.stat-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.stat-box h3{
    color:#E53935;
    font-size:32px;
    font-weight:800;
}

.stat-box p{
    margin:0;
    color:#64748B;
}

@media(max-width:991px){


 .hero-badge{

        margin:0 auto 25px;

        text-align:center;
    }


.hero-badge i{
        margin-top:2px;
    }


    .hero-section{
        padding:60px 0;
    }

    .hero-content{
        text-align:center;
        margin-bottom:40px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }
}


/* ===================================================
   ABOUT BIOBAXY
=================================================== */

.about-biobaxy{
    padding:100px 0;
    background:#ffffff;
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    top:-12px;
    left:-12px;

    width:120px;
    height:120px;

    border-top:4px solid #E53935;
    border-left:4px solid #E53935;

    border-radius:24px 0 0 0;
}

.about-image img{
    width:100%;
    display:block;

    border-radius:24px;

    border:1px solid #E2E8F0;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08),
        0 8px 20px rgba(229,57,53,.08);

    transition:.3s ease;
}

.about-image img:hover{
    transform:translateY(-5px);
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:20px;
}

.stat-card{
    background:#fff;
    border:1px solid #E2E8F0;
    border-radius:16px;
    padding:20px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
    transform:translateY(-5px);
    border-color:rgba(229,57,53,.20);
}

.stat-card h3{
    color:#E53935;
    font-size:28px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-card span{
    color:#64748B;
    font-size:14px;
    font-weight:600;
}

.section-tag{
    display:inline-block;
    background:rgba(229,57,53,.08);
    color:#E53935;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.3;
    color:#0F172A;
    margin-bottom:25px;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:18px;
}

.about-highlights{
    margin-top:35px;
}

.highlight-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.highlight-item i{
    color:#E53935;
    font-size:20px;
    margin-top:2px;
    flex-shrink:0;
}

.highlight-item span{
    color:#334155;
    font-weight:600;
    line-height:1.6;
}

@media(max-width:991px){

    .about-biobaxy{
        padding:70px 0;
    }

    .about-content{
        text-align:center;
        margin-top:20px;
    }

    .about-content h2{
        font-size:32px;
    }

    .highlight-item{
        justify-content:center;
        text-align:left;
    }
}

@media(max-width:767px){

    .about-content h2{
        font-size:28px;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

    .about-image::before{
        display:none;
    }
}



/* ===================================================
   PRODUCT CATEGORIES
=================================================== */

.product-categories{
    padding:100px 0;
    background:#F8FBFF;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-header h2{
    font-size:42px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
    line-height:1.3;
}

.section-header p{
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}

.category-card{
    background:#ffffff;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:all .3s ease;

    box-shadow:0 4px 20px rgba(15,23,42,.04);
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.08);
    border-color:rgba(229,57,53,.25);
}

.category-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:rgba(229,57,53,.08);
}

.category-icon i{
    font-size:34px;
    color:#E53935;
}

.category-card h3{
    font-size:24px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:15px;
    line-height:1.4;
}

.category-card p{
    color:#64748B;
    line-height:1.8;
    margin:0;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:991px){

    .product-categories{
        padding:80px 0;
    }

    .section-header{
        margin-bottom:45px;
    }

    .section-header h2{
        font-size:34px;
    }

    .category-card{
        padding:30px;
    }

}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .product-categories{
        padding:70px 0;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:16px;
    }

    .category-card{
        padding:24px;
        border-radius:20px;
    }

    .category-icon{
        width:70px;
        height:70px;
        margin-bottom:18px;
    }

    .category-icon i{
        font-size:28px;
    }

    .category-card h3{
        font-size:20px;
    }

    .category-card p{
        font-size:15px;
        line-height:1.7;
    }

}


/* Subcategory links inside card */
.cat-subcats {
    margin: 18px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
}
.cat-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s;
}
.cat-sub-link:hover {
    background: rgba(229,57,53,0.06);
    color: #E53935;
    padding-left: 14px;
}
.cat-sub-link i {
    font-size: 11px;
    color: #E53935;
    flex-shrink: 0;
}
/* View all link */
.cat-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #E53935;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
}
.cat-view-all:hover {
    gap: 10px;
    color: #C62828;
}
/* Make card text-align left for subcats but keep icon centered */
.category-card {
    text-align: center; /* keep existing */
}
/* Mobile */
@media(max-width:767px) {
    .cat-sub-link { font-size: 13px; }
    .cat-view-all { font-size: 13px; }
}


/* ===================================================
   OEM MANUFACTURING PROCESS
=================================================== */

.oem-process{
    padding:100px 0;
    background:#ffffff;
}

.process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-wrapper::before{
    content:"";
    position:absolute;
    top:40px;
    left:12%;
    width:76%;
    height:3px;
    background:rgba(229,57,53,.15);
}

.process-step{
    position:relative;
    text-align:center;
    z-index:2;
}

.process-number{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#E53935;
    color:#ffffff;

    font-size:24px;
    font-weight:800;

    box-shadow: 0 10px 25px rgba(229,57,53,.20);
}

.process-step h3{
    font-size:22px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:15px;
    line-height:1.4;
}

.process-step p{
    color:#64748B;
    line-height:1.8;
    margin:0;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:991px){

    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .process-wrapper::before{
        display:none;
    }

}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .oem-process{
        padding:70px 0;
    }

    .process-wrapper{
        grid-template-columns:1fr;
        gap:0;
        margin-top:40px;
    }

    .process-step{
        text-align:left;
        padding:0 0 35px 90px;
        position:relative;
    }

    .process-step:not(:last-child)::after{
        content:"";
        position:absolute;
        left:39px;
        top:80px;
        width:3px;
        height:calc(100% - 40px);
        background:rgba(229,57,53,.15);
    }

    .process-number{
    transition:.3s ease;
}

.process-step:hover .process-number{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(229,57,53,.25);
}

.process-step h3{
    transition:.3s ease;
}

.process-step:hover h3{
    color:#E53935;
}

    .process-number{
        position:absolute;
        left:0;
        top:0;

        width:80px;
        height:80px;

        margin:0;
    }

    .process-step h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .process-step p{
        font-size:15px;
        line-height:1.7;
    }
}




/* ===================================================
   QUALITY & CERTIFICATIONS
=================================================== */

.quality-certifications{
    padding:100px 0;
    background:#F8FBFF;
}

.certification-image{
    position:relative;
}

.certification-image img{
    width:100%;
    display:block;
    transition:.3s ease;
    border-radius:24px;
    border:1px solid #E2E8F0;
    box-shadow:
         0 20px 50px rgba(15,23,42,.08),
         0 8px 20px rgba(229,57,53,.08);
}

.certification-image img:hover{
    border-color:rgba(229,57,53,.20);
}

.quality-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.3;
    color:#0F172A;
    margin-bottom:25px;
}

.quality-content p{
    color:#475569;
    line-height:1.9;
    margin-bottom:30px;
}

.quality-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:25px;
}

.quality-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.quality-item i{
     color:#E53935;
    font-size:18px;
    margin-top:3px;
}

.quality-item span{
    color:#334155;
    font-weight:600;
    line-height:1.5;
}

.quality-note{
     background:rgba(229,57,53,.06);
    border-left:4px solid #E53935;
    padding:18px;
    border-radius:12px;
    color:#334155;
    line-height:1.7;
    margin-bottom:30px;
}

.certification-btn{
    background:#16A5E8;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    border:none;
}

.certification-btn:hover{
    background:#0D8DD0;
    color:#fff;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:991px){

    .quality-certifications{
        padding:80px 0;
    }

    .quality-content{
        text-align:center;
    }

    .quality-content h2{
        font-size:34px;
    }

    .quality-points{
        margin-top:25px;
    }
}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .quality-certifications{
        padding:70px 0;
    }

    .quality-content h2{
        font-size:28px;
    }

    .quality-content p{
        font-size:16px;
    }

    .quality-points{
        grid-template-columns:1fr;
        gap:15px;
    }

    .quality-item{
        text-align:left;
    }

    .quality-note{
        font-size:15px;
        padding:15px;
    }

    .certification-btn{
        width:100%;
    }
}






/* ===================================================
   GLOBAL PRESENCE
=================================================== */

.global-presence{
    padding:100px 0;
    background:#ffffff;
}

.global-image img{
    width:100%;
    display:block;

    border-radius:24px;

    border:1px solid #E2E8F0;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08),
        0 8px 20px rgba(229,57,53,.08);
}

.global-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.3;
    color:#0F172A;
    margin-bottom:25px;
}

.global-content p{
    color:#475569;
    line-height:1.9;
    margin-bottom:30px;
}

.global-countries{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.global-countries span{
    background:rgba(229,57,53,.08);
    color:#E53935;
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
     transition:.3s ease;
}
.global-countries span:hover{
    background:rgba(229,57,53,.12);
    transform:translateY(-2px);
}

.global-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.global-feature{
    display:flex;
    align-items:center;
    gap:12px;
}

.global-feature i{
    color:#E53935;
    font-size:20px;
}

.global-feature span{
    color:#334155;
    font-weight:600;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:991px){

    .global-presence{
        padding:80px 0;
    }

    .global-content{
        text-align:center;
    }

    .global-content h2{
        font-size:34px;
    }

    .global-countries{
        justify-content:center;
    }

}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .global-presence{
        padding:70px 0;
    }

    .global-content h2{
        font-size:28px;
    }

    .global-content p{
        font-size:16px;
    }

    .global-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .global-countries span{
        font-size:13px;
        padding:8px 14px;
    }
}





/* ===================================================
   FAQ SECTION
=================================================== */

.faq-section{
    padding:100px 0;
    background:#F8FBFF;
}

.faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.faq-section .section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.faq-section .section-header h2{
    font-size:42px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
}

.faq-section .section-header p{
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}

.faq-section .accordion-item{
    border:none;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 5px 20px rgba(15,23,42,.05);
}

.faq-section .accordion-button{
    background:#ffffff;
    color:#0F172A;
    font-size:18px;
    font-weight:700;
    padding:24px 28px;
    box-shadow:none !important;
}

.faq-section .accordion-button:not(.collapsed){
    background:#16A5E8;
    color:#ffffff;
}

.faq-section .accordion-button::after{
    filter:none;
}

.faq-section .accordion-body{
    padding:25px 28px;
    background:#ffffff;
    color:#64748B;
    line-height:1.9;
    font-size:16px;
}

.faq-section .accordion-button:focus{
    box-shadow:none;
    border:none;
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:991px){

    .faq-section{
        padding:80px 0;
    }

    .faq-section .section-header h2{
        font-size:34px;
    }

}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:767px){

    .faq-section{
        padding:70px 0;
    }

    .faq-section .section-header{
        margin-bottom:40px;
    }

    .faq-section .section-header h2{
        font-size:28px;
    }

    .faq-section .section-header p{
        font-size:16px;
    }

    .faq-section .accordion-button{
        font-size:16px;
        padding:20px;
    }

    .faq-section .accordion-body{
        padding:20px;
        font-size:15px;
    }

}




/* ===================================================
ABOUT PAGE HERO
=================================================== */

.about-hero{
padding:100px 0;
background:linear-gradient(
180deg,
#F8FBFF 0%,
#FFFFFF 100%
);
}

.about-hero-content h1{
font-size:54px;
font-weight:800;
line-height:1.2;
color:#0F172A;
margin:20px 0 25px;
}

.about-hero-content p{
font-size:18px;
line-height:1.9;
color:#64748B;
margin-bottom:20px;
}

.about-hero-image{
position:relative;
}

.about-hero-image img{
width:100%;
display:block;

border-radius:24px;

border:1px solid #E2E8F0;

box-shadow:
     0 25px 60px rgba(15,23,42,.10),
     0 10px 30px rgba(229,57,53,.08);

transition:all .3s ease;


}

.about-hero-image{
    position:relative;
}

.about-hero-image::before{
    content:'';
    position:absolute;
    top:-12px;
    left:-12px;

    width:120px;
    height:120px;

    border-top:4px solid #E53935;
    border-left:4px solid #E53935;

    border-radius:24px 0 0 0;
}

.about-hero-image img:hover{
transform:translateY(-5px);
}

/* ===================================================
TABLET
=================================================== */

@media(max-width:991px){

.about-hero{
    padding:80px 0;
    text-align:center;
}

.about-hero-content h1{
    font-size:42px;
}

.about-hero-image{
    margin-top:20px;
}

}

/* ===================================================
MOBILE
=================================================== */

@media(max-width:767px){

.about-hero{
    padding:70px 0;
}

.about-hero-content h1{
    font-size:32px;
}

.about-hero-content p{
    font-size:16px;
    line-height:1.8;
}

.about-hero-image{
    margin-top:15px;
}

}




/* ===================================================
WHO WE ARE
=================================================== */

.who-we-are{

padding:100px 0;

background:#F8FAFC;

border-top:1px solid #EEF2F7;

border-bottom:1px solid #EEF2F7;

}

.who-content{

max-width:850px;

margin:0 auto;

text-align:center;

}

.who-content h2{

font-size:42px;

font-weight:800;

line-height:1.3;

color:#0F172A;

margin:20px 0 25px;


}

.who-content p{


font-size:17px;

line-height:1.9;

color:#64748B;

margin-bottom:20px;
```

}

/* ==========================================
MISSION & VISION
========================================== */

.mission-vision-box{

max-width:1000px;

margin:60px auto 0;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.mv-card{

background:#FFFFFF;

border:1px solid #E2E8F0;

border-radius:24px;

padding:40px;

text-align:left;

box-shadow:
    0 10px 30px rgba(15,23,42,.05);

transition:.3s ease;

}

.mv-card:hover{

transform:translateY(-5px);
border-color:rgba(229,57,53,.20);
box-shadow: 0 20px 40px rgba(15,23,42,.08);
}


.mv-icon{
    transition:.3s ease;
}

.mv-card:hover .mv-icon{

    background:rgba(229,57,53,.12);

}


.mv-card h3{
    transition:.3s ease;
}

.mv-card:hover h3{
    color:#E53935;
}

.mv-icon{

width:70px;

height:70px;

border-radius:50%;

background:rgba(229,57,53,.08);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;


}

.mv-icon i{

font-size:30px;

color:#E53935;

}

.mv-card h3{

font-size:28px;

font-weight:700;

color:#0F172A;

margin-bottom:15px;


}

.mv-card p{

margin:0;

color:#64748B;

line-height:1.9;


}

/* ===================================================
TABLET
=================================================== */

@media(max-width:991px){

.who-we-are{

    padding:80px 0;
}

.who-content h2{

    font-size:34px;
}

}

/* ===================================================
MOBILE
=================================================== */

@media(max-width:767px){

.who-we-are{

    padding:70px 0;
}

.who-content h2{

    font-size:28px;
}

.who-content p{

    font-size:16px;
}

.mission-vision-box{

    grid-template-columns:1fr;

    gap:20px;

    margin-top:40px;
}

.mv-card{

    padding:25px;
}

.mv-card h3{

    font-size:24px;
}


}




/* ==========================================
   PRODUCTS HERO SECTION
========================================== */

.products-hero-section {
    background: #F3F8FF;
    padding: 100px 0;
    overflow: hidden;
}

.products-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.products-hero-content {
    flex: 1;
    max-width: 600px;
}

.products-hero-label {
    display: inline-block;
     background: rgba(229,57,53,.08);
    color: #E53935;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.products-hero-image img{
    box-shadow:
        0 25px 60px rgba(15,23,42,.10),
        0 10px 30px rgba(229,57,53,.08);
}

.products-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 24px;
}

.products-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 35px;
}

.products-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: #0056B3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #004494;
    color: #ffffff;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 2px solid #0056B3;
    color: #0056B3;
    background: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: #E53935;
     border-color:#E53935;
    color: #ffffff;
}

/* ==========================================
   HERO IMAGE
========================================== */

.products-hero-image {
    flex: 1;
    position: relative;
}

.products-image-frame {
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.08),
        0 10px 30px rgba(15, 23, 42, 0.05);
}

.products-image-frame::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 120px;
    height: 120px;
    border-top: 4px solid #0056B3;
    border-left: 4px solid #0056B3;
    border-radius: 30px;
}

.products-image-frame::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 120px;
    height: 120px;
    border-right: 4px solid #00B4D8;
    border-bottom: 4px solid #00B4D8;
    border-radius: 30px;
}

.products-image-frame img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .products-hero-section {
        padding: 80px 0;
    }

    .products-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .products-hero-content {
        max-width: 100%;
    }

    .products-hero-content h1 {
        font-size: 40px;
    }

    .products-hero-buttons {
        justify-content: center;
    }

    .products-image-frame {
        padding: 15px;
    }

    .products-image-frame::before,
    .products-image-frame::after {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .products-hero-section {
        padding: 60px 0;
    }

    .products-hero-content h1 {
        font-size: 30px;
    }

    .products-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .products-hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }

    .products-image-frame {
        padding: 12px;
        border-radius: 20px;
    }

    .products-image-frame img {
        border-radius: 14px;
    }

    .products-image-frame::before,
    .products-image-frame::after {
        display: none;
    }
}



/* =====================================
   PREMIUM BENTO PRODUCTS
===================================== */

.featured-categories-section{
    padding:100px 0;
    background:#fff;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(229,57,53,.08);
    color:#E53935;
    font-weight:700;
    margin-bottom:15px;
}

.section-header h2{
    font-size:48px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
}

.section-header p{
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}

/* GRID */

.bento-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:30px;
}

/* CARD */

.bento-card{
    border-radius:32px;
    overflow:hidden;
    transition:.35s ease;
    border:1px solid transparent;
}

.bento-card:hover{
    transform:translateY(-10px);
    border-color:rgba(229,57,53,.15);
}

.bento-content{
    padding:35px;
}

.bento-content h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:15px;
    color:#0F172A;
}

.bento-content p{
    color:#64748B;
    line-height:1.8;
}

.bento-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:#fff;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

/* IMAGE */

.bento-image{
    padding:25px;
}

.bento-image-frame{
    background:#fff;
    border-radius:24px;
    padding:20px;
    position:relative;
    box-shadow:
    0 15px 40px rgba(15,23,42,.08);
}

.bento-image-frame::before{
    content:"";
    position:absolute;
    top:-8px;
    left:-8px;
    width:70px;
    height:70px;
    border-top:3px solid #E53935;
    border-left:3px solid #E53935;
    border-radius:20px;
}

.bento-image-frame::after{
    content:"";
    position:absolute;
    right:-8px;
    bottom:-8px;
    width:70px;
    height:70px;
    border-right:3px solid rgba(229,57,53,.60);
    border-bottom:3px solid rgba(229,57,53,.60);
    border-radius:20px;
}

.bento-image img{
    width:100%;
    display:block;
    transition:.4s ease;
}

.bento-card:hover img{
    transform:scale(1.05);
}

/* FEATURED */

.featured-card{
    grid-column:span 8;
    background:linear-gradient(
    135deg,
    #EEF6FF,
    #DDEEFF
    );
}

/* HAIR */

.hair-card{
    grid-column:span 4;
    background:linear-gradient(
    135deg,
    #FFF1F8,
    #FFE4F2
    );
}

/* NUTRA */

.nutra-card{
    grid-column:span 4;
    background:linear-gradient(
    135deg,
    #F1FFF5,
    #DFFBE8
    );
}

/* HEALTHCARE */

.healthcare-card{
    grid-column:span 8;
    background:linear-gradient(
    135deg,
    #FFF8EE,
    #FFEED6
    );

    display:flex;
    align-items:center;
}

.healthcare-card .bento-content{
    flex:1;
}

.healthcare-card .bento-image{
    flex:1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .bento-grid{
        grid-template-columns:1fr;
    }

    .featured-card,
    .hair-card,
    .nutra-card,
    .healthcare-card{
        grid-column:auto;
    }

    .healthcare-card{
        flex-direction:column;
    }

    .section-header h2{
        font-size:36px;
    }
}

@media(max-width:767px){

    .featured-categories-section{
        padding:70px 0;
    }

    .section-header h2{
        font-size:30px;
    }

    .bento-content h3{
        font-size:24px;
    }

    .bento-content{
        padding:25px;
    }
}



/* =====================================
   TRUST METRICS SECTION
===================================== */

.trust-metrics-section{
    padding:100px 0;
    background:#f8fbff;
}

.trust-wrapper{
    display:grid;
    grid-template-columns:45% 55%;
    gap:40px;
    align-items:center;
}

.trust-image-frame{
    background:#fff;
    padding:30px;
    border-radius:32px;
    box-shadow:0 20px 50px rgba(15,23,42,.08);
    position:relative;
}

.trust-image-frame::before{
    content:"";
    position:absolute;
    top:-10px;
    left:-10px;
    width:100px;
    height:100px;
    border-top:4px solid #0056B3;
    border-left:4px solid #0056B3;
    border-radius:24px;
}

.trust-image-frame::after{
    content:"";
    position:absolute;
    right:-10px;
    bottom:-10px;
    width:100px;
    height:100px;
    border-right:4px solid #00B4D8;
    border-bottom:4px solid #00B4D8;
    border-radius:24px;
}

.trust-image img{
    width:100%;
    display:block;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.trust-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s ease;
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.trust-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.trust-icon.blue{
    background:#EAF4FF;
    color:#0056B3;
}

.trust-icon.purple{
    background:#F4ECFF;
    color:#7C3AED;
}

.trust-icon.pink{
    background:#FFEAF5;
    color:#DB2777;
}

.trust-icon.green{
    background:#EAFBF1;
    color:#16A34A;
}

.trust-icon.orange{
    background:#FFF3E7;
    color:#EA580C;
}

.trust-icon.cyan{
    background:#E8FAFF;
    color:#0891B2;
}

.trust-card h3{
    font-size:22px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:12px;
}

.trust-card p{
    color:#64748B;
    line-height:1.8;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .trust-wrapper{
        grid-template-columns:1fr;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .trust-metrics-section{
        padding:70px 0;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .trust-card{
        padding:25px;
    }

    .trust-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .trust-card h3{
        font-size:20px;
    }

}



/* =====================================
   CONTACT HERO PREMIUM
===================================== */

.contact-hero {
    padding: 90px 0;
    background:
    linear-gradient(
        180deg,
        #F7FAFF 0%,
        #FFFFFF 100%
    );
    overflow: hidden;
}

.contact-hero-content {
    max-width: 620px;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #E53935;
    margin-bottom: 20px;
}

.contact-hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.25;
    color: #0F172A;
    margin-bottom: 25px;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #64748B;
    margin-bottom: 35px;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0F172A;
}

.hero-info-item i {
    color: #E53935;
    font-size: 20px;
}

/* IMAGE SIDE */

.contact-hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.contact-hero-image {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E2E8F0;
    box-shadow:
        0 30px 60px rgba(15,23,42,.10),
        0 10px 25px rgba(229,57,53,.08);
}

.contact-hero-image img {
    width: 100%;
    display: block;
}

/* Premium Border Elements */

.image-decoration {
    position: absolute;
    border-radius: 30px;
    z-index: 1;
}

.image-decoration-1 {
    width: 85%;
    height: 85%;
    border: 3px solid rgba(229,57,53,.18);
    top: -15px;
    right: -15px;
}

.image-decoration-2 {
    width: 85%;
    height: 85%;
    border: 3px solid rgba(229,57,53,.10);
    bottom: -15px;
    left: -15px;
}

/* Tablet */

@media (max-width:991px){

    .contact-hero{
        padding:70px 0;
        text-align:center;
    }

    .contact-hero-content{
        max-width:100%;
        margin-bottom:50px;
    }

    .hero-contact-info{
        align-items:center;
    }

    .contact-hero-content h1{
        font-size:42px;
    }
}

/* Mobile */

@media (max-width:767px){

    .contact-hero-content h1{
        font-size:32px;
    }

    .contact-hero-content p{
        font-size:16px;
    }

    .contact-hero-image-wrapper{
        padding:10px;
    }
}





/* =====================================
   CONTACT FORM SECTION
===================================== */
.contact-form-section{
padding:100px 0;
background:
    radial-gradient(
        circle at top right,
        rgba(229,57,53,.03),
        transparent 30%
    ),
    linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FBFF 100%
    );
}

.contact-form-wrapper{
display:grid;
grid-template-columns:420px 1fr;
gap:40px;
}

.contact-info-card,
.contact-form-card{
background:#fff;
border-radius:28px;
padding:40px;
border:1px solid #E2E8F0;
box-shadow:0 15px 40px rgba(15,23,42,.05);
}

.contact-badge{
display:inline-block;
padding:8px 18px;
border-radius:50px;
background:rgba(229,57,53,.08);
color:#E53935;
font-size:13px;
font-weight:700;
margin-bottom:18px;
}

.contact-info-card h2{
font-size:36px;
font-weight:800;
color:#0F172A;
margin-bottom:20px;
}

.contact-info-card p{
color:#64748B;
line-height:1.9;
margin-bottom:35px;
}

.contact-info-list{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-info-item{
display:flex;
gap:15px;
}

.info-icon{
width:52px;
height:52px;
border-radius:14px;
background:rgba(229,57,53,.08);
color:#E53935;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
flex-shrink:0;
}

.contact-info-item strong{
display:block;
color:#0F172A;
margin-bottom:4px;
}

.contact-info-item span{
color:#64748B;
}

.contact-form-card h3{
font-size:30px;
font-weight:800;
color:#0F172A;
margin-bottom:30px;
}

.form-row{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:8px;
color:#0F172A;
font-weight:600;
}

.form-group label span{
color:#E53935;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
border:1px solid #DCE3EC;
border-radius:12px;
padding:14px 16px;
font-size:15px;
transition:.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
outline:none;
border-color:#E53935;
box-shadow:0 0 0 4px rgba(229,57,53,.08);
}

.submit-btn{
width:100%;
border:none;
border-radius:12px;
padding:16px;
background:#0056B3;
color:#fff;
font-weight:700;
font-size:16px;
transition:.3s ease;
}

.submit-btn:hover

.form-note{
margin-top:18px;
font-size:14px;
color:#64748B;
line-height:1.8;
}

.form-note i{
color:#E53935;
margin-right:6px;
}

@media(max-width:991px){


.contact-form-wrapper{
    grid-template-columns:1fr;
}

.contact-info-card,
.contact-form-card{
    padding:30px;
}


}

@media(max-width:767px){


.contact-form-section{
    padding:70px 0;
}

.form-row{
    grid-template-columns:1fr;
}

.contact-info-card h2{
    font-size:30px;
}

.contact-form-card h3{
    font-size:26px;
}


}





/* =====================================
   CONTACT FAQ
===================================== */

.contact-faq-section{
    padding:100px 0;
    background:#F8FAFC;
}

.faq-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.faq-badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(229,57,53,.08);
    color:#E53935;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.faq-header h2{
    font-size:46px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
}

.faq-header p{
    font-size:17px;
    line-height:1.9;
    color:#64748B;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid #E2E8F0;
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:rgba(229,57,53,.25);
    box-shadow:
    0 15px 40px rgba(15,23,42,.05);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    padding:28px 30px;
    cursor:pointer;
}


.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-icon{
    transition:.3s ease;
}

.faq-question span{
    font-size:18px;
    font-weight:700;
    color:#0F172A;
    line-height:1.5;
}

.faq-question i{
    color:#E53935;
    font-size:20px;
    flex-shrink:0;
}

.faq-answer{
    display:none;
    padding:0 30px 30px;
}

.faq-answer p{
    margin:0;
    color:#64748B;
    line-height:1.9;
    font-size:16px;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active{
    border-color:#E53935;
}

/* Tablet */

@media(max-width:991px){

    .contact-faq-section{
        padding:80px 0;
    }

    .faq-header h2{
        font-size:38px;
    }

}

/* Mobile */

@media(max-width:767px){

    .contact-faq-section{
        padding:70px 0;
    }

    .faq-header h2{
        font-size:30px;
    }

    .faq-question{
        padding:22px;
    }

    .faq-answer{
        padding:0 22px 22px;
    }

    .faq-question span{
        font-size:16px;
    }
}