* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth; /* Efek scroll halus */
}

:root {
    --pink-light: #FFC5D0;
    --pink-bg: #FFE4E9;
    --pink-dark: #C76B85; /* Warna footer */
    --text-color: #5A3A42;
    --white: #ffffff;
    --btn-color: #D65A76;
}

body {
    background-color: var(--white);
    color: var(--text-color);

    /* GANTI KURSOR JADI GAMBAR HATI */
    cursor: url("https://cur.cursors-4u.net/symbols/sym-1/sym49.cur"), auto;
}

/* Ganti kursor jadi tangan saat menunjuk link/tombol */
a, button, .dot, .nav-btn {
    cursor: url("https://cur.cursors-4u.net/symbols/sym-1/sym46.cur"), pointer;
}

img {
    max-width: 100%;
    height: auto;    /* Tinggi menyesuaikan biar tidak gepeng */
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent; /* Agar menyatu dengan background hero */
    position: absolute; /* Agar menumpuk di atas hero */
    width: 100%;
    top: 0;
    z-index: 100;
}

.navbar a {
    color: #ffffff;         
    text-decoration: none;   
    padding: 10px 15px;  
    border-radius: 5px;      
    transition: all 0.3s ease; 
}

.navbar a:hover {
    color: #D65A76;          
    background-color: rgba(255, 255, 255, 0.2); 
    transform: translateY(-2px);
}

.navbar .logo img {
    width: 100px !important;
    border-radius: 100% !important;
    min-width: 60px;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px; /* Jarak antar tombol */
    
    /* ✨ EFEK KACA (GLASSMORPHISM) ✨ */
    background: rgba(255, 255, 255, 0.2); /* Putih transparan */
    backdrop-filter: blur(10px); /* Efek blur background di belakangnya */
    -webkit-backdrop-filter: blur(10px); /* Support untuk browser Safari/Chrome */
    
    padding: 8px 10px; /* Ruang di dalam kapsul */
    border-radius: 50px; /* Membuat sudutnya bulat lonjong (Capsule shape) */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Garis pinggir putih tipis */
    box-shadow: 0 8px 32px rgba(214, 90, 118, 0.15); /* Bayangan pink soft */
}

.nav-links li {
    margin: 0 5px;
}

.nav-links a {
    text-decoration: none;

    color: #D65A76;  
    font-weight: 600; 
    
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #D65A76; 
    color: #ffffff;           
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(214, 90, 118, 0.3);
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--pink-light);
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom-left-radius: 50% 20px; /* Lengkungan bawah sedikit */
    border-bottom-right-radius: 50% 20px;
    overflow: hidden;
}

/* Membuat efek gelombang pink abstrak di background */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #C74B66;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
}

.hero-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    border: 3px solid rgb(255, 161, 213); /* Border hitam komik style */
}

/* Animasi mengambang untuk gambar anime */
.floating-img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.nav-btn {
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.6);
}

/* =========================================
   DETAIL PAGE MAKEOVER (JURNAL STYLE)
   ========================================= */

.detail-section {
    padding: 120px 5% 80px 5%;
    min-height: 100vh;
    background-color: #fff0f5;
    background-image: radial-gradient(#ffc5d0 2px, transparent 2px);
    background-size: 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* KARTU PUTIH BESAR DI TENGAH */
.detail-card-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 100%;
    padding: 50px;
    border-radius: 40px;
    border: 4px solid #fff; /* Border putih tebal */
    box-shadow: 0 20px 50px rgba(255, 182, 193, 0.4); /* Bayangan soft */
    position: relative;
    z-index: 2;
}

/* JUDUL ATAS */
.detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.detail-header h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #ff9a9e, #d65a76);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.detail-header .subtitle {
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* GRID LAYOUT (Kiri Gambar, Kanan Teks) */
.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Membagi 2 kolom rata */
    gap: 50px;
    align-items: center;
}

/* GAMBAR (KIRI) */
.detail-image-box img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid #ffe4e9; /* Bingkai foto pink */
    box-shadow: 10px 10px 0px #ffd1dc; /* Efek bayangan kartun */
    transform: rotate(-3deg); /* Miring sedikit biar estetik */
    transition: 0.3s;
}

