/* ============================================================
   SERVICES.CSS — Saaradaa Learknowations Services Page
   ============================================================ */

/* ── Services Hero ─────────────────────────────────── */
.services-hero {
    padding: 140px 5% 80px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.35);
    color: var(--amber-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-hero h1 span {
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 5% 60px;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }
}

/* ── Services Grid Overview ───────────────────────── */
.services-overview {
    padding: 80px 5% 60px;
    background: var(--off-white);
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--royal-blue);
}

.svc-card .num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 8px;
    right: 16px;
    line-height: 1;
}

.svc-card .svc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(41, 87, 164, 0.1), rgba(245, 166, 35, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.svc-card .svc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--royal-blue);
    fill: none;
    stroke-width: 1.5;
}

.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--royal-deeper);
}

.svc-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.svc-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--royal-blue);
    font-family: var(--font-heading);
    transition: gap 0.3s ease;
}

.svc-card:hover .arrow {
    gap: 10px;
}

@media (max-width: 900px) {
    .services-overview .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-overview .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Service Detail Sections ──────────────────────── */
.service-detail {
    padding: 70px 5%;
    max-width: 950px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

.service-detail:nth-child(even) {
    background: var(--gray-50);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.detail-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--amber), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.detail-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--royal-deeper);
}

.detail-body {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.9;
}

.detail-body ul {
    margin: 16px 0 16px 20px;
}

.detail-body ul li {
    margin-bottom: 8px;
    color: var(--gray-600);
}

.detail-body strong {
    color: var(--royal-deeper);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--royal-blue);
    font-family: var(--font-heading);
}

.back-to-top:hover {
    color: var(--amber);
}

/* ── USPs Section ──────────────────────────────────── */
.usps-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.usp-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.usp-item .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.usp-item .check svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

.usp-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .usps-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Partner CTA ───────────────────────────────────── */
.partner-cta {
    padding: 80px 5%;
    text-align: center;
    background: var(--white);
}

.partner-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.partner-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto 32px;
}