/* ============================================
   THEME SERVICES - Ceria & Segar
   Playful Pastel — Responsive
   ============================================ */

/* ========== VARIABLE ========== */
.theme-services {
    /* Warna pastel */
    --pink: #fce4ec;           /* pink lembut */
    --green-light: #e8f5e9;    /* hijau segar */
    --purple-light: #f3e5f5;   /* ungu lembut */
    --yellow-light: #fff8e1;   /* kuning cerah */
    --text: #37474f;           /* abu gelap */
    --white: #ffffff;          /* putih */

    /* Warna turunan */
    --bg-main: #fafafa;        /* latar utama */
    --border-light: #f5f5f5;   /* border tipis */
    --text-muted: #666666;     /* teks abu-abu */
    --text-light: #888888;     /* teks lebih terang */
    --pink-accent: #e91e63;    /* aksen pink tua (hover, harga) */
    --shadow-card: rgba(0, 0, 0, 0.02);
    --shadow-card-hover: rgba(0, 0, 0, 0.06);
    --shadow-btn: rgba(0, 0, 0, 0.05);
    --shadow-btn-hover: rgba(0, 0, 0, 0.08);

    /* Font */
    font-family: 'Nunito', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text);
}

/* ========== RESET CONTAINER ========== */
.theme-services .premium-container,
.theme-services .main-content {
    max-width: 100% !important;
    padding: 0 !important;
}

/* ========== NAVIGASI ========== */
.cs-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.cs-nav-in {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 14px 5%;
}

.cs-nav-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink);
}

.cs-nav-brand {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    margin-right: auto;
}

.cs-nav-links {
    display: flex;
    gap: 20px;
}

.cs-nav-links a {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.cs-nav-links a:hover {
    color: var(--pink-accent);
}

/* ========== HERO ========== */
.cs-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.cs-hero-bg {
    width: 100%;
    height: 55vh;
    min-height: 340px;
    display: block;
}

.cs-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gelombang dekoratif di bawah hero */
.cs-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path fill='%23fafafa' d='M0,40 C360,80 720,0 1440,40 L1440,80 L0,80 Z'/></svg>") no-repeat bottom;
    background-size: cover;
}

.cs-hero-ct {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.cs-hero-ct h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 6px;
}

.cs-hero-ct p {
    font-size: 14px;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
    margin-bottom: 16px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.cs-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--purple-light));
    color: var(--text);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px var(--shadow-btn);
}

.cs-hero-btn:hover {
    opacity: 0.90;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-btn-hover);
}

/* ========== BUBBLE / PROMO ========== */
.cs-bubble {
    max-width: 320px;
    margin: -30px auto 20px;
    background: var(--yellow-light);
    padding: 14px 24px;
    border-radius: 60px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.cs-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--yellow-light);
}

/* ========== PRODUK ========== */
.cs-prod {
    padding: 40px 5% 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.cs-prod-hd {
    text-align: center;
    margin-bottom: 36px;
}

.cs-prod-hd h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--text);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cs-card {
    background: var(--white);
    border-radius: 28px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-card);
    border: 1px solid var(--border-light);
}

.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--shadow-card-hover);
    border-color: var(--pink);
}

.cs-card .cs-im {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--pink), var(--purple-light));
    padding: 4px;
}

.cs-card .cs-im img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cs-card:hover .cs-im img {
    transform: scale(1.08);
}

.cs-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.cs-pr {
    font-size: 17px;
    font-weight: 700;
    color: var(--pink-accent);
    margin-bottom: 14px;
}

.cs-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--purple-light));
    color: var(--text);
    padding: 10px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cs-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-btn);
}

/* ========== FOOTER ========== */
.cs-ftr {
    background: linear-gradient(135deg, var(--green-light), var(--yellow-light));
    padding: 40px 5% 20px;
}

