/* CSS untuk Mama Lia Cake */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff85a1;
    --secondary-color: #fce4ec;
    --accent-color: #ff5c8d;
    --text-color: #4a4a4a;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(255, 133, 161, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fffafb;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

h1, h2, h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-sticky img {
    width: 32px;
    height: 32px;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), 
                url('https://images.unsplash.com/photo-1488477181946-6428a0291777?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px;
    border-bottom: 5px solid var(--secondary-color);
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.headline {
    font-size: 2.2rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #666;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(255, 92, 141, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--secondary-color);
}

/* Katalog Horizontal Scroll */
.catalog-container {
    position: relative;
    margin-top: 30px;
}

.catalog-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.catalog-scroll::-webkit-scrollbar {
    height: 6px;
}

.catalog-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.catalog-item {
    flex: 0 0 280px;
}

.catalog-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.scroll-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: -10px;
}

/* Benefits */
.benefit-item {
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    background: white;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow);
}

.benefit-item h4 {
    color: var(--accent-color);
}

/* Testimonials */
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--secondary-color);
}

.testi-card .quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* FAQ (No Delay Animation) */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    align-self: start;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    gap: 15px;
}

.faq-question::after {
    content: '↓';
    transition: transform 0.2s;
    background: var(--secondary-color);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #fffafb;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-content {
    padding: 0 20px 20px 20px;
    font-size: 0.88rem;
    color: #666;
}

.faq-content p {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #fce4ec;
    color: #888;
}

/* Responsive */
@media (max-width: 850px) {
    .faq-grid { grid-template-columns: 1fr; }
    .catalog-item { flex: 0 0 240px; }
}

@media (max-width: 768px) {
    .brand-name { font-size: 3rem; }
    .headline { font-size: 1.8rem; }
}