/*==================================================
NOBO SERVICES V2
Premium Design System
==================================================*/

/*==================================================
ENVIRONMENT
==================================================*/

/*==================================================
CONTENT LAYER
==================================================*/

/*==================================================
HERO
==================================================*/

.hero-paper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* ==========================================
   HERO SECTION TAG
========================================== */

.hero-paper .section-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:12px 28px;

    margin-bottom:32px;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.14),
        rgba(212,175,55,.06)
    );

    color:var(--gold);

    border:1px solid rgba(212,175,55,.30);

    border-radius:999px;

    font-size:.82rem;
    font-weight:700;

    letter-spacing:.18em;
    text-transform:uppercase;

    box-shadow:
        0 8px 22px rgba(212,175,55,.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}

.hero-paper .section-tag:hover{

    transform:translateY(-2px);

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.20),
        rgba(212,175,55,.10)
    );

    box-shadow:
        0 12px 28px rgba(212,175,55,.20);

}



.hero-paper h1{
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:1.05;
    margin:1rem 0 2rem;
    color:#0f2f57;
}

.hero-paper p{
    max-width:700px;
    font-size:1.15rem;
    line-height:1.9;
    color:#5c6b7b;
}

.hero-paper p::after{

    content:"";

    display:block;

    width:90px;
    height:4px;

    margin:42px auto 0;

    border-radius:999px;

    background:var(--gold);

    box-shadow:
        0 0 18px rgba(212,175,55,.28);

}


/*==================================================
CTA
==================================================*/

.btn-primary{
    display:inline-block;
    margin-top:24px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:900px){
    .hero-paper{
        min-height:70vh;
        margin-top: 70px;
    }
}












.services-overview{
    position:relative;
    width:min(94%, 1450px);
    margin:48px auto;
    padding:90px 70px;
    background:#ffffff;
    border-radius:34px;
    box-shadow:
        0 30px 80px rgba(15,23,42,.08);
        transition:
    transform .35s ease,
    box-shadow .35s ease;
    z-index: 10;
}

.services-overview:hover{
    transform:translateY(-4px);
    box-shadow:
        0 40px 110px rgba(15,23,42,.12);
}

.services-overview h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 18px;
    color: var(--blue-primary);
    letter-spacing: -0.03em;
    max-width: 760px;
}

.services-overview > p {
    margin-bottom: 34px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 860px;
}

/* --------------------------------
   FIRST SECTION EMPHASIS
--------------------------------- */
.services-overview:first-of-type .service-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* --------------------------------
   PROGRAMME / DELIVERY SECTIONS
--------------------------------- */
.services-overview:nth-of-type(2) .service-card,
.services-overview:nth-of-type(3) .service-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

/* --------------------------------
   CORE CONTENT CARDS
--------------------------------- */
.service-grid{

    display:flex;
    flex-direction:column;

    gap:32px;

    margin-top:50px;

}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}

.service-card h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.service-card h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-top: 10px;
    background: var(--gold-accent);
    border-radius: 999px;
    opacity: 0.9;
}

.service-card p {
    flex-grow: 0;
}

/* --------------------------------
   SECTION DIVIDERS
--------------------------------- */
.section-divider-chip {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    height: 56px;
    margin: 0 auto;
    z-index: 2;
}

.section-divider-chip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(30, 58, 138, 0.10) 18%,
        rgba(212, 175, 55, 0.45) 50%,
        rgba(30, 58, 138, 0.10) 82%,
        transparent 100%
    );
}

.section-divider-chip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--gold-accent),
        #f0cf63
    );
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 8px 20px rgba(212, 175, 55, 0.20);
}

.section-divider-chip-light::after {
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 8px 20px rgba(212, 175, 55, 0.20);
}

/* ========================================
   STICKY SPLIT LAYOUT
======================================== */

.services-split-section {
    position: relative;
    overflow: visible;
}

/* subtle section depth */
.services-split-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.10),
        transparent 70%
    );
    pointer-events: none;
    filter: blur(20px);
}

.split-intro {
    position: sticky;
    top: 120px;
    align-self: start;
    padding-right: 10px;
}