.cs-ftr-in {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.cs-ftr-in h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.cs-ftr-in p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.cs-ftr-sosmed {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.cs-ftr-sosmed a {
    font-size: 20px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.cs-ftr-sosmed a:hover {
    color: var(--pink-accent);
}

.cs-ftr-bot {
    text-align: center;
    color: #bbbbbb;
    font-size: 13px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ========== TOMBOL WHATSAPP MENGAMBANG ========== */
.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40);
    transition: all 0.25s ease;
    z-index: 999;
}

.float-wa:hover {
    transform: scale(1.10);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.50);
}

/* ==========================================
   RESPONSIVE (tanpa mengubah desain)
   ========================================== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .cs-hero-bg {
        height: 50vh;
        min-height: 300px;
    }

    .cs-hero-ct {
        bottom: 70px;
    }

    .cs-hero-ct h1 {
        font-size: clamp(26px, 3.5vw, 34px);
    }

    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .cs-ftr-in {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Mobile besar (max-width: 768px) */
@media (max-width: 768px) {
    .cs-nav-in {
        padding: 10px 4%;
        gap: 6px 12px;
    }

    .cs-nav-links {
        gap: 12px 16px;
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 6px;
        border-top: 1px solid var(--border-light);
    }

    .cs-nav-links a {
        font-size: 12px;
    }

    .cs-nav-brand {
        font-size: 14px;
    }

    .cs-nav-logo {
        width: 30px;
        height: 30px;
    }

    .cs-hero {
        border-radius: 0 0 30px 30px;
    }

    .cs-hero-bg {
        height: 45vh;
        min-height: 260px;
    }

    .cs-hero-ct {
        bottom: 60px;
        padding: 16px;
    }

    .cs-hero-ct h1 {
        font-size: clamp(22px, 3vw, 30px);
    }

    .cs-hero-ct p {
        font-size: 13px;
        margin-bottom: 12px;
        max-width: 320px;
    }

    .cs-hero-btn {
        padding: 10px 26px;
        font-size: 13px;
    }

    .cs-hero-wave {
        height: 50px;
    }

    .cs-bubble {
        max-width: 260px;
        padding: 10px 18px;
        font-size: 12px;
        margin: -20px auto 16px;
        border-radius: 40px;
    }

    .cs-bubble::after {
        left: 30px;
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 10px;
        bottom: -10px;
    }

    .cs-prod {
        padding: 30px 4% 40px;
    }

    .cs-prod-hd h2 {
        font-size: 20px;
    }

    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .cs-card {
        padding: 20px 14px 18px;
        border-radius: 22px;
    }

    .cs-card .cs-im {
        width: 90px;
        height: 90px;
        padding: 3px;
        margin-bottom: 12px;
    }

    .cs-card h3 {
        font-size: 14px;
    }

    .cs-pr {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .cs-btn {
        padding: 8px 22px;
        font-size: 12px;
    }

    .cs-ftr {
        padding: 30px 4% 16px;
    }

    .cs-ftr-in {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cs-ftr-in h4 {
        font-size: 13px;
    }

    .cs-ftr-in p {
        font-size: 12px;
    }

    .cs-ftr-sosmed a {
        font-size: 18px;
    }

    .cs-ftr-bot {
        font-size: 12px;
        margin-top: 18px;
        padding-top: 12px;
    }

    .float-wa {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Mobile kecil (max-width: 480px) */
@media (max-width: 480px) {
    .cs-nav-brand {
        font-size: 12px;
    }

    .cs-nav-logo {
        width: 26px;
        height: 26px;
        border-width: 1.5px;
    }

    .cs-nav-links {
        gap: 8px 12px;
    }

    .cs-nav-links a {
        font-size: 10px;
    }

    .cs-hero {
        border-radius: 0 0 20px 20px;
    }

    .cs-hero-bg {
        height: 40vh;
        min-height: 220px;
    }

    .cs-hero-ct {
        bottom: 40px;
        padding: 12px;
    }

    .cs-hero-ct h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .cs-hero-ct p {
        font-size: 12px;
        margin-bottom: 10px;
        max-width: 260px;
    }

    .cs-hero-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .cs-hero-wave {
        height: 30px;
    }

    .cs-bubble {
        max-width: 220px;
        padding: 8px 14px;
        font-size: 11px;
        margin: -14px auto 12px;
        border-radius: 30px;
    }

    .cs-bubble::after {
        left: 20px;
        border-left-width: 6px;
        border-right-width: 6px;
        border-top-width: 8px;
        bottom: -8px;
    }

    .cs-prod {
        padding: 24px 4% 30px;
    }

    .cs-prod-hd h2 {
        font-size: 18px;
    }

    .cs-prod-hd {
        margin-bottom: 24px;
    }

    .cs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cs-card {
        padding: 16px 12px 16px;
        border-radius: 20px;
    }

    .cs-card .cs-im {
        width: 80px;
        height: 80px;
        padding: 3px;
        margin-bottom: 10px;
    }

    .cs-card h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .cs-pr {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .cs-btn {
        padding: 6px 18px;
        font-size: 11px;
    }

    .cs-ftr {
        padding: 24px 4% 12px;
    }

    .cs-ftr-in {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .cs-ftr-in h4 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .cs-ftr-in p {
        font-size: 11px;
    }

    .cs-ftr-sosmed {
        justify-content: center;
    }

    .cs-ftr-sosmed a {
        font-size: 16px;
    }

    .cs-ftr-bot {
        font-size: 11px;
        margin-top: 14px;
        padding-top: 10px;
    }

    .float-wa {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        bottom: 12px;
        right: 12px;
    }
}