.detail-image-box img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* TEKS (KANAN) */
.detail-info-box h2, 
.detail-info-box h3 {
    color: var(--btn-color);
    margin-bottom: 15px;
}

.detail-info-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* TAGS TOOLS (Kotak-kotak kecil lucu) */
.tools-tags {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tools-tags li {
    background: #fff0f5;
    color: #d65a76;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffc5d0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* KOTAK CHALLENGE (Highlight kuning) */
.challenge-box {
    background: #fff9c4; /* Warna kuning post-it */
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 40px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.05);
}

.challenge-box i {
    color: #fbc02d;
    font-size: 1.5rem;
    margin-top: 3px;
}

.challenge-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* TOMBOL KEMBALI*/
.btn-back-cute {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
    transition: 0.3s;
}

.btn-back-cute:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.6);
}

/* Responsif untuk HP (Biar kolomnya turun ke bawah) */
@media (max-width: 768px) {
    .detail-content-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
    }
    
    .detail-image-box img {
        transform: rotate(0deg); /* Lurusin gambar di HP */
        margin-bottom: 20px;
    }
}
/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 10%;
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 250px;
    box-shadow: 10px 10px 0px rgba(255, 192, 203, 0.5); /* Efek bayangan pink */
}

.about-text h2 {
    color: var(--btn-color);
    font-size: 2rem;
}

.subtitle {
    font-size: 1rem;
    color: #FFA0B0;
    margin-bottom: 15px;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--btn-color);
    color: white;
    border: none;
    padding: 10px 25px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #b0465e;
}

/* --- FEATURES SECTION --- */
.features-section {
    background-color: var(--pink-bg);
    padding: 60px 10%;
    text-align: center;
}

.section-title h2 {
    color: var(--btn-color);
    font-size: 2rem;
}

.section-title p {
    color: #888;
    margin-bottom: 40px;
}

.icon-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.icon-card {
    width: 250px;        /* Atur LEBAR tetap */
    height: 250px;       /* Atur TINGGI tetap (biar jadi kotak sempurna) */
    background-color: white; /* Warna background kalau gambar transparan */
    border-radius: 20px; /* Sudut melengkung sesuai desain */
    overflow: hidden;    /* Memastikan gambar tidak "tumpah" keluar kotak */
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.5); /* Bayangan pink halus */
    transition: transform 0.3s;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek membal (bouncy) */
}

.icon-card:hover {
    transform: translateY(-15px) scale(1.05); /* Naik dan membesar */
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3); /* Bayangan pink tebal di bawah */
    border: 3px solid #ff9a9e; /* Tambah garis pinggir saat disentuh */
}

.icon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s;
}

.icon-card img:hover {
    transform: scale(1.05); /* Efek zoom sedikit saat hover */
    transform: translateY(-10px); /* Efek naik sedikit saat kursor diarahkan */
    background-color: rgb(255, 169, 222);
}

/* --- FOOTER --- */
.footer-section {
    background-color: var(--pink-dark);
    color: white;
    padding: 50px 10% 20px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-container h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-container p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Form Styling */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 250px;
}

.contact-form input, 
.contact-form textarea {
    padding: 8px;
    border: none;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    background-color: pink;
    border: none;
    padding: 8px;
    font-weight: bold;
    color: var(--pink-dark);
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: white;
}

/* Sitemap */
.sitemap ul {
    list-style: none;
}

.sitemap ul li {
    margin-bottom: 5px;
}

.sitemap a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
}

.sitemap a:hover {
    text-decoration: underline;
}

/* Info */
.contact-info .footer-logo {
    margin-bottom: 50px;
}

.contact-info .footer-logo img {
    width: 60px;
    border-radius: 50%;
    border: 2px solid white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    font-size: 0.8rem;
    background-color: #FFC0CB; /* Latar copyright sedikit lebih terang sesuai gambar */
    color: var(--pink-dark);
    margin: 0 -15%; /* Melebarkan copyright ke tepi layar */
    padding-bottom: 20px;
}