.split-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--blue-primary);
    line-height: 1.15;
}

.split-intro p {
    max-width: 540px;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.split-cards {
    display: flex;
    flex-direction: column;
    gap: 42px;
    position: relative;
}

.split-cards .service-card {
    position: relative;
    min-height: 200px;
    padding: 38px 34px;
}

/* layered scroll feel */
.split-cards .service-card:nth-child(1) {
    margin-top: 0;
}
.split-cards .service-card:nth-child(2) {
    margin-left: 28px;
}
.split-cards .service-card:nth-child(3) {
    margin-left: 56px;
}
.split-cards .service-card:nth-child(4) {
    margin-left: 84px;
}

/* stronger stacked feeling */
.split-cards .service-card::after {
    content: "";
    position: absolute;
    inset: auto 18px -12px 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(
        ellipse at center,
        rgba(15, 23, 42, 0.10),
        transparent 72%
    );
    z-index: -1;
    pointer-events: none;
}

.split-cards .service-card:hover {
    transform: translateY(-10px) scale(1.015);
}

/* subtle section depth */
.services-split-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.10),
        transparent 70%
    );
    pointer-events: none;
    filter: blur(20px);
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split-intro {
        position: relative;
        top: auto;
        padding-right: 0;
    }

    .split-intro p {
        max-width: 100%;
    }

    .split-cards .service-card:nth-child(2),
    .split-cards .service-card:nth-child(3),
    .split-cards .service-card:nth-child(4) {
        margin-left: 0;
    }
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split-intro {
        position: relative;
        top: auto;
        padding-right: 0;
    }

    .split-intro p {
        max-width: 100%;
    }

    .split-cards .service-card:nth-child(2),
    .split-cards .service-card:nth-child(3),
    .split-cards .service-card:nth-child(4) {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .split-layout {
        gap: 28px;
    }

    .split-intro h2 {
        font-size: 1.8rem;
    }

    .split-cards {
        gap: 24px;
    }

    .split-cards .service-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .section-divider-chip {
        width: calc(100% - 32px);
        height: 44px;
    }

    .section-divider-chip::after {
        width: 12px;
        height: 12px;
        box-shadow:
            0 0 0 6px rgba(255, 255, 255, 0.95),
            0 6px 16px rgba(212, 175, 55, 0.18);
    }

    .section-divider-chip-light::after {
        box-shadow:
            0 0 0 6px rgba(255, 255, 255, 0.95),
            0 6px 16px rgba(212, 175, 55, 0.18);
    }
}


.split-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-accent);
}

/* ==========================================
   CTA SECTION
========================================== */

/* ==========================================
   CTA SECTION TAG
========================================== */

.cta-paper .section-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 24px;

    margin-bottom:28px;

    background:rgba(212,175,55,.10);

    color:#b88918;

    border:1px solid rgba(212,175,55,.30);

    border-radius:999px;

    font-size:.85rem;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;

    box-shadow:
        0 6px 18px rgba(212,175,55,.10);

}

/* ==========================================
   CTA BUTTON
========================================== */

.cta-paper .btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:30px;

    padding:18px 42px;

    min-width:230px;

    background:linear-gradient(
        135deg,
        #f4d979 0%,
        #d4af37 55%,
        #b88918 100%
    );

    color:#081321;

    text-decoration:none;

    font-weight:700;
    font-size:1rem;
    letter-spacing:.4px;

    border-radius:999px;

    border:none;

    box-shadow:
        0 14px 35px rgba(212,175,55,.28),
        0 0 24px rgba(212,175,55,.15);

    position:relative;
    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        filter .35s ease;

}

/* Shine */

.cta-paper .btn-primary::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:left .75s ease;

}

.cta-paper .btn-primary:hover{

    transform:translateY(-4px);

    filter:brightness(1.04);

    box-shadow:
        0 18px 40px rgba(212,175,55,.38),
        0 0 35px rgba(212,175,55,.22);

}

.cta-paper .btn-primary:hover::before{

    left:160%;

}

.cta-paper .btn-primary:active{

    transform:translateY(-1px);

}
