/* =========================================================
   ROOT CONTENT
========================================================= */

.section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
}

.section-light{
    background:#f8fafc;
    color:#0f172a;
}

.section:nth-of-type(even){
    background:#ffffff;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.section .shape{
    position:absolute;
    pointer-events:none;
    z-index:0;
    border-radius:50%;
    filter:blur(2px);
}

.section .shape.one{
    width:320px;
    height:320px;
    top:-160px;
    left:-140px;
    background:radial-gradient(
        circle,
        rgba(37,99,235,.10) 0%,
        rgba(37,99,235,.04) 45%,
        transparent 72%
    );
}

.section .shape.two{
    width:360px;
    height:360px;
    right:-180px;
    bottom:-180px;
    background:radial-gradient(
        circle,
        rgba(14,165,233,.09) 0%,
        rgba(14,165,233,.03) 45%,
        transparent 72%
    );
}

.section>.container{
    position:relative;
    z-index:2;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header{
    max-width:820px;
    margin:0 auto 55px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:9px 18px;
    margin-bottom:18px;
    border:1px solid rgba(37,99,235,.16);
    border-radius:999px;
    background:#ffffff;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

.section-badge i{
    font-size:14px;
}

.section-title{
    margin:0;
    color:#0f2747;
    font-size:clamp(2rem,4vw,3.15rem);
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1px;
}

.section-title span{
    display:inline-block;
    color:#2563eb;
}

.section-description{
    max-width:720px;
    margin:20px auto 0;
    color:#64748b;
    font-size:16px;
    line-height:1.85;
}


/* =========================================================
   GRID SYSTEM
========================================================= */

.grid{
    display:grid;
    width:100%;
    gap:28px;
}

.grid-1{
    grid-template-columns:1fr;
}

.grid-2{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-4{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.align-start{
    align-items:start;
}

.grid-col-2{
    grid-column:span 2;
}

.justify-center{
    justify-content:center;
}


/* =========================================================
   QUICK CONTACT CARDS
========================================================= */

.grid-4 .card{
    min-height:360px;
}

.card{
    position:relative;
    padding:32px;
    background:#ffffff;
    border:1px solid #e6edf5;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(15,23,42,.06);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:28px;
    right:28px;
    height:3px;
    border-radius:0 0 10px 10px;
    background:linear-gradient(
        90deg,
        #2563eb,
        #38bdf8
    );
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .35s ease;
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(37,99,235,.16);
    box-shadow:0 24px 55px rgba(15,23,42,.11);
}

.card:hover::before{
    transform:scaleX(1);
}


/* =========================================================
   CARD ICON
========================================================= */

.card-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    border-radius:18px;
    background:linear-gradient(
        145deg,
        #eff6ff,
        #e0f2fe
    );
    color:#2563eb;
    font-size:25px;
    box-shadow:
        inset 0 0 0 1px rgba(37,99,235,.08),
        0 10px 25px rgba(37,99,235,.08);
    transition:all .35s ease;
}

.card:hover .card-icon{
    color:#ffffff;
    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 14px 30px rgba(37,99,235,.22);
}

.text-center .card-icon{
    margin-left:auto;
    margin-right:auto;
}


/* =========================================================
   CARD TYPOGRAPHY
========================================================= */

.card h3{
    margin:0 0 12px;
    color:#102a43;
    font-size:20px;
    font-weight:700;
    line-height:1.35;
}

.card p{
    margin:0;
    color:#64748b;
    font-size:14.5px;
    line-height:1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:48px;
    padding:0 23px;
    border-radius:12px;
    border:1px solid transparent;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    cursor:pointer;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.btn-primary{
    color:#ffffff;
    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );
    box-shadow:0 10px 24px rgba(37,99,235,.20);
}

.btn-primary:hover{
    color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(37,99,235,.28);
}

.btn-outline{
    color:#2563eb;
    background:#ffffff;
    border-color:#cbdcf7;
}

.btn-outline:hover{
    color:#ffffff;
    background:#2563eb;
    border-color:#2563eb;
    transform:translateY(-3px);
}

.mt-2{
    margin-top:12px !important;
}


/* =========================================================
   INFO ITEM
========================================================= */

.info-item{
    display:flex;
    align-items:flex-start;
    gap:17px;
    margin-bottom:30px;
}

.info-item .card-icon{
    flex:0 0 56px;
    width:56px;
    height:56px;
    margin:0;
    border-radius:15px;
    font-size:21px;
}

.info-item h3{
    margin:3px 0 7px;
    font-size:19px;
}

.info-item p{
    font-size:14px;
    line-height:1.65;
}


/* =========================================================
   FORM CARD
========================================================= */

#contact-form .card{
    height:100%;
}

#contactForm{
    width:100%;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    color:#1e293b;
    font-size:13px;
    font-weight:700;
}

.form-group label span{
    color:#ef4444;
}

.form-control{
    width:100%;
    min-height:52px;
    padding:12px 16px;
    border:1px solid #dbe4ef;
    border-radius:12px;
    background:#ffffff;
    color:#172033;
    font-family:inherit;
    font-size:14px;
    outline:none;
    box-shadow:none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.form-control::placeholder{
    color:#94a3b8;
}

.form-control:hover{
    border-color:#bfcee0;
}

.form-control:focus{
    border-color:#2563eb;
    background:#ffffff;
    box-shadow:
        0 0 0 4px rgba(37,99,235,.09);
}

textarea.form-control{
    min-height:145px;
    resize:vertical;
    line-height:1.65;
}

select.form-control{
    cursor:pointer;
}


/* =========================================================
   FORM SECTION DIVIDER
========================================================= */

.form-section-divider{
    height:1px;
    margin:34px 0;
    background:linear-gradient(
        90deg,
        transparent,
        #dbe5f0,
        transparent
    );
}


/* =========================================================
   CHECKBOX
========================================================= */

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:4px;
    color:#64748b;
    font-size:13px;
    line-height:1.65;
    cursor:pointer;
}

.checkbox input{
    flex:0 0 auto;
    width:17px;
    height:17px;
    margin-top:2px;
    accent-color:#2563eb;
    cursor:pointer;
}


/* =========================================================
   FORM BUTTON AREA
========================================================= */

#contactForm .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
}

