/* =====================================================
   SERVICES HERO
===================================================== */

.services-hero{

    position:relative;

    min-height:auto;

    background:
    linear-gradient(
        135deg,
        #07101f 0%,
        #10243c 55%,
        #17304f 100%
    );

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:56px 20px 64px;

    overflow:hidden;
}

.services-hero::before{
    content:none;

}

.services-hero-visual{
    position:relative;
    z-index:1;
    width:min(900px, 100%);
    margin:0 auto;
    border-radius:26px;
    overflow:hidden;
    background:#081426;
    border:1px solid rgba(200,169,107,.35);
    box-shadow:
    0 26px 70px rgba(0,0,0,.32);
}

.services-hero-visual img{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:1030/687;
    object-fit:contain;
    object-position:center center;
}

.hero-overlay{

    position:relative;

    z-index:2;

    width:auto;

    max-width:100%;

    margin:22px auto 0;

    padding:18px 22px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        rgba(7,16,31,.72),
        rgba(23,48,79,.72)
    );

    border:1px solid rgba(255,255,255,.14);

    backdrop-filter:blur(12px);

    box-shadow:
    0 16px 38px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10);

    display:flex;

    justify-content:center;
}
.services-hero .container{
    max-width:1000px;
}


.hero-buttons{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

    justify-content:center;
}

.hero-buttons .btn-primary{

    min-width:260px;

    text-align:center;

    font-size:17px;
}

.hero-buttons .btn-outline{

    min-width:240px;

    text-align:center;

    font-size:17px;

    border:2px solid white;

    color:white;
}

.hero-buttons .btn-outline:hover{

    background:white;

    color:#17304f;
}

/* =====================================================
   PROBLEM SECTION
===================================================== */

.services-problem{

    padding:120px 20px;

    background:#ffffff;
}

.services-problem h2{

    text-align:center;

    font-size:36px;

    color:var(--primary);

    margin-bottom:60px;
}

.problem-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

.problem-item{

    background:var(--cream);

    padding:25px;

    border-radius:18px;

    font-size:17px;

    border-left:4px solid var(--gold);

    box-shadow:
    0 8px 20px rgba(0,0,0,.04);
}

/* =====================================================
   MAIN SERVICES
===================================================== */

.services-main{

    padding:140px 20px;

    background:var(--cream);
}

.services-main h2{

    text-align:center;

    font-size:40px;

    margin-bottom:70px;

    color:var(--primary);
}

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:70px 35px;

    align-items:start;

}

.service-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border-top:4px solid #c8a96b;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #c8a96b,
        #f4dfb2
    );

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

.service-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #c8a96b,
        #e7cf95
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:-70px 0 25px;

    box-shadow:0 12px 30px rgba(200,169,107,.35);

}

.service-card h3{

    font-size:30px;
    line-height:1.3;
    margin-bottom:22px;
    color:var(--primary);
    min-height:72px;
}

.service-card p{

    color:var(--text-soft);

    line-height:2;

    font-size:17px;

}

/* =====================================================
   PROCESS SECTION
===================================================== */

.service-process{

    padding:140px 20px;

    background:white;
}

.service-process h2{

    text-align:center;

    margin-bottom:70px;

    font-size:40px;

    color:var(--primary);
}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

.process-item{

    text-align:center;

    padding:35px;

    border-radius:24px;

    background:var(--cream);
}

.process-item span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:var(--gold);

    color:var(--primary);

    font-size:24px;

    font-weight:700;
}

.process-item h3{

    margin-bottom:15px;

    color:var(--primary);
}

/* =====================================================
   LEARNING AREA
===================================================== */

.learning-area{

    padding:120px 20px;

    background:
    linear-gradient(
        135deg,
        #10243c 0%,
        #17304f 48%,
        #2a4d6f 100%
    );

    color:white;

    position:relative;

    overflow:hidden;
}

.learning-area::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at 18% 20%,
        rgba(200,169,107,.22),
        transparent 28%
    ),
    radial-gradient(
        circle at 85% 72%,
        rgba(255,255,255,.10),
        transparent 30%
    );
    pointer-events:none;
}

.learning-area .container{
    position:relative;
    z-index:1;
}

.learning-area h2{

    text-align:center;

    margin-bottom:44px;

    font-size:38px;

    color:#ffffff;
}

.learning-tags{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(190px,1fr));

    max-width:1040px;

    margin:0 auto;

    gap:16px;
}

.learning-tags span{

    min-height:74px;

    padding:16px 20px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.14),
        rgba(255,255,255,.06)
    );

    border:
    1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#f8fafc;

    font-weight:600;

    line-height:1.45;

    box-shadow:
    0 14px 34px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.12);

    transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.learning-tags span:hover{
    transform:translateY(-6px);
    border-color:rgba(200,169,107,.65);
    background:
    linear-gradient(
        135deg,
        rgba(200,169,107,.28),
        rgba(255,255,255,.10)
    );
    box-shadow:
    0 20px 40px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* =====================================================
   TESTIMONIAL
===================================================== */

.services-testimonial{

    padding:140px 20px;

    background:#ffffff;
}

.services-testimonial h2{

    text-align:center;

    margin-bottom:70px;

    color:var(--primary);

    font-size:40px;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.testimonial-card{

    background:var(--cream);

    border-radius:24px;

    padding:35px;

    position:relative;
}

.testimonial-card p{

    line-height:2;

    margin-bottom:20px;

    font-style:italic;
}

.testimonial-card h4{

    color:var(--gold);
}

/* =====================================================
   FAQ
===================================================== */

.services-faq{

    padding:115px 20px;

    background:var(--cream);
}

.services-faq .container{
    max-width:920px;
}

.services-faq h2{

    text-align:center;

    margin-bottom:45px;

    color:var(--primary);

    font-size:40px;
}

.faq-item{

    background:white;

    padding:28px 32px;

    border-radius:18px;

    margin-bottom:18px;

    box-shadow:
    0 12px 28px rgba(0,0,0,.05);

    border-left:4px solid rgba(200,169,107,.75);
}

.faq-item h3{

    margin-bottom:10px;

    color:var(--primary);

    font-size:20px;
}

.faq-item p{

    color:var(--text-soft);

    line-height:1.9;
}

/* =====================================================
   CTA PROGRAM
===================================================== */

.cta-program{
    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );
    color:white;
    text-align:center;
    padding:95px 20px;
    margin-bottom:0;
}

.cta-program h2{
    font-size:40px;
    margin-bottom:16px;
}

.cta-program p{
    max-width:680px;
    margin:auto auto 32px;
    line-height:1.9;
}

.cta-button-wrapper{
    margin-top:34px;
}

.footer,
footer,
.site-footer{
    margin-top:0 !important;
}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-title span{
    color:#c8a96b;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    margin:20px 0;
    font-size:42px;
    color:#17304f;
}

.section-title p{
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

/* =====================================================
   MOBILE
===================================================== */

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

.service-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.service-card{

    padding:32px 28px 28px;

    height:auto !important;

    min-height:auto !important;

    margin-top:25px;

}

.service-card h3{

    font-size:22px;

    line-height:1.35;

    min-height:unset !important;

    margin-bottom:18px;

}

.service-card p{

    font-size:16px;

    line-height:1.9;

    margin-bottom:0;

}

.service-icon{

    width:72px;

    height:72px;

    margin:-65px 0 20px;

    font-size:30px;

}

}