/* --- TAMPILAN MODE ZOOM / HP (Layar < 768px) --- */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Susun vertikal */
        padding: 10px;
        position: relative; 
        background-color: var(--pink-light); /* Kasih warna biar jelas */
    }

    .nav-links {
        margin-top: 10px;
        width: 100%; /* Menu jadi lebar penuh */
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3.5rem; 
        font-weight: 800;
        text-align: center;

        background: linear-gradient(to right, #ff9a9e, #fad0c4, #fbc2eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
        filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.1)); /* Bayangan tipis */
    }

    .hero-content p {
        text-align: center;
        font-size: 1rem;
    }

    .hero {
        height: auto; /* Tinggi otomatis mengikuti isi */
        padding-top: 20px;
        padding-bottom: 50px;
        border-radius: 0 0 30px 30px; 
    }

    .hero-container {
        flex-direction: column-reverse; /* Gambar pindah ke ATAS tulisan */
        text-align: center;
        gap: 20px;
    }

    /* Sembunyikan tombol panah kiri/kanan kalau sempit biar bersih */
    .nav-btn {
        display: none; 
    }
}

/* Animasi transisi halus saat slide berubah */
.hero-content h1, 
.hero-content p,
.hero-image img {
    transition: all 0.5s ease-in-out;
}

/* --- BACKGROUND DEKORASI BERGERAK --- */
.decoration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Pastikan dia di belakang teks */
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px); /* Efek blur biar estetik */
    opacity: 0.6;
    animation: moveBlob 10s infinite alternate;
}

