/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E11B22; /* Red Perodua */
    --primary-dark: #C00A10;
    --secondary: #2D3748;
    --accent: #FFD700;
    --light: #F7FAFC;
    --dark: #1A202C;
    --gray: #718096;
    --light-gray: #E2E8F0;
    --success: #38A169;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-perodua {
    height: 45px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary);
}

.btn-whatsapp-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-whatsapp-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.float-whatsapp i {
    font-size: 28px;
}

.float-whatsapp span {
    font-size: 10px;
    margin-top: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(225, 27, 34, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Image */
.profile-image-container {
    background: white;
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: none;
    margin: 0 auto;
    border: 3px solid var(--primary);
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    object-fit: contain;
}

.profile-info {
    padding: 15px;
    background: white;
}

.profile-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.profile-info p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Models Section */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-10px);
}

.model-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-info {
    padding: 25px;
}

.model-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.model-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.model-features {
    list-style: none;
    margin-bottom: 20px;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--gray);
}

.model-features i {
    color: var(--primary);
}

.btn-model {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-model:hover {
    background: var(--primary-dark);
}

/* =========================================== */
/* POSTER SECTION - CENTERED & BEAUTIFUL       */
/* =========================================== */
.poster {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 20px;
}

/* Poster Container */
.poster-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Poster Image Card */
.poster-image-card {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(225, 27, 34, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.image-wrapper:hover .poster-img {
    transform: scale(1.01);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.image-overlay i {
    font-size: 1.2rem;
}

/* Poster Actions */
.poster-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.action-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(225, 27, 34, 0.1);
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: rgba(225, 27, 34, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(225, 27, 34, 0.2);
}

.action-card h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.action-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Beautiful Button */
.btn-poster-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.btn-poster-action:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-poster-action:hover:before {
    left: 100%;
}

.btn-poster-action:hover {
    background: linear-gradient(135deg, #1da851 0%, #1a9c48 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-poster-action:active {
    transform: translateY(-1px);
}

.btn-poster-action i {
    font-size: 1.3rem;
}

/* Modal */
.poster-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalPosterImage {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
}

/* Calculator Section */
.calculator {
    background: var(--light);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.input-number {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.input-number:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.15);
    transform: translateY(-2px);
}

.btn-calculate {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(225, 27, 34, 0.2);
}

.btn-calculate:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #b00000 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(225, 27, 34, 0.3);
}

.calculator-results {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.calculator-results h3 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--secondary);
    font-size: 1.4rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-item span:first-child {
    font-weight: 500;
    color: var(--secondary);
    font-size: 1rem;
}

.result-item span:last-child {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.highlight-result {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    text-shadow: 0 2px 4px rgba(225, 27, 34, 0.1);
}

/* WhatsApp result button */
.whatsapp-result {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
    text-align: center;
}

.whatsapp-result p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 1rem;
}

.btn-whatsapp-result {
    display: block;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: white;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-result:hover {
    background: linear-gradient(135deg, #1da851 0%, #1a9c48 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

/* Calculator Note */
.calculator-note {
    margin-top: 20px;
    padding: 10px 15px;
    background: #fff3cd;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.calculator-note p {
    color: #856404;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.calculator-note small {
    font-size: 0.8rem;
}

/* Delivery Gallery Section */
.delivery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.delivery-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.delivery-image img.car-delivery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.delivery-card:hover .delivery-image img.car-delivery-image {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--primary);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.small {
    font-size: 0.9rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Google Maps Styles */
#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leaflet-container {
    font-family: 'Roboto', sans-serif;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-content p {
    color: #CBD5E0;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-whatsapp-footer:hover {
    background: #1da851;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4A5568;
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-footer-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* =========================================== */
/* RESPONSIVE DESIGN FOR POSTER SECTION        */
/* =========================================== */
@media (max-width: 992px) {
    .poster {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .action-card {
        padding: 30px;
    }
    
    /* Tablet & Mobile (992px and below) */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Tablet: 2 kolom untuk gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tablet: 2 kolom untuk models */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .poster {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .poster-container {
        gap: 30px;
    }
    
    .action-card {
        padding: 25px;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .action-card h4 {
        font-size: 1.2rem;
    }
    
    .btn-poster-action {
        padding: 14px 25px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .image-overlay {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    /* Mobile (768px and below) */
    header .container {
        padding: 12px 15px;
    }
    
    .logo-perodua {
        height: 35px;
        max-width: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    /* Profile image untuk mobile */
    .profile-image-container {
        max-width: 250px;
        margin: 20px auto 0;
    }
    
    .profile-image {
        width: 100%;
        height: auto;
    }
    
    /* Navigation untuk mobile */
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Section padding untuk mobile */
    section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Calculator untuk mobile */
    .calculator-wrapper {
        padding: 20px;
    }
    
    .calculator-results {
        padding: 20px;
    }
    
    .result-item span:first-child {
        font-size: 0.9rem;
    }
    
    .result-item span:last-child {
        font-size: 1rem;
    }
    
    .highlight-result {
        font-size: 1.5rem !important;
    }
    
    .btn-calculate {
        padding: 14px;
        font-size: 1.1rem;
    }
    
    .btn-whatsapp-result {
        padding: 14px;
        font-size: 1rem;
    }
    
    /* Gallery untuk mobile - 1 kolom */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-image {
        height: 200px;
    }
    
    /* Models untuk mobile - 1 kolom */
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials untuk mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Contact untuk mobile */
    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Map untuk mobile */
    #map {
        height: 300px;
    }
    
    /* Footer untuk mobile */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .btn-whatsapp-footer {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .poster {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .action-card {
        padding: 20px;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .action-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .action-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-poster-action {
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .btn-poster-action i {
        font-size: 1.1rem;
    }
    
    .image-overlay {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    /* Small Mobile (480px and below) */
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .logo-perodua {
        height: 30px;
        max-width: 30px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .profile-image-container {
        max-width: 220px;
    }
    
    /* Saiz gambar delivery lebih kecil di mobile sangat kecil */
    .delivery-image {
        height: 180px;
    }
    
    /* Model card untuk very small mobile */
    .model-card {
        margin-bottom: 20px;
    }
    
    .model-image {
        height: 180px;
    }
    
    .model-info {
        padding: 20px;
    }
    
    .model-info h3 {
        font-size: 1.2rem;
    }
    
    .model-price {
        font-size: 1.1rem;
    }
    
    /* Input fields untuk very small mobile */
    .input-number {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* WhatsApp button lebih kecil */
    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-whatsapp i {
        font-size: 24px;
    }
    
    .float-whatsapp span {
        font-size: 9px;
    }
    
    /* Social links lebih kecil */
    .social-footer-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        margin-bottom: 20px;
    }
    
    .profile-image-container {
        max-width: 180px;
    }
}

/* Very Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .btn-poster-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%) !important;
    color: white !important;
    padding: 16px 35px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
    position: relative;
    overflow: hidden;
    border: none !important;
    cursor: pointer;
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    min-width: 250px; /* TAMBAH INI */
}

/* Pastikan hover effect berfungsi */
.btn-poster-action:hover {
    background: linear-gradient(135deg, #1da851 0%, #1a9c48 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4) !important;
    text-decoration: none !important;
    color: white !important;
}

/* Untuk mobile */
@media (max-width: 768px) {
    .btn-poster-action {
        padding: 14px 25px !important;
        font-size: 1rem !important;
        min-width: 200px !important;
    }
}

@media (max-width: 768px) {
    .poster .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .poster-img {
        transform: scale(0.95); /* Scale down sedikit */
        transform-origin: center;
    }
    
    /* Kalau masih terlalu besar, guna object-fit */
    .poster-img {
        object-fit: contain !important;
        object-position: center top !important;
    }
}

}