:root {
    /* Warna Utama */
    --primary-color: #2D433D; /* Hijau tua elegan */
    --secondary-color: #D4C7B0; /* Champagne gold */
    --accent-color: #E8B4B8; /* Soft pink untuk bunga */
    --light-color: #FBFBF9; /* Off white */
    --dark-color: #1A2421; /* Dark text */
    
    /* Warna Sosial Media */
    --whatsapp-color: #25D366;
    --instagram-color: #E4405F;
    --tiktok-color: #000000;
    --youtube-color: #FF0000;
    --twitter-color: #1DA1F2;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
========================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--light-color); 
    color: var(--dark-color); 
    line-height: 1.6; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}
/* ==========================================
   NAVIGATION
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ==========================================
    NAVIGATION ENHANCEMENT
========================================== */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0; /* Sedikit lebih ramping */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(45, 67, 61, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-normal);
}

.logo-image {
    height: 45px; /* Sedikit lebih besar agar detail terlihat */
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antar container menu */
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Efek Hover Modern */
.nav-links a:hover {
    background-color: rgba(45, 67, 61, 0.05);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links a i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Garis bawah tipis saat hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Responsif Menu Toggle */
.menu-toggle {
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-color);
    cursor: pointer;
    color: var(--primary-color);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}
/* ==========================================
    HEADER REFINEMENT
========================================== */
.custom-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Menggunakan gambar bunga yang Anda miliki sebagai background */
    background: url('https://images.pexels.com/photos/931177/pexels-photo-931177.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    overflow: hidden;
}

/* Overlay untuk memastikan teks terbaca */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient dari gelap di kiri (area teks) ke lebih transparan di kanan (area gambar) */
    background: linear-gradient(to right, rgba(26, 36, 33, 0.85) 30%, rgba(26, 36, 33, 0.4) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2; /* Di atas overlay */
    max-width: 700px;
    color: #ffffff; /* Ubah font jadi putih agar tidak bertabrakan */
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.header-title span {
    color: var(--secondary-color); /* Warna Champagne Gold untuk aksen */
    display: block;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

.header-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Features Pill Style */
.header-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 199, 176, 0.3);
}

.btn-whatsapp {
    background: #25D366; /* Hijau WA yang asli */
    color: white !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-primary:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-title { font-size: 2.5rem; }
    .header-overlay {
        background: rgba(26, 36, 33, 0.7); /* Lebih gelap di mobile */
    }
}

/* ==========================================
   KATALOG SECTION
========================================== */
.katalog-section {
    padding: 100px 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.card:hover img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-buy {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ==========================================
    INFO SECTION - REFRESHED COLORS
========================================== */
.info-section {
    padding: 100px 0;
    /* Ganti abu-abu dengan Putih Salju yang sangat bersih */
    background: #eeeeee; 
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.info-text h3 {
    font-size: 2.5rem;
    /* Hijau Gelap Mewah agar kontras dengan latar putih */
    color: #1b4332; 
    margin-bottom: 20px;
}

.info-text > p {
    /* Abu-abu gelap (Charcoal) agar teks tajam dan mudah dibaca */
    color: #2d3436; 
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ==========================================
    CONTACT CARDS - CONTRAST FOCUS
========================================== */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.c-card {
    /* Gunakan background krem sangat muda agar kartu terlihat 'keluar' */
    background: #f8f9fa; 
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
    /* Border tipis agar lebih rapi */
    border: 1px solid #e9ecef;
}

.c-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    /* Border berubah jadi hijau saat disentuh */
    border-color: #2d6a4f; 
}

.c-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Warna Icon dengan saturasi lebih tinggi agar cerah */
.c-icon.wa { background: #d8f3dc; color: #2d6a4f; }
.c-icon.ig { background: #ffe5ec; color: #ff0054; }


.c-content span {
    display: block;
    font-size: 0.8rem;
    color: #636e72; /* Label abu-abu medium */
    margin-bottom: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.c-content b {
    font-size: 1.1rem;
    /* Hitam pekat agar nomor telpon sangat jelas */
    color: #363636; 
    display: block;
    margin-bottom: 5px;
}

.c-content small {
    font-size: 0.75rem;
    color: #b2bec3;
    display: block;
}

/* ==========================================
    SIDEBAR & LOKASI
========================================= */
.lokasi-box {
    /* Background kartu lokasi sedikit lebih gelap dari background utama agar kontras */
    background: #f1f3f5; 
    border-radius: 20px;
    padding: 25px;
}

.lokasi-box h4 {
    color: #1b4332;
    margin-bottom: 20px;
}

/* Tombol Aksi - Warna Hijau Florist */
.btn-map {
    background: #2d6a4f; 
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
}

.btn-map:hover {
    background: #1b4332;
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

/* Jam Sibuk - Warna Kuning Amber (Bukan Oranye pudar) */
.jam-sibuk {
    background: #fffbe6;
    border: 2px solid #ffcc00;
    border-radius: 15px;
}

.jam-sibuk h4 {
    color: #856404;
}
/* ==========================================
    FOOTER ENHANCEMENT
========================================== */
footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Proporsi kolom lebih simetris */
    gap: 50px;
    margin-bottom: 60px;
}

/* Fix Logo & Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-image {
    height: 60px; /* Ukuran lebih proporsional */
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.sub-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Kolom Headers */
.footer-col h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary-color);
}

/* Links & List */
.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;       /* Mencegah teks pindah ke baris bawah */
    width: max-content;        /* Memastikan lebar mengikuti panjang teks */

}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Payment Badge */
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.payment-badge:hover {
    background: white;
    color: var(--primary-color);
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-color);
    color: rgb(255, 255, 255);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .custom-header {
        min-height: 70vh;
        text-align: center;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .header-features {
        justify-content: center;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .keunggulan-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.2rem;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

#lightbox-caption {
    margin: 15px auto;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #ff5a5f;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* ==========================================
   FONT IMPROVEMENTS ONLY
========================================== */

/* Import font yang lebih indah */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===== NAVIGATION ===== */
.logo span {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.nav-links a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
}

.mobile-menu a {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== HEADER ===== */
.header-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.header-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300;
}

.feature-item {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-whatsapp, .btn-map, .btn-buy {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

/* ===== SECTION TITLES ===== */
.section-title h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 300;
}

/* ===== CARDS ===== */
.card-body h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
}

.card-desc {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== INFO SECTION ===== */
.info-text h3 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.info-text > p {
    font-family: 'Poppins', sans-serif !important;
}

.c-content b {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.c-content span, .c-content small {
    font-family: 'Poppins', sans-serif !important;
}

.keunggulan h4 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
}

.keunggulan-item strong {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.keunggulan-item p {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== SIDEBAR ===== */
.lokasi-box h4, .jam-sibuk h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.lokasi-box p, .jam-sibuk p {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== FOOTER ===== */
.footer-logo {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.footer-desc {
    font-family: 'Poppins', sans-serif !important;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.footer-col ul li a {
    font-family: 'Poppins', sans-serif !important;
}

.payment-option {
    font-family: 'Poppins', sans-serif !important;
}

.copyright {
    font-family: 'Poppins', sans-serif !important;
}

/* ===== LIGHTBOX ===== */
#lightbox-caption {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500;
    font-style: italic;
}

.keunggulan-item {
    display: flex;          /* Membuat isi di dalamnya berjejer ke samping */
    align-items: flex-start; /* Memastikan ikon sejajar dengan baris pertama teks */
    gap: 15px;              /* Memberi jarak antara ikon dan teks */
    margin-bottom: 20px;    /* Jarak antar poin keunggulan */
}

.keunggulan-item i {
    font-size: 24px;        /* Ukuran ikon (sesuaikan seleramu) */
    color: #333;            /* Warna ikon */
    margin-top: 4px;        /* Penyesuaian halus agar ikon sejajar dengan teks tebal */
}

.keunggulan-text strong {
    display: block;         /* Memastikan judul berada di barisnya sendiri */
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.keunggulan-text p {
    margin: 0;              /* Menghilangkan margin bawaan paragraf agar lebih rapat */
    color: #555;
    line-height: 1.4;       /* Mengatur jarak antar baris teks */
}
/* ==========================================
   MOBILE RESPONSIVE URGENT FIXES
========================================== */

@media (max-width: 768px) {
    /* FIX 1: Mobile Navigation */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .mobile-menu.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu a {
        padding: 15px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    /* FIX 2: Header Mobile Layout */
    .custom-header {
        min-height: auto;
        padding: 100px 0 60px;
        text-align: center;
        background-position: 35% center;
    }
    
    .header-overlay {
        background: rgba(26, 36, 33, 0.85);
    }
    
    .header-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .header-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .header-title span {
        font-size: 1.3rem !important;
        margin-top: 10px;
        display: inline-block;
    }
    
    .header-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .header-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .header-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-whatsapp {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* FIX 3: Product Grid */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .img-container {
        height: 220px;
    }
    
    /* FIX 4: Info Section */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .info-text > p {
        text-align: center;
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .c-card {
        flex-direction: row;
        align-items: center;
        padding: 15px;
    }
    
    .keunggulan-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .keunggulan-item i {
        font-size: 2rem;
        margin: 0 auto;
    }
    
    /* FIX 5: Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        align-items: center;
    }
    
    .footer-links a {
        justify-content: center;
        width: auto;
        display: inline-flex;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .payment-options {
        justify-content: center;
    }
    
    /* FIX 6: Section Spacing */
    .katalog-section, .info-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .header-title {
        font-size: 1.6rem !important;
    }
    
    .header-title span {
        font-size: 1.2rem !important;
    }
    
    .btn-primary, .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .card-body h3 {
        font-size: 1.1rem;
    }
    
    .card-desc {
        font-size: 0.85rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
    }
    
    .payment-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Map iframe */
    .map-wrapper iframe {
        height: 200px;
    }
    
    /* Floating WA button */
    .floating-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }
}

/* FIX 7: Prevent Horizontal Scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* FIX 8: Touch-friendly buttons */
@media (max-width: 768px) {
    a, button, .btn-primary, .btn-whatsapp, .btn-buy, .btn-map {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a, .mobile-menu a {
        padding: 12px 15px;
    }
}

/* FIX 9: Image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* FIX 10: Container padding */
.container {
    padding: 0 15px;
}

/* FIX 11: Text wrapping */
.header-title, .header-subtitle, .card-body h3, .card-desc, .c-content b {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* ==========================================
   FOOTER MOBILE ALIGNMENT FIX
========================================== */

@media (max-width: 992px) {
    /* Footer Mobile Fix - RATA KIRI */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left !important; /* Ubah dari center ke left */
    }
    
    .footer-logo {
        justify-content: flex-start !important; /* Ubah dari center ke start */
        flex-direction: row;
        text-align: left !important;
    }
    
    .logo-text {
        align-items: flex-start !important; /* Ubah dari center ke start */
    }
    
    .footer-col h4::after {
        left: 0 !important; /* Ubah dari 50% ke 0 */
        transform: none !important; /* Hapus transform translateX */
    }
    
    .footer-links a {
        justify-content: flex-start !important; /* Ubah dari center ke start */
        width: auto;
        margin: 0 !important; /* Hapus margin auto */
    }
    
    .social-icons {
        justify-content: flex-start !important; /* Ubah dari center ke start */
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .payment-options {
        justify-content: flex-start !important; /* Ubah dari center ke start */
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Branding section juga rata kiri */
    .branding {
        text-align: left !important;
    }
    
    .footer-social {
        text-align: left !important;
    }
    
    .footer-social h5 {
        text-align: left !important;
    }
    
    .footer-desc {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    /* Pastikan semua konten footer rata kiri di layar kecil */
    .footer-col {
        text-align: left !important;
    }
    
    .footer-col h4 {
        text-align: left !important;
    }
    
    /* List items alignment */
    .footer-links li {
        text-align: left !important;
    }
    
    /* Payment badges alignment */
    .payment-badge {
        text-align: center; /* Biar teks dalam badge tetap center */
    }
    
    /* Copyright tetap center */
    .footer-bottom {
        text-align: center !important;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Optional: Tambahkan ini untuk memastikan alignment konsisten */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important; /* Pastikan semua child rata kiri */
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
}

/* Untuk teks panjang di footer */
.footer-desc, .footer-links a, .c-content b, .c-content span {
    text-align: left !important;
}

/* Fix untuk ikon chevron di footer links */
.footer-links a i.fa-chevron-right {
    margin-right: 8px;
}

/* Pastikan container tidak memaksa center alignment */
.footer-col > * {
    align-self: flex-start !important;
}

/* ==========================================
   KEUNGGULAN CENTER ALIGNMENT FIX
========================================== */

@media (max-width: 992px) {
    /* Keunggulan section - Center alignment */
    .keunggulan {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
        width: 100%;
    }
    
    .keunggulan h4 {
        text-align: center !important;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .keunggulan-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .keunggulan-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .keunggulan-item i {
        margin: 0 auto !important;
        font-size: 2.5rem !important;
        color: var(--primary-color);
        background: rgba(45, 67, 61, 0.1);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .keunggulan-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .keunggulan-text strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--primary-color);
    }
    
    .keunggulan-text p {
        text-align: center !important;
        margin: 0 auto;
        color: #666;
        line-height: 1.5;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Keunggulan lebih kecil di mobile */
    .keunggulan h4 {
        font-size: 1.4rem;
    }
    
    .keunggulan-grid {
        gap: 20px !important;
    }
    
    .keunggulan-item {
        max-width: 280px !important;
    }
    
    .keunggulan-item i {
        font-size: 2rem !important;
        width: 60px;
        height: 60px;
    }
    
    .keunggulan-text strong {
        font-size: 1.1rem;
    }
    
    .keunggulan-text p {
        font-size: 0.9rem;
        max-width: 250px;
    }
}

/* Pastikan untuk layar desktop tetap rata kiri */
@media (min-width: 993px) {
    .keunggulan {
        text-align: left;
    }
    
    .keunggulan-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .keunggulan-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .keunggulan-text {
        text-align: left;
    }
    
    .keunggulan-text strong {
        text-align: left;
    }
    
    .keunggulan-text p {
        text-align: left;
    }
}

/* ==========================================
   FOOTER INFORMATION SECTION REFINEMENT
========================================== */

/* Mobile: Footer Information Fix */
@media (max-width: 992px) {
    /* Produk & Layanan Column */
    .footer-col:nth-child(2) {
        order: 2;
        margin-top: 10px;
    }
    
    /* Informasi Column */
    .footer-col:nth-child(3) {
        order: 3;
        margin-top: 10px;
    }
    
    /* Metode Pembayaran Column */
    .footer-col:nth-child(4) {
        order: 4;
        margin-top: 10px;
    }
    
    /* Produk & Layanan List Styling */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk mobile */
        gap: 8px 15px;
        margin-top: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
        min-width: 0; /* Mencegah overflow */
    }
    
    .footer-links a {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    
    .footer-links a:last-child {
        border-bottom: none;
    }
    
    .footer-links a i {
        font-size: 0.7rem;
        margin-top: 4px;
        flex-shrink: 0;
        color: var(--secondary-color);
    }
    
    /* Informasi Section Styling */
    .footer-col:nth-child(3) ul {
        margin-top: 15px;
    }
    
    .footer-col:nth-child(3) li {
        margin-bottom: 12px;
    }
    
    .footer-col:nth-child(3) a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-col:nth-child(3) a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }
    
    .footer-col:nth-child(3) a i {
        font-size: 0.8rem;
        color: var(--secondary-color);
        width: 20px;
    }
    
    /* Metode Pembayaran Styling */
    .footer-col:nth-child(4) {
        margin-top: 20px;
    }
    
    .payment-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
    
    .payment-badge {
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.85rem;
        min-width: 80px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .payment-badge:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
}

/* Tablet & Small Desktop Optimization */
@media (min-width: 768px) and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .branding {
        grid-column: 1 / -1;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-desc {
        text-align: center !important;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-social {
        text-align: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    /* Reset untuk kolom lain agar rata kiri */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr; /* 1 kolom di tablet */
    }
}

/* Very Small Mobile Devices */
@media (max-width: 480px) {
    /* Produk & Layanan menjadi 1 kolom di mobile sangat kecil */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    /* Informasi links lebih kecil */
    .footer-col:nth-child(3) a {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    /* Payment badges lebih kecil */
    .payment-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    /* Footer headings adjustment */
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Desktop Hover Effects */
@media (min-width: 993px) {
    /* Produk & Layanan hover effect */
    .footer-links a {
        position: relative;
        padding-left: 0;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        padding-left: 10px;
        color: var(--secondary-color);
    }
    
    .footer-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease;
    }
    
    .footer-links a:hover::before {
        width: 6px;
    }
    
    /* Informasi links hover effect */
    .footer-col:nth-child(3) a {
        position: relative;
        overflow: hidden;
    }
    
    .footer-col:nth-child(3) a::after {
        content: '';
        position: absolute;
        left: -100%;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: var(--secondary-color);
        transition: left 0.3s ease;
    }
    
    .footer-col:nth-child(3) a:hover::after {
        left: 0;
    }
}

/* Fix untuk konsistensi styling */
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .footer-col h4::after {
        left: 0 !important;
        transform: none !important;
    }
}

/* Fix spacing untuk semua footer columns */
.footer-col > *:not(:last-child) {
    margin-bottom: 15px;
}

/* Garis pemisah antar kolom di mobile */
@media (max-width: 992px) {
    .footer-col:not(:last-child) {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}
/* ==========================================
   FOOTER DESKTOP FIX - PRODUK & LAYANAN & INFORMASI
========================================== */

/* Desktop Layout Fix */
@media (min-width: 993px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr; /* Membuat 4 kolom dengan proporsi yang lebih seimbang */
        gap: 30px;
        align-items: start;
    }
    
    /* Produk & Layanan Column */
    .footer-col:nth-child(2) {
        min-width: 200px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .footer-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }
    
    .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }
    
    .footer-links a i {
        font-size: 0.7rem;
        color: var(--secondary-color);
        width: 16px;
        flex-shrink: 0;
    }
    
    /* Informasi Column */
    .footer-col:nth-child(3) {
        min-width: 150px;
    }
    
    .footer-col:nth-child(3) ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-col:nth-child(3) li {
        margin-bottom: 10px;
    }
    
    .footer-col:nth-child(3) a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-col:nth-child(3) a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }
    
    .footer-col:nth-child(3) a i {
        font-size: 0.8rem;
        color: var(--secondary-color);
        width: 20px;
    }
    
    /* Metode Pembayaran Column */
    .footer-col:nth-child(4) {
        min-width: 150px;
    }
    
    .payment-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 5px;
    }
    
    .payment-badge {
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.85rem;
        min-width: 70px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .payment-badge:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    /* Branding Column */
    .branding {
        padding-right: 20px;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* Social Icons */
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Medium Desktop (1200px+) Optimization */
@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-col:nth-child(3) a {
        font-size: 0.95rem;
    }
    
    .payment-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 80px;
    }
}

/* Tablet View (768px - 992px) Fix */
@media (min-width: 768px) and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .branding {
        grid-column: 1 / -1;
    }
    
    /* Produk & Layanan - 2 kolom grid */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    /* Informasi - align left */
    .footer-col:nth-child(3) {
        text-align: left !important;
    }
    
    .footer-col:nth-child(3) ul {
        margin-top: 10px;
    }
    
    .payment-options {
        justify-content: flex-start !important;
    }
}

/* Fix untuk alignment heading dan content */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Konsistensi spacing untuk semua footer items */
.footer-col > *:not(:last-child) {
    margin-bottom: 15px;
}

/* Fix untuk emoji di Produk & Layanan */
.footer-links a::before {
    content: '🌷';
    margin-right: 8px;
    font-size: 0.9em;
}

.footer-links a i.fa-chevron-right {
    display: none; /* Sembunyikan chevron jika ada emoji */
}

/* Clean up untuk Informasi links */
.footer-col:nth-child(3) a::before {
    display: none; /* Tidak ada emoji untuk informasi */
}

/* Container max-width untuk konten footer */
.container {
    max-width: 1200px;
}