/* Bulatan 1 (Pink) */
.blob-1 {
    width: 200px;
    height: 200px;
    background: #ffc3a0;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

/* Bulatan 2 (Ungu Muda) */
.blob-2 {
    width: 300px;
    height: 300px;
    background: #ffafbd;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

/* Bulatan 3 (Kuning soft) */
.blob-3 {
    width: 150px;
    height: 150px;
    background: #e0c3fc;
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

/* Animasi Gerak Naik Turun */
@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* =========================================
   KAWAII PURCHASE SECTION MAKEOVER
   ========================================= */

.purchase-section {
    padding: 150px 5% 100px 5%; /* Padding atas lebih besar biar ga nabrak navbar */
    min-height: 100vh;
    
    /* BACKGROUND BARU: Pola Polkadot Pink Halus */
    background-color: #fff0f5;
    background-image: radial-gradient(#ffc5d0 2px, transparent 2px);
    background-size: 30px 30px; /* Ukuran jarak antar titik */
    
    text-align: center;
    position: relative;
    /* Kita gunakan Flexbox untuk memusatkan vertikal & horizontal */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Judul Halaman dengan Efek Bayangan Lucu */
.purchase-header h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    text-shadow: 3px 3px 0px #ffd1dc; /* Bayangan pink solid */
    margin-bottom: 10px;
}

/* --- CONTAINER KARTU (INI KUNCI RAPINYA!) --- */
.pricing-container {
    display: flex;
    justify-content: center; /* Memastikan kartu di tengah horizontal */
    align-items: center;     /* Memastikan kartu di tengah vertikal (jika tinggi beda) */
    gap: 40px;               /* Jarak antar kartu lebih lega */
    flex-wrap: wrap;         /* Agar turun ke bawah di layar HP */
    margin-top: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px; /* Membatasi lebar maksimal agar tidak terlalu menyebar di layar besar */
}

/* --- DESAIN KARTU BARU (BUBBLY STYLE) --- */
.pricing-card {
    background: rgba(255, 255, 255, 0.95); /* Putih agak transparan */
    backdrop-filter: blur(10px); /* Efek kaca buram dikit */
    width: 260px; /* Sedikit lebih lebar */
    padding: 30px 20px;
    
    /* Bentuk Super Bulat & Border Tebal Lucu */
    border-radius: 30px;
    border: 3px solid #ffe4e9; /* Garis pinggir pink tebal */
    box-shadow: 0 10px 25px rgba(255, 192, 203, 0.3), 
                inset 0 -5px 10px rgba(0,0,0,0.02); /* Bayangan luar & dalam */
    
    text-align: center; /* Pastikan isi kartu di tengah */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek membal saat hover */
    position: relative;
}

/* Efek Hover: Kartu Melayang & Miring Dikit */
.pricing-card:hover {
    transform: translateY(-20px) rotate(2deg); /* Naik dan miring sedikit */
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.5);
    border-color: var(--btn-color);
}

/* Ikon dalam Gelembung */
.card-icon {
    font-size: 2rem;
    color: var(--btn-color);
    background: #fff0f5; /* Latar belakang lingkaran */
    width: 70px;
    height: 70px;
    line-height: 70px; /* Trik agar ikon di tengah lingkaran */
    border-radius: 50%;
    margin: 0 auto 15px auto; /* Posisi tengah horizontal */
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #ff9a9e, #d65a76);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0 20px 0;
}

/* List Fitur (Rapi di tengah) */
.features-list {
    list-style: none;
    text-align: left; 
    display: inline-block; 
    margin: 10px auto 30px auto;
    color: #666;
    font-size: 0.85rem;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list i {
    font-size: 1.1rem;
    color: #ff8fab; /* Warna centang lebih cerah */
    background: #ffe4e9;
    padding: 5px;
    border-radius: 50%; /* Centang dalam lingkaran kecil */
}

.features-list .disabled {
    opacity: 0.5;
}

.features-list .disabled i {
    color: #ccc;
    background: #eee;
}

/* Tombol Bubbly */
.btn-plan {
    width: 90%;
    padding: 10px;
    border: none;
    background: linear-gradient(to right, #ffc5d0, #ff9a9e);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
    transition: 0.3s;
}

.btn-plan:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 154, 158, 0.6);
}

/* --- KARTU SPESIAL (POPULAR) --- */
.pricing-card.popular {
    transform: scale(1.1); 
    background: #ffffff; 
    border: 4px solid #d65a76; 
    z-index: 10; /* Posisi paling depan */
}

/* Saat di-hover, efeknya lebih heboh */
.pricing-card.popular:hover {
    transform: scale(1.15) translateY(-20px) rotate(-2deg); /* Miring ke arah berlawanan */
}

.popular-badge {
    background: linear-gradient(45deg, #d65a76, #ff9a9e);
    top: -20px;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(214, 90, 118, 0.4);
    border: 3px solid white; 
}

/* Ikon di kartu populer warnanya beda */
.popular .card-icon {
    background: linear-gradient(to bottom right, #ffc5d0, #fff0f5);
    color: #d65a76;
}

/* --- NOTIFIKASI POPUP LUCU --- */
/* Wadah Popup (Awalnya Tersembunyi) */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Latar belakang gelap transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Pastikan dia paling depan di atas segalanya */
    
    /* Trik menyembunyikan tanpa display:none agar bisa dianimasi */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Kotak Pesannya */
.popup-content {
    background: white;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    width: 350px;
    border: 4px solid #ff9a9e; 
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    
    /* Animasi Awal: Kecil (Zoom Out) */
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek Bouncy */
}

/* KELAS PENGAKTIF (Saat tombol diklik) */
.popup-container.show {
    opacity: 1;
    visibility: visible;
}

.popup-container.show .popup-content {
    transform: scale(1); 
}

/* Gaya Gambar di dalam Popup */
.popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffe4e9;
    margin-bottom: 15px;
    animation: shake 1s infinite; /* Gambar goyang-goyang lucu */
}

.popup-content h3 {
    color: #d65a76;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animasi Goyang Kecil */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* =========================================
   CONTACT & FOOTER MAKEOVER (CLOUDY STYLE)
   ========================================= */

.contact-section {
    position: relative;
    background: linear-gradient(180deg, #fff0f5 0%, #ffc5d0 100%);
    padding-top: 150px; 
    padding-bottom: 50px;
    margin-top: 50px;
}

/* Gelombang Awan (SVG) */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 126px;
}

.custom-shape-divider-top .shape-fill {
    fill: #FFFFFF; /* Warna putih nyambung sama section atasnya */
}

/* Container Utama */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Biar aman di HP */
}

/* --- KOLOM KIRI (FORMULIR) --- */
.contact-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 30px; /* Sudut tumpul */
    box-shadow: 0 10px 30px rgba(214, 90, 118, 0.2);
    width: 400px;
    border: 3px solid #ffe4e9;
}

.contact-box h2 {
    color: #d65a76;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-box p {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Inputan Bubbly */
.contact-box input, 
.contact-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ffc5d0;
    border-radius: 20px; /* Biar bentuknya kapsul */
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #555;
    outline: none;
    transition: 0.3s;
}

/* Saat diklik (Focus) */
.contact-box input:focus, 
.contact-box textarea:focus {
    border-color: #d65a76;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.2);
    transform: scale(1.02); /* Membesar sedikit */
}

/* Tombol Kirim */
.btn-send {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #ff9a9e, #d65a76);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(214, 90, 118, 0.4);
    transition: 0.3s;
}

.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 90, 118, 0.6);
}

/* --- KOLOM KANAN (INFO & MASKOT) --- */
.footer-info {
    text-align: center;
}

/* Maskot Goyang */
.footer-mascot {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: floatMascot 3s ease-in-out infinite; /* Animasi melayang */
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.footer-info h3 {
    margin-top: 20px;
    color: #d65a76;
    font-size: 1.8rem;
}

/* Link Sosmed Lucu */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    text-decoration: none;
    color: #666;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 500;
}

.social-links a:hover {
    background: white;
    color: #d65a76;
    transform: translateX(5px); /* Geser kanan dikit */
}

.copyright-text {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
    opacity: 0.7;
}

/* Responsif HP */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column-reverse; /* Form pindah ke bawah maskot */
        gap: 40px;
    }
    
    .contact-box {
        width: 100%;
    }
}

