        body {
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --boc-base: rgba(33, 111, 160, 1);
            --boc-base-light: rgba(33, 111, 160, 0.4);
            --boc-nursery-card: rgba(9, 118, 80, 1);
            --boc-nursery-bg: rgba(6, 75, 61, 1);
        }

                .boc-footer {
            background-color: #097650;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            padding: 4rem 0 2rem 0;
        }

        .footer-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .footer-heading {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .mt-custom {
            margin-top: 1.5rem;
        }
        .brand-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-logo {
            height: 4rem;
            width: auto;
            filter: brightness(0) invert(1);
            align-self: flex-start;
        }
        .footer-desc {
            font-size: 0.875rem;
            line-height: 1.625;
            color: #e5e7eb;
            text-align: justify;
        }
        .social-links {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .social-icon {
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .footer-link {
            font-size: 0.875rem;
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.625;
            display: block;
        }
        .footer-link:hover {
            color: #ffffff;
        }
        .address-link {
            margin-bottom: 1rem;
        }
        .footer-subtext {
            font-size: 0.75rem;
            color: #d1d5db;
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: -0.025em;
        }
        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-list a {
            font-size: 0.875rem;
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-list a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .form-input {
            width: 100%;
            background-color: #f3f4f6;
            color: #374151;
            padding: 0.875rem 1rem;
            border-radius: 0.5rem;
            border: 2px solid transparent;
            outline: none;
            font-family: inherit;
            font-size: 0.875rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus {
            border-color: #34d399;
        }
        .submit-btn {
            width: 100%;
            background-color: #2da1d9;
            color: #ffffff;
            font-weight: 700;
            padding: 0.875rem 1rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.1s ease;
            font-family: inherit;
            font-size: 0.875rem;
        }
        .submit-btn:hover {
            background-color: #258ab8;
        }
        .submit-btn:active {
            transform: scale(0.95);
        }
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.75rem;
            font-weight: 600;
            color: #d1d5db;
            text-align: center;
        }
        .icon-link {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .icon-link i {
            margin-top: 0.25rem;
            font-size: 1rem;
            color: #34d399;
        }
        .icon-link span {
            flex: 1;
        }
        /* Tablet & Layar Menengah */
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                text-align: left;
            }
        }

        /* Laptop & Desktop / Monitor Ultrawide */
        @media (min-width: 1024px) {
            .footer-container {
                padding: 0 2.5rem;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Smooth Mega Menu Transition */
        .mega-menu {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-5px);
        }

        .group:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Style Konten pertama */
        .nursery-wrapper {
            display: flex;
            flex-direction: column;
            width: 100%;
            font-family: 'Poppins', sans-serif;
        }

        /* --- KONTEN 1: Hero Section --- */
        .nursery-hero-section {
            position: relative;
            width: 100%;
            height: 60vh;
            /* Tinggi menyesuaikan */
            min-height: 400px;
        }

        .nursery-hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .nursery-hero-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.25);
            /* Efek gelap sedikit */
            z-index: 1;
        }

        /* Card Kiri Bawah (Menembus ke konten 2) */
        .nursery-card {
            position: absolute;
            left: 0;
            bottom: -4rem;
            /* Minus agar menjorok ke bawah melewati batas gambar */
            background-color: var(--boc-nursery-card);
            color: white;
            padding: 2rem 2rem 2rem 1.5rem;
            /* Melengkung hanya di sudut kanan atas dan kanan bawah */
            border-radius: 0 1rem 1rem 0;
            z-index: 20;
            max-width: 90%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .nursery-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .nursery-card-desc {
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.5;
        }

        /* Responsive Card Desktop */
        @media (min-width: 768px) {
            .nursery-card {
                bottom: -5rem;
                padding: 3rem 4rem 3rem 3rem;
                max-width: 500px;
            }

            .nursery-card-title {
                font-size: 2rem;
            }

            .nursery-card-desc {
                font-size: 1rem;
            }
        }

        /* --- KONTEN 2: Teks Section --- */
        .nursery-content-section {
            position: relative;
            width: 100%;
            background-color: var(--boc-nursery-bg);
            color: white;
            /* Padding atas diperbesar agar teks tidak tertutup card yang menjorok turun */
            padding: 8rem 1.5rem 5rem 1.5rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .nursery-content-section {
                padding: 10rem 3rem 6rem 3rem;
            }
        }

        /* Icon Pojok Kanan Atas */
        .nursery-top-icon {
            position: absolute;
            top: 2rem;
            right: -2rem;
            /* Agak keluar layar seperti digambar */
            width: 15rem;
            height: auto;
            opacity: 0.4;
            z-index: 0;
        }

        /* Kontainer 5 Baris Teks */
        .nursery-text-container {
            position: relative;
            z-index: 10;
            max-width: 64rem;
            /* max-w-4xl */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            /* Jarak antar paragraf */
        }

        /* Gaya Font Paragraf */
        .nursery-text-bold {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.7;
        }

        .nursery-text-regular {
            font-weight: 400;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        @media (min-width: 768px) {
            .nursery-text-bold {
                font-size: 1.125rem;
            }

            .nursery-text-regular {
                font-size: 1rem;
            }
        }

        /* --- ANIMASI SCROLL (CSS) --- */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Class ini akan ditambahkan oleh JavaScript saat elemen masuk ke layar */
        .scroll-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }