/* General Style */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1591348113527-51b134dc1184?q=80&w=1500');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero1{
    background: #f7f6f6;
}

/* Product Card */
.product-card {
    border: none;
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}


.wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

/* Link Wrapper untuk Bubble */
.wa-bubble-link {
    text-decoration: none;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

/* Kotak Bubble Putih */
.wa-bubble {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Segitiga kecil di samping bubble (opsional) */
.wa-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid white;
}

/* Teks Atas */
.wa-text-top {
    font-size: 14px;
    color: #333;
    display: block;
}

/* Teks Bawah (Bold) */
.wa-text-bottom {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tombol Ikon Hijau */
.wa-icon-main {
    width: 70px;
    height: 70px;
    background-color: #60d669; /* Warna hijau WA di gambar */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Efek Hover */
.wa-icon-main:hover {
    transform: scale(1.1);
    background-color: #4ade80;
}

.wa-bubble-link:hover {
    transform: translateX(-5px);
}

/* Animasi Masuk (Opsional) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-floating-container {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsif: Di HP bubble mungkin terlalu lebar */
@media (max-width: 480px) {
    .wa-bubble {
        display: none; /* Sembunyikan bubble di HP agar tidak menutupi layar */
    }
}

/* Custom Design Section Background */
.custom-design-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%); /* Emerald-50 to Teal-50 */
}

/* Styling Ceklis Lingkaran */
.check-icon {
    width: 28px;
    height: 28px;
    background-color: #059669; /* Emerald-600 */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 4px;
}

/* Gambar dengan Rasio Tetap */
.custom-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-img:hover {
    transform: scale(1.02);
}

/* Tombol Emerald */
.btn-emerald {
    background-color: #059669;
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-emerald:hover {
    background-color: #047857;
    color: white;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Penyesuaian Mobile */
@media (max-width: 991px) {
    .custom-img {
        height: 350px;
        margin-top: 20px;
    }
}

/* Container Utama */
.features-section {
    padding: 80px 0;
    background-color: #f9fafb; /* Abu-abu sangat muda */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom sejajar */
    gap: 30px;
}

/* Kartu Fitur */
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px; /* rounded-2xl */
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Shadow halus */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Lingkaran Ikon */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #d1fae5; /* Emerald 100 */
    color: #059669; /* Emerald 600 */
    border-radius: 50%;
    margin-bottom: 24px;
}

/* Typography */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 1rem;
    color: #6b7280; /* Gray 600 */
    line-height: 1.6;
}

/* Responsive: Untuk HP */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di layar kecil */
    }
}