/* --- PEMBATAS GELOMBANG ATAS (YANG KETINGGALAN) --- */
.cute-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2; /* Biar di atas background */
}

.cute-wave-divider svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 100px; /* Tinggi gelombang */
    transform: rotate(180deg); 
}

/* Warna gelombang disamakan dengan background About Us */
.cute-wave-divider .shape-fill {
    fill: #ffffff; /* Putih, karena background About Us kamu putih */
}

.about-section {
    position: relative;
    padding-top: 50px; /* Kasih jarak biar ga ketutupan gelombang */
}

/* =========================================
   GAYA LOGO & NAMA COMPANY BARU
   ========================================= */

/* Link pembungkus logo dan teks */
.logo-brand {
    display: flex;           /* Mengaktifkan mode baris (sebelahan) */
    align-items: center;     /* Memastikan gambar dan teks rata tengah secara vertikal */
    gap: 12px;               /* Jarak antara gambar logo dan tulisan */
    text-decoration: none;   /* Menghapus garis bawah pada link */
}

/* Memastikan ukuran gambar logo pas */
.logo-brand img {
    max-height: 50px; /* Tinggi maksimal gambar (sesuaikan jika perlu) */
    width: auto;      /* Lebar menyesuaikan proporsional */
    /* Sedikit efek bayangan lucu pada gambar logo */
    filter: drop-shadow(2px 2px 0px rgba(255, 182, 193, 0.5));
    transition: 0.3s;
}

/* GAYA TEKS COMPANY */
.company-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;  /* Tebal (Bold) */
    font-size: 1.5rem; /* Ukuran teks */
    color: #D65A76; 
    
    /* Sedikit bayangan teks agar terlihat "pop up" */
    text-shadow: 2px 2px 0px #ffd1dc;
    
    letter-spacing: 0.5px; /* Jarak antar huruf sedikit direnggangkan */
    transition: 0.3s;
}

/* EFEK SAAT DISENTUH (HOVER) */
.logo-brand:hover img {
    transform: rotate(-5deg) scale(1.1); /* Gambar miring dan membesar */
}

.logo-brand:hover .company-text {
    color: #ff9a9e; 
    transform: translateX(5px); 
}

/* Responsif untuk HP (Biar gak kepotong di layar kecil) */
@media (max-width: 480px) {
    .company-text {
        font-size: 1.2rem; /* Ukuran font mengecil di HP */
        display: none; /* OPSI: Hapus baris ini jika ingin teks tetap muncul di HP. Jika dihapus, teks mungkin bikin navbar penuh. */
    }
    .logo-brand {
        gap: 5px;
    }
}
