/* ==============================================
   SERVICES PAGE — PT Green Solution Lestari
   Theme: Professional Plant & Sustainability
   ============================================== */

:root {
    --svc-green: #8BBF36;
    --svc-green-dark: #3a5a1a;
    --svc-green-deep: #1a3a0a;
    --svc-green-light: #f0fdf4;
    --svc-green-mist: #f7faf5;
    --svc-text: #4b5563;
    --svc-heading: #1a2e12;
    --svc-border: rgba(139, 191, 54, 0.12);
}

/* ==============================================
   1. KATEGORI LAYANAN — Immersive Split Cards
   ============================================== */
.svc-kategori-section {
    position: relative;
    padding: 6rem 0 7rem;
    background: #fff;
    overflow: hidden;
}

/* Soft organic glows in corners */
.svc-kategori-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.svc-kategori-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.svc-kategori-section .container {
    position: relative;
    z-index: 2;
}

/* -- Shared Section Headers -- */
.svc-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.svc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--svc-green);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.svc-section-eyebrow i {
    font-size: 0.7rem;
}

.svc-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--svc-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.svc-section-subtitle {
    font-size: 1.05rem;
    color: var(--svc-text);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.svc-title-accent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.svc-title-accent .line {
    width: 40px;
    height: 2px;
    background: var(--svc-green);
    border-radius: 2px;
}

.svc-title-accent .dot {
    width: 8px;
    height: 8px;
    background: var(--svc-green);
    border-radius: 50%;
}

/* -- Kategori Grid: 2×2 -- */
.svc-kategori-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ============ Immersive Split Card ============ */
.svc-kat-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 190px;
}

.svc-kat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(58, 90, 26, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

/* --- Left: Green Icon Area --- */
.svc-kat-icon-area {
    position: relative;
    width: 160px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

/* Each card gets a unique green gradient */
.svc-kat-card:nth-child(1) .svc-kat-icon-area {
    background: linear-gradient(145deg, #8BBF36, #6a9e1f);
}

.svc-kat-card:nth-child(2) .svc-kat-icon-area {
    background: linear-gradient(145deg, #5a9e2a, #3a7a14);
}

.svc-kat-card:nth-child(3) .svc-kat-icon-area {
    background: linear-gradient(145deg, #4a8e3a, #2d6b1e);
}

.svc-kat-card:nth-child(4) .svc-kat-icon-area {
    background: linear-gradient(145deg, #3a7a2a, #1a5a0a);
}

/* Giant watermark number */
.svc-kat-watermark {
    position: absolute;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    bottom: -10px;
    right: -5px;
    user-select: none;
    pointer-events: none;
    transition: all 0.5s ease;
}

.svc-kat-card:hover .svc-kat-watermark {
    color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Icon itself */
.svc-kat-icon-area i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-kat-card:hover .svc-kat-icon-area i {
    transform: scale(1.15) rotate(5deg);
}

/* Subtle pattern overlay on icon area */
.svc-kat-icon-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    z-index: 1;
    pointer-events: none;
}

/* --- Right: Text Content --- */
.svc-kat-text-area {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    position: relative;
}

/* Green separator line between icon and text */
.svc-kat-text-area::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--svc-green), rgba(139, 191, 54, 0.15));
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.svc-kat-card:hover .svc-kat-text-area::before {
    opacity: 1;
}

.svc-kat-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--svc-heading);
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.svc-kat-card:hover .svc-kat-title {
    color: var(--svc-green-dark);
}

.svc-kat-desc {
    font-size: 0.9rem;
    color: var(--svc-text);
    line-height: 1.65;
    margin: 0;
}

/* ==============================================
   2. KATALOG LAYANAN — Botanical Gallery
   ============================================== */
.svc-katalog-section {
    position: relative;
    padding: 7rem 0 8rem;
    background: var(--svc-green-mist);
    overflow: hidden;
}

/* Faint organic blobs */
.svc-katalog-deco-1 {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.svc-katalog-deco-2 {
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.03) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.svc-katalog-section .container {
    position: relative;
    z-index: 2;
}

/* ============ Botanical Showcase Banner ============ */
.svc-showcase-banner {
    position: relative;
    padding: 3.5rem 3rem;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, #0f2b0a 0%, #1a3a0a 40%, #0d2406 100%);
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
}

/* Radial glow — top-left sunlight through canopy */
.svc-showcase-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Radial glow — bottom-right */
.svc-showcase-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Dot pattern overlay */
.svc-showcase-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(139, 191, 54, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Giant SVG leaf silhouette on the right */
.svc-showcase-leaf {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.svc-showcase-leaf svg {
    width: 100%;
    height: 100%;
    fill: #8BBF36;
}

/* Main content layout */
.svc-showcase-content {
    position: relative;
    z-index: 5;
}

/* Top row: text + giant number */
.svc-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.svc-showcase-text {
    flex: 1;
    max-width: 560px;
}

.svc-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--svc-green);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.svc-showcase-eyebrow i {
    font-size: 0.65rem;
}

.svc-showcase-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.svc-showcase-title-accent {
    color: var(--svc-green);
}

/* Subtle underline beneath title */
.svc-showcase-underline {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.svc-showcase-underline .bar {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--svc-green), rgba(139, 191, 54, 0.2));
    border-radius: 3px;
}

.svc-showcase-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ============ Giant Number Display (Right Side) ============ */
.svc-showcase-hero-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.svc-hero-num-wrap {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.svc-hero-num {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px rgba(139, 191, 54, 0.35);
    position: relative;
    user-select: none;
}

/* Fill overlay for the number */
.svc-hero-num-fill {
    position: absolute;
    inset: 0;
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, rgba(139, 191, 54, 0.5) 0%, rgba(139, 191, 54, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-hero-num-plus {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--svc-green);
    line-height: 1;
    margin-left: 0.15em;
}

.svc-hero-num-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.75rem;
    text-align: center;
}

/* Bottom stats row */
.svc-showcase-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0 1.5rem;
}

/* Clickable stat links */
a.svc-stat-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 12px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

a.svc-stat-link:hover {
    background: rgba(139, 191, 54, 0.08);
}

/* Smooth scroll targets with header offset */
#kategori-layanan,
#daftar-layanan {
    scroll-margin-top: 100px;
}

.svc-stat-item:first-child {
    padding-left: 0;
}

.svc-stat-item:last-child {
    padding-right: 0;
}

/* Vertical separator between stats */
.svc-stat-item+.svc-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 191, 54, 0.12);
    border-radius: 14px;
    color: var(--svc-green);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.svc-stat-item:hover .svc-stat-icon {
    background: var(--svc-green);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(139, 191, 54, 0.3);
}

.svc-stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.svc-stat-number span {
    font-size: 1.35rem;
    color: var(--svc-green);
    font-weight: 700;
}

.svc-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
}

/* -- Katalog Grid -- */
.svc-katalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

/* ============ Premium Service Card ============ */
.svc-service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.svc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(58, 90, 26, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

/* Bottom Green Accent Bar — grows on hover */
.svc-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--svc-green), var(--svc-green-dark));
    border-radius: 4px 4px 0 0;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.svc-service-card:hover::after {
    width: 100%;
    border-radius: 0;
}

/* --- Image Section with Overlay Reveal --- */
.svc-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.svc-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}

.svc-service-card:hover .svc-card-img-wrap img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Base gradient — always visible, subtle */
.svc-card-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 58, 10, 0.5) 0%,
            rgba(26, 58, 10, 0.1) 35%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.svc-service-card:hover .svc-card-img-gradient {
    background: linear-gradient(to top,
            rgba(26, 58, 10, 0.85) 0%,
            rgba(26, 58, 10, 0.5) 50%,
            rgba(26, 58, 10, 0.3) 100%);
}

/* Overlay CTA — appears on hover */
.svc-card-overlay-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.svc-service-card:hover .svc-card-overlay-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.svc-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--svc-green-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.svc-overlay-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.svc-overlay-btn:hover {
    background: var(--svc-green);
    color: #fff;
    border-color: var(--svc-green);
    box-shadow: 0 12px 30px rgba(139, 191, 54, 0.3);
}

.svc-overlay-btn:hover i {
    transform: translateX(3px);
}

