:root {
    --bg-color: #FFFFFF;
    --primary: #D32F2F; /* Merah otomotif agresif */
    --primary-dark: #B71C1C;
    --text-dark: #212121;
    --text-light: #757575;
    --white: #FFFFFF;
    --wa-color: #25D366;
    --bg-grey: #F9F9F9;
    --card-border: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #EAEAEA;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.hero {
    position: relative;
    height: 240px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px 20px 20px;
}

.badge-promo {
    display: inline-block;
    background-color: #FFEB3B;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.hero-overlay h1 {
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.hero-overlay p {
    font-size: 14px;
    font-weight: 300;
    color: #EEEEEE;
}

.benefit-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--white);
}

.benefit-card {
    text-align: center;
    width: 32%;
    background: var(--bg-grey);
    padding: 15px 5px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.benefit-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Sections Base */
.content-section {
    padding: 10px 20px 30px 20px;
}

.section-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 900;
    border-left: 5px solid var(--primary);
    padding-left: 10px;
}

/* Profile */
.profile-box {
    background: var(--bg-grey);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 15px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.profile-header h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.profile-header p {
    font-size: 12px;
    color: var(--text-light);
}

.profile-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Product Catalog */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--card-border);
}

.product-card img {
    width: 130px;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.dp {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.dp strong {
    color: var(--primary);
    font-size: 15px;
    display: block;
    margin-top: 3px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-outline:active {
    background: var(--primary);
    color: white;
}

/* Testimonials (Scrollable) */
.testi-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.testi-scroll::-webkit-scrollbar { height: 6px; }
.testi-scroll::-webkit-scrollbar-thumb { background: #CCC; border-radius: 10px; }

.testi-card {
    background: var(--white);
    width: 280px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--card-border);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.stars {
    color: #FFC107;
    font-size: 13px;
    margin-bottom: 10px;
}

.testi-card p {
    font-size: 13px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.testi-card strong {
    font-size: 13px;
    color: var(--primary);
}

/* Info Card (Map) */
.info-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--card-border);
}

.map-container iframe {
    display: block;
}

.address-box {
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-dark);
}

.address-box i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 15px;
    color: var(--primary);
    font-weight: 900;
}
.faq-item[open] summary::after { content: "-"; }

.faq-content {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
footer {
    background: #111111; /* Hitam agar kontras dengan merah */
    color: var(--white);
    text-align: center;
    padding: 30px 20px 40px 20px;
    margin-bottom: 60px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.socials a {
    color: var(--white);
    font-size: 20px;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

footer p {
    font-size: 12px;
    opacity: 0.6;
}

.bottom-spacer { height: 10px; }

/* Sticky Button */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(to top, var(--bg-color) 80%, transparent);
    padding: 10px 20px 20px 20px;
    z-index: 100;
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--wa-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px; /* Lebih boxy untuk kesan otomotif tangguh */
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-whatsapp:active { transform: scale(0.98); }