#contactForm .hero-actions .btn{
    min-width:170px;
}


/* =========================================================
   SIDEBAR
========================================================= */

#contact-form .grid-2>.card{
    height:auto;
}

#contact-form .grid-2>div:last-child{
    display:flex;
    flex-direction:column;
}


/* =========================================================
   INLINE LIST
========================================================= */

.inline-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 18px;
    padding:0;
    margin:0;
    list-style:none;
}

.inline-list li{
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#475569;
    font-size:13.5px;
    line-height:1.55;
}

.inline-list li i{
    flex:0 0 auto;
    margin-top:3px;
    color:#16a34a;
    font-size:13px;
}


/* =========================================================
   DIVIDER
========================================================= */

.divider{
    width:100%;
    height:1px;
    margin:18px 0;
    background:linear-gradient(
        90deg,
        transparent,
        #dce5ef,
        transparent
    );
}


/* =========================================================
   SIDEBAR QUICK HELP
========================================================= */

#contact-form .text-center{
    text-align:center;
}

#contact-form .text-center .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

#contact-form .text-center .hero-actions .btn{
    min-width:130px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

#backToTop{
    position:fixed;
    right:25px;
    bottom:95px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(37,99,235,.15);
    border-radius:14px;
    background:#ffffff;
    color:#2563eb;
    font-size:16px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    box-shadow:0 12px 30px rgba(15,23,42,.12);
    transition:all .3s ease;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#backToTop:hover{
    color:#ffffff;
    background:#2563eb;
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(37,99,235,.25);
}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#25d366;
    color:#ffffff;
    font-size:27px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(37,211,102,.30);
    z-index:998;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float::before{
    content:"";
    position:absolute;
    inset:-5px;
    border:2px solid rgba(37,211,102,.20);
    border-radius:50%;
    animation:whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float:hover{
    color:#ffffff;
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 18px 40px rgba(37,211,102,.38);
}


/* =========================================================
   STUDY SAHARA — FAQ PAGE CONTENT
   EXCLUDES HEADER / NAVBAR / HERO / FOOTER
========================================================= */


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section{
    position:relative;
    background:#f8fafc;
    overflow:hidden;
}

.faq-section .shape{
    position:absolute;
    pointer-events:none;
    border-radius:50%;
    z-index:0;
}

.faq-section .shape.one{
    width:360px;
    height:360px;
    top:-180px;
    left:-160px;
    background:radial-gradient(
        circle,
        rgba(37,99,235,.10),
        rgba(37,99,235,.03) 48%,
        transparent 72%
    );
}

.faq-section .shape.two{
    width:420px;
    height:420px;
    right:-220px;
    bottom:-220px;
    background:radial-gradient(
        circle,
        rgba(14,165,233,.10),
        rgba(14,165,233,.03) 48%,
        transparent 72%
    );
}

.faq-section>.container{
    position:relative;
    z-index:2;
}


/* =========================================================
   FAQ LAYOUT
========================================================= */

.faq-layout{
    display:grid;
    grid-template-columns:360px minmax(0,1fr);
    gap:55px;
    align-items:start;
}


/* =========================================================
   FAQ INTRO
========================================================= */

.faq-intro{
    position:sticky;
    top:120px;
}

.faq-intro-card{
    position:relative;
    padding:36px;
    overflow:hidden;
    border-radius:24px;
    background:
        linear-gradient(
            145deg,
            #0f2747,
            #102e57
        );
    box-shadow:
        0 25px 60px rgba(15,39,71,.18);
}

.faq-intro-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    top:-80px;
    right:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.faq-intro-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    bottom:-60px;
    left:-60px;
    border-radius:50%;
    background:rgba(37,99,235,.16);
}