/* Category Pill — bottom-left of image */
.svc-card-pill {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svc-card-pill i {
    font-size: 0.65rem;
    color: var(--svc-green);
}

.svc-card-pill span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--svc-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* On hover: pill fades to make room for overlay CTA */
.svc-service-card:hover .svc-card-pill {
    transform: translateY(-8px);
    opacity: 0;
}

/* --- Card Body --- */
.svc-card-content {
    padding: 1.75rem 1.75rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.svc-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--svc-heading);
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.svc-service-card:hover .svc-card-title {
    color: var(--svc-green-dark);
}

.svc-card-text {
    font-size: 0.9rem;
    color: var(--svc-text);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* --- Full-Width Premium Footer Link --- */
.svc-card-footer {
    margin-top: auto;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.svc-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--svc-green-dark);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svc-card-link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.svc-card-link-text i {
    font-size: 0.7rem;
    color: var(--svc-green);
}

.svc-card-link-arrow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-green-light);
    border-radius: 50%;
    color: var(--svc-green-dark);
    font-size: 0.75rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.svc-service-card:hover .svc-card-link {
    color: var(--svc-green);
}

.svc-service-card:hover .svc-card-link-arrow {
    background: var(--svc-green);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 191, 54, 0.3);
}

/* --- Empty State --- */
.svc-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
    background: rgba(139, 191, 54, 0.03);
    border: 2px dashed var(--svc-border);
    border-radius: 24px;
}

.svc-empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-green-light);
    border-radius: 50%;
    color: var(--svc-green);
    font-size: 2.5rem;
}

.svc-empty-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--svc-heading);
    margin-bottom: 0.75rem;
}

.svc-empty-text {
    color: var(--svc-text);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Pagination */
.svc-pagination-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.svc-pagination-inner {
    display: inline-block;
    background: #fff;
    border-radius: 50px;
    padding: 0.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--svc-border);
}


/* ==============================================
   3. CTA — Deep Green Invitation
   ============================================== */
.svc-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a3a0a 0%, #0d2406 60%, #0a1c04 100%);
    overflow: hidden;
}

/* Organic radial glows */
.svc-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.svc-cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 191, 54, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.svc-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.svc-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 191, 54, 0.15);
    border: 1px solid rgba(139, 191, 54, 0.25);
    color: var(--svc-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.svc-cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.svc-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.svc-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.svc-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--svc-green);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(139, 191, 54, 0.3);
}

.svc-btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 191, 54, 0.4);
    background: #9dd43e;
}

.svc-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.35s ease;
}

.svc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .svc-kat-icon-area {
        width: 130px;
        min-width: 130px;
    }

    .svc-kat-watermark {
        font-size: 5.5rem;
    }

    .svc-katalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .svc-kategori-section {
        padding: 4rem 0 5rem;
    }

    .svc-kategori-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .svc-kat-card {
        min-height: auto;
    }

    .svc-kat-icon-area {
        width: 120px;
        min-width: 120px;
    }

    .svc-kat-watermark {
        font-size: 5rem;
    }

    .svc-katalog-section {
        padding: 5rem 0 6rem;
    }

    .svc-katalog-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .svc-showcase-banner {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .svc-showcase-top {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .svc-showcase-text {
        text-align: center;
    }

    .svc-showcase-eyebrow {
        justify-content: center;
    }

    .svc-showcase-underline {
        justify-content: center;
    }

    .svc-showcase-hero-number {
        align-self: center;
    }

    .svc-hero-num {
        font-size: 4.5rem;
    }

    .svc-hero-num-fill {
        font-size: 4.5rem;
    }

    .svc-hero-num-plus {
        font-size: 2rem;
    }

    .svc-showcase-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .svc-stat-item+.svc-stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem 0 0;
    }

    .svc-stat-item {
        padding: 0;
    }

    .svc-showcase-leaf {
        width: 200px;
        height: 200px;
        right: -30px;
    }


    .svc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .svc-section-header {
        margin-bottom: 3rem;
    }

    .svc-kat-card {
        flex-direction: column;
    }

    .svc-kat-icon-area {
        width: 100%;
        min-width: 100%;
        height: 100px;
    }

    .svc-kat-watermark {
        font-size: 4.5rem;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .svc-kat-text-area {
        padding: 1.5rem;
    }

    .svc-kat-text-area::before {
        display: none;
    }

    .svc-card-img-wrap {
        height: 190px;
    }

    .svc-card-content {
        padding: 1.25rem 1.25rem 1.5rem;
    }
}