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

:root {
    --color-primary: #1A535C; /* Dark Teal - Warna Laut Premium */
    --color-secondary: #FF6B6B; /* Coral Red - Warna Saus Padang/Pedas */
    --color-accent: #FFD95D; /* Golden Yellow - Warna Mewah/Bumbu Kaya */
    --color-text: #333333;
    --color-light: #F7FFF7; /* Off-White/Clean Background */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* --- TOMBOL (CTA) --- */
.cta-button, .cta-button-final {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover, .cta-button-final:hover {
    background-color: #e85a5a;
    transform: translateY(-2px);
}

/* --- 1. HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(26, 83, 92, 0.7), rgba(26, 83, 92, 0.9)), url('hero-seafood-bg.jpg') no-repeat center center/cover;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-light);
}

.hero .container {
    padding-top: 0;
    padding-bottom: 0;
}

.headline-utama {
    font-family: var(--font-heading);
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--color-accent); /* Emas untuk Headline */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.sub-headline {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 40px;
}

/* --- GENERAL SECTION STYLING --- */
.section {
    padding: 80px 0;
    text-align: center;
}

.bg-light {
    background-color: var(--color-light);
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 60px;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- 2. WHY US / PROBLEM AGITATION --- */
.points-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.point-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.point-item h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- 3. PRODUCT SHOWCASE --- */
.product-detail {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    margin-top: 40px;
}

.product-detail img {
    width: 50%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-text {
    width: 50%;
}

.product-text h3 {
    font-family: var(--font-heading);
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.product-text p {
    margin-bottom: 20px;
}

.product-text ul {
    list-style: none;
    padding-left: 0;
}

.product-text ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--color-primary);
    font-weight: 600;
}

/* --- 4. TESTIMONIALS --- */
.testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.testi-card {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testi-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.testi-card span {
    display: block;
    font-weight: 700;
    color: var(--color-accent); /* Aksen Emas */
}

/* --- 5. CALL TO ACTION FINAL --- */
.cta-final {
    background-color: var(--color-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title-cta {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.order-form input, .order-form select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
}

.cta-button-final {
    width: 100%;
}

/* --- FOOTER --- */
.footer {
    background-color: #11363a;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* --- RESPONSIF SEDERHANA --- */
@media (max-width: 768px) {
    .headline-utama {
        font-size: 2.5em;
    }

    .sub-headline {
        font-size: 1.1em;
    }

    .points-grid, .testimonial-grid {
        flex-direction: column;
        gap: 20px;
    }

    .product-detail {
        flex-direction: column;
        text-align: center;
    }

    .product-detail img, .product-text {
        width: 100%;
        max-width: none;
    }
}