.faq-intro-icon{
    position:relative;
    z-index:2;
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:18px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.13);
    color:#ffd34d;
    font-size:25px;
}

.faq-eyebrow{
    position:relative;
    z-index:2;
    display:block;
    margin-bottom:10px;
    color:#ffd34d;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.faq-intro-card h3{
    position:relative;
    z-index:2;
    margin:0 0 15px;
    color:#ffffff;
    font-size:28px;
    font-weight:800;
    line-height:1.25;
}

.faq-intro-card h3 span{
    color:#ffd34d;
}

.faq-intro-card>p{
    position:relative;
    z-index:2;
    margin:0 0 25px;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   FAQ CHECK LIST
========================================================= */

.faq-check-list{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:13px;
    margin:0 0 28px;
    padding:0;
    list-style:none;
}

.faq-check-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:rgba(255,255,255,.88);
    font-size:13.5px;
    line-height:1.5;
}

.faq-check-list li i{
    flex:0 0 auto;
    width:19px;
    height:19px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:1px;
    border-radius:50%;
    background:rgba(255,211,77,.13);
    color:#ffd34d;
    font-size:9px;
}


/* =========================================================
   FAQ CONTACT BUTTON
========================================================= */

.faq-contact-btn{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:0 20px;
    border-radius:12px;
    background:#ffffff;
    color:#16345c;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}

.faq-contact-btn i{
    transition:transform .3s ease;
}

.faq-contact-btn:hover{
    color:#16345c;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.16);
}

.faq-contact-btn:hover i{
    transform:translateX(4px);
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:13px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item{
    overflow:hidden;
    border:1px solid #e2e8f0;
    border-radius:17px;
    background:#ffffff;
    box-shadow:0 7px 25px rgba(15,23,42,.045);
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.faq-item:hover{
    border-color:#cbdcf7;
    box-shadow:0 14px 35px rgba(15,23,42,.075);
}

.faq-item[open]{
    border-color:rgba(37,99,235,.25);
    box-shadow:0 18px 42px rgba(37,99,235,.09);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.faq-question{
    position:relative;
    display:grid;
    grid-template-columns:48px minmax(0,1fr) 42px;
    align-items:center;
    gap:14px;
    min-height:78px;
    padding:14px 20px 14px 18px;
    cursor:pointer;
    list-style:none;
}

.faq-question::-webkit-details-marker{
    display:none;
}

.faq-question::marker{
    display:none;
    content:"";
}


/* =========================================================
   FAQ NUMBER
========================================================= */

.faq-number{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    background:#eff6ff;
    color:#2563eb;
    font-size:12px;
    font-weight:800;
    transition:all .3s ease;
}

.faq-item[open] .faq-number{
    background:#2563eb;
    color:#ffffff;
    box-shadow:0 8px 18px rgba(37,99,235,.22);
}


/* =========================================================
   FAQ QUESTION TEXT
========================================================= */

.faq-question-text{
    color:#172b4d;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    transition:color .3s ease;
}

.faq-item[open] .faq-question-text{
    color:#2563eb;
}


/* =========================================================
   FAQ TOGGLE
========================================================= */

.faq-toggle{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dbe5f0;
    border-radius:11px;
    background:#f8fafc;
    color:#2563eb;
    font-size:13px;
    transition:all .35s ease;
}

.faq-toggle i{
    transition:transform .35s ease;
}

.faq-item[open] .faq-toggle{
    color:#ffffff;
    background:#2563eb;
    border-color:#2563eb;
}

.faq-item[open] .faq-toggle i{
    transform:rotate(45deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer{
    padding:0 20px 24px 95px;
}

.faq-answer p{
    margin:0;
    padding-top:20px;
    border-top:1px solid #edf2f7;
    color:#64748b;
    font-size:14px;
    line-height:1.85;
}


/* =========================================================
   FAQ SEARCH
========================================================= */

.search-form{
    width:100%;
    max-width:700px;
    margin:25px auto 0;
}

.search-form .input-group{
    display:flex;
    align-items:stretch;
    padding:5px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:15px;
    background:rgba(255,255,255,.95);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.search-form .form-control{
    min-height:50px;
    border:0;
    outline:0;
    box-shadow:none;
    background:transparent;
}

.search-form .form-control:focus{
    border:0;
    box-shadow:none;
}

.search-form .btn{
    min-width:105px;
    border-radius:11px;
}


/* =========================================================
   CTA SECTION
========================================================= */

.section-primary{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
        linear-gradient(
            135deg,
            #0b1f3a,
            #123b70
        );
}

.section-primary .shape{
    position:absolute;
    pointer-events:none;
    border-radius:50%;
}

.section-primary .shape.one{
    width:420px;
    height:420px;
    top:-220px;
    left:-180px;
    background:rgba(37,99,235,.18);
}

.section-primary .shape.two{
    width:450px;
    height:450px;
    right:-230px;
    bottom:-250px;
    background:rgba(14,165,233,.12);
}


/* =========================================================
   CTA BOX
========================================================= */

.cta-box{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:0 auto;
}

.cta-box .section-badge{
    background:rgba(255,255,255,.09);
    border-color:rgba(255,255,255,.18);
    color:#ffd34d;
}

.cta-box .section-title{
    margin-top:5px;
}

.cta-box .section-title span{
    color:#ffd34d;
}

.cta-box .section-description{
    max-width:760px;
    margin:20px auto 30px;
    color:rgba(255,255,255,.72);
}


/* =========================================================
   CTA BUTTON GROUP
========================================================= */

.btn-group{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
}

.btn-group.justify-center{
    justify-content:center;
}

.btn-white{
    color:#12345d;
    background:#ffffff;
    border-color:#ffffff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.btn-white:hover{
    color:#12345d;
    background:#f8fafc;
    border-color:#f8fafc;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}


/* =========================================================
   TEXT UTILITIES
========================================================= */

.text-white{
    color:#ffffff !important;
}

.badge-light{
    color:#ffd34d;
}

.mt-3{
    margin-top:18px !important;
}


@keyframes whatsappPulse{
    0%{
        opacity:.8;
        transform:scale(.95);
    }

    70%{
        opacity:0;
        transform:scale(1.25);
    }

    100%{
        opacity:0;
        transform:scale(1.25);
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media(max-width:1199px){

    .section{
        padding:85px 0;
    }

    .grid-4{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .grid-4 .card{
        min-height:320px;
    }

    .faq-layout{
        grid-template-columns:310px minmax(0,1fr);
        gap:35px;
    }


}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media(max-width:991px){

    .section{
        padding:75px 0;
    }

    .section-header{
        margin-bottom:42px;
    }

    .section-description{
        font-size:14px;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .grid-col-2{
        grid-column:auto;
    }

    .grid-4{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    #contact-form .grid-2{
        gap:24px;
    }

    .card{
        padding:27px;
        border-radius:19px;
    }

    .faq-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .faq-intro{
        position:static;
    }

    .faq-intro-card{
        padding:30px;
    }

    .faq-intro-card h3{
        font-size:25px;
    }

    .section-primary{
        padding:80px 0;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media(max-width:767px){

    .section{
        padding:65px 0;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-badge{
        padding:8px 14px;
        font-size:12px;
    }

    .section-title{
        font-size:2rem;
        letter-spacing:-.5px;
    }

    .section-description{
        margin-top:15px;
        font-size:14px;
        line-height:1.75;
    }

    .grid-4{
        grid-template-columns:1fr;
    }

    .grid-4 .card{
        min-height:auto;
    }

    .card{
        padding:24px;
    }

    .inline-list{
        grid-template-columns:1fr;
    }

    #contactForm .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    #contactForm .hero-actions .btn{
        width:100%;
    }

    #contact-form .text-center .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    #contact-form .text-center .hero-actions .btn{
        width:100%;
    }

    .info-item{
        gap:13px;
    }

    .info-item .card-icon{
        flex-basis:50px;
        width:50px;
        height:50px;
        font-size:18px;
    }

    #backToTop{
        right:18px;
        bottom:88px;
        width:44px;
        height:44px;
    }

    .whatsapp-float{
        right:18px;
        bottom:20px;
        width:52px;
        height:52px;
        font-size:24px;
    }

    .faq-question{
        grid-template-columns:40px minmax(0,1fr) 36px;
        gap:11px;
        min-height:72px;
        padding:12px 14px;
    }

    .faq-number{
        width:38px;
        height:38px;
        border-radius:11px;
        font-size:10px;
    }

    .faq-question-text{
        font-size:13.5px;
    }

    .faq-toggle{
        width:34px;
        height:34px;
        border-radius:9px;
        font-size:11px;
    }

    .faq-answer{
        padding:0 15px 20px 65px;
    }

    .faq-answer p{
        padding-top:17px;
        font-size:13px;
        line-height:1.75;
    }

    .faq-intro-card{
        padding:26px;
    }

    .faq-intro-card h3{
        font-size:23px;
    }

    .faq-contact-btn{
        width:100%;
    }

    .search-form .input-group{
        display:flex;
        flex-direction:column;
        padding:6px;
        gap:6px;
    }

    .search-form .btn{
        width:100%;
    }

    .section-primary{
        padding:65px 0;
    }

    .cta-box .btn-group{
        flex-direction:column;
        width:100%;
    }

    .cta-box .btn-group .btn{
        width:100%;
    }


}


/* =========================================================
   RESPONSIVE — EXTRA SMALL
========================================================= */

@media(max-width:480px){

    .section{
        padding:55px 0;
    }

    .section-title{
        font-size:1.75rem;
    }

    .card{
        padding:20px;
        border-radius:17px;
    }

    .card-icon{
        width:56px;
        height:56px;
        margin-bottom:18px;
        border-radius:15px;
        font-size:22px;
    }

    .card h3{
        font-size:18px;
    }

    .card p{
        font-size:13.5px;
    }

    .form-control{
        min-height:50px;
        padding:11px 14px;
    }

    textarea.form-control{
        min-height:125px;
    }

    .checkbox{
        font-size:12px;
    }

    .faq-question{
        grid-template-columns:36px minmax(0,1fr) 32px;
        gap:9px;
        padding:10px 11px;
    }

    .faq-number{
        width:34px;
        height:34px;
    }

    .faq-question-text{
        font-size:13px;
    }

    .faq-toggle{
        width:31px;
        height:31px;
    }

    .faq-answer{
        padding-left:56px;
    }

    .faq-intro-card{
        padding:22px;
    }

    .section-primary{
        padding:55px 0;
    }


}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media(prefers-reduced-motion:reduce){

    .card,
    .card-icon,
    .btn,
    .whatsapp-float,
    #backToTop{
        transition:none;
    }

    .whatsapp-float::before{
        animation:none;
    }

    .faq-item,
    .faq-number,
    .faq-toggle,
    .faq-contact-btn,
    .faq-toggle i{
        transition:none;
    }


}


/* =========================================================
   PRINT
========================================================= */

@media print{

    .whatsapp-float,
    #backToTop,
    .shape{
        display:none !important;
    }

    .section{
        padding:30px 0;
    }

    .card{
        box-shadow:none;
        border:1px solid #ddd;
    }

}