/* ================================
   Perodua Dealer - Mazlina Bakri
   Clean Light Theme
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Arial', sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   NAVBAR
   ================================ */
.top-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.top-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-accent-line {
    display: none;
}

.logo-link { display: flex; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #00703c;
    font-size: 20px;
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00703c;
    background: #f0f7f3;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-whatsapp-btn {
    background: #00703c;
    color: white !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-whatsapp-btn:hover {
    background: #005a30;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-content {
    background: #fff;
    width: 280px;
    height: 100%;
    margin-left: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    align-self: flex-end;
    padding: 8px;
    margin-bottom: 10px;
}

.mobile-nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: #f0f7f3;
    color: #00703c;
}

.mobile-nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
}

.mobile-nav-whatsapp:hover {
    background: #1da851;
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    margin-top: 65px;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5ee 50%, #f5f5f5 100%);
    padding: 10px 0 0;
    overflow: visible;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.hero-content {
    flex: 1;
    padding: 10px 0 60px;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-trust-badge i {
    color: #00703c;
    font-size: 14px;
}

.hero-headline {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.8);
}

.hero-headline span {
    color: #00703c;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.8);
}

.hero-desc {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 480px;
    background: rgba(255,255,255,0.85);
    padding: 12px 16px;
    border-radius: 8px;
}

.hero-usp {
    list-style: none;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.85);
    padding: 14px 18px;
    border-radius: 8px;
    max-width: 480px;
}

.hero-usp li {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-usp li i {
    color: #25D366;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e60012;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.25);
}

.hero-btn-primary:hover {
    background: #c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 18, 0.35);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00703c;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 112, 60, 0.25);
}

.hero-btn-outline:hover {
    background: #005a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 60, 0.35);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    margin-top: 0;
}

.hero-image img {
    max-height: 750px;
    width: auto;
    object-fit: contain;
    transform: translateY(70px);
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(0,112,60,0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00703c;
}

.hero-image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.hero-image-placeholder p {
    font-size: 14px;
    opacity: 0.5;
}

/* ================================
   SERVIS SECTION
   ================================ */
.servis-section {
    padding: 100px 20px 50px;
    background: #f2f2f2;
    position: relative;
    z-index: 1;
}

.servis-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.servis-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servis-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.servis-card:hover .servis-icon {
    transform: translateY(-2px);
}

.servis-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #555;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.servis-icon i {
    font-size: 22px;
    color: #fff;
}

.servis-text {
    flex: 1;
}

.servis-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3px;
    line-height: 1.3;
}

.servis-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* ================================
   PILIHAN POPULAR SECTION
   ================================ */
.popular-section {
    padding: 60px 20px 50px;
    background: linear-gradient(180deg, #e8f0f8 0%, #d4e4f4 100%);
}

.popular-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.popular-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.popular-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 18px 20px 28px;
    position: relative;
    overflow: visible;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.popular-card-body {
    display: flex;
    align-items: center;
    flex: 1;
}

.popular-card-footer {
    text-align: center;
    padding-top: 12px;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: #00703c;
    z-index: 2;
}

.popular-card-text {
    flex: 1;
    min-width: 0;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.popular-card-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    overflow: visible;
    z-index: 1;
    margin-left: 0;
    margin-right: -30px;
    position: relative;
}

.popular-card-image img {
    max-height: 320px;
    max-width: 140%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.15));
}

.popular-img-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #ddd;
}

.popular-car-name {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.popular-price {
    font-size: 18px;
    font-weight: 700;
    color: #c00;
    margin-bottom: 6px;
    margin-top: -8px;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
}

.popular-price-big {
    font-size: 38px;
    font-weight: 800;
}

.popular-price-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.popular-price-from {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.popular-price-from strong {
    color: #1a1a1a;
    text-decoration: underline;
}

.popular-detail-btn {
    display: block;
    background: #e60012;
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.popular-detail-btn:hover {
    background: #c00;
}

.popular-cta {
    text-align: center;
    margin-top: 35px;
}

.popular-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00703c;
    color: white !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
}

.popular-view-all:hover {
    background: #005a30;
}

/* ================================
   KENAPA PILIH MAZ SECTION
   ================================ */
.kenapa-section {
    padding: 60px 20px;
    background: #ffffff;
}

.kenapa-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.kenapa-content {
    flex: 1;
}

.kenapa-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.kenapa-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.kenapa-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kenapa-list li {
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.kenapa-list li i {
    color: #00703c;
    font-size: 18px;
    min-width: 20px;
}

.kenapa-image {
    flex: 0.8;
    border-radius: 16px;
    overflow: hidden;
}

.kenapa-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.kenapa-img-placeholder {
    width: 100%;
    height: 350px;
    background: #f0f7f3;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #00703c;
}

.kenapa-img-placeholder i {
    font-size: 60px;
    opacity: 0.3;
}

.kenapa-img-placeholder p {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.4;
}

/* ================================
   PELANGGAN GEMBIRA SECTION
   ================================ */
.pelanggan-section {
    padding: 50px 20px;
    background: #f5f5f5;
}

.pelanggan-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pelanggan-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.pelanggan-heading i {
    color: #f5c518;
    margin-right: 8px;
}

.pelanggan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pelanggan-card {
    text-align: center;
}

.pelanggan-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 4/3;
    background: #3a3a3a;
}

.pelanggan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pelanggan-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 30px;
}

.pelanggan-caption {
    font-size: 12px;
    color: #666;
}

/* ================================
   TANYA MAZ SECTION
   ================================ */
.tanya-section {
    padding: 60px 20px;
    background: #ffffff;
}

.tanya-container {
    max-width: 700px;
    margin: 0 auto;
}

.tanya-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tanya-sub {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.tanya-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tanya-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tanya-form input,
.tanya-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s;
    resize: vertical;
}

.tanya-form input:focus,
.tanya-form textarea:focus {
    outline: none;
    border-color: #00703c;
}

.tanya-form input::placeholder,
.tanya-form textarea::placeholder {
    color: #aaa;
}

.tanya-submit {
    background: #00703c;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    align-self: center;
}

.tanya-submit:hover {
    background: #005a30;
}

/* ================================
   LOKASI SHOWROOM SECTION
   ================================ */
.lokasi-section {
    padding: 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.lokasi-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: 350px;
}

.lokasi-map {
    flex: 1;
    min-height: 300px;
    background: #e0e0e0;
}

.lokasi-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.lokasi-info {
    flex: 0.8;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lokasi-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.lokasi-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.lokasi-name {
    font-size: 16px;
    font-weight: 700;
    color: #00703c;
    margin-bottom: 10px;
}

.lokasi-address {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.lokasi-hours,
.lokasi-note {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.lokasi-hours i,
.lokasi-note i {
    color: #00703c;
    margin-right: 6px;
    width: 16px;
}

.lokasi-note {
    color: #c00;
    font-style: italic;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background: #333;
    color: #ccc;
}

.footer-main {
    padding: 45px 20px;
    border-bottom: 1px solid #444;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.buletin-card {
    display: block;
    background: #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.buletin-card:hover {
    background: #555;
}



.buletin-label {
    font-size: 14px;
    font-weight: 600;
    color: #f5c518;
    margin-bottom: 6px;
}

.buletin-detail {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.buletin-models {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.buletin-validity {
    font-size: 12px;
    color: #999;
}

.footer-role {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 4px;
}

.footer-specialty {
    font-size: 13px;
    color: #999;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links ul li a {
    font-size: 13px;
    color: #bbb;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact-desc {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-social {
    margin-top: 12px;
}

.footer-social p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 0;
}

.footer-social i {
    color: #4267B2;
    margin-right: 6px;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.footer-wa-btn:hover {
    background: #1da851;
}

.footer-bottom {
    padding: 25px 20px;
    text-align: center;
    background: #222;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.footer-auth {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 12px;
    color: #666;
}

/* ================================
   WHATSAPP FLOATING WIDGET
   ================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-tooltip {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    font-size: 13px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-button {
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-button {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .popular-detail-btn {
        margin-right: 65px;
    }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        padding: 30px 0 20px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-usp {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-usp li {
        justify-content: flex-start;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-image img {
        max-height: 350px;
        transform: translateY(5px);
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kenapa-container {
        flex-direction: column;
        text-align: center;
    }

    .kenapa-list {
        align-self: center;
    }

    .kenapa-list li {
        justify-content: flex-start;
    }

    .pelanggan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lokasi-container {
        flex-direction: column;
    }

    .lokasi-map {
        min-height: 250px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .servis-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .popular-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .tanya-row {
        grid-template-columns: 1fr;
    }

    .pelanggan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-headline {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .nav-buttons .sign-in {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 60px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .servis-heading,
    .popular-heading {
        font-size: 22px;
    }

    .top-nav {
        padding: 8px 15px;
    }

    .book-now-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .whatsapp-widget {
        bottom: 80px;
    }
}

/* ================================
   MODEL DETAIL PAGE
   ================================ */

/* Model Hero */
.model-hero {
    margin-top: 0;
    padding-top: 140px;
    background: linear-gradient(135deg, #2b3a5e 0%, #1a2640 100%);
    overflow: hidden;
}

/* Dark text when background image is light */
.model-hero.hero-bg-light .model-hero-content h1 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.model-hero.hero-bg-light .model-hero-content h1 strong {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.model-hero.hero-bg-light .model-hero-tagline {
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.model-hero.hero-bg-light .model-price-label {
    color: rgba(255,255,255,0.85);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.model-hero.hero-bg-light .model-price-value {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.model-hero.hero-bg-light .model-price-sub {
    color: rgba(255,255,255,0.85);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.model-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 0;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.model-hero-content {
    flex: 1;
    padding-bottom: 70px;
}

.model-hero-content h1 {
    font-size: 44px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.15;
}

.model-hero-content h1 strong {
    font-weight: 900;
    font-style: italic;
    font-size: 56px;
}

.model-hero-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-bottom: 35px;
}

.model-hero-action-row {
    display: block;
}

.model-hero-pricing {
    margin-bottom: 30px;
}

.model-hero-price {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.model-price-label {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    white-space: nowrap;
}

.model-price-value {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.model-price-sub {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0;
}

.model-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.model-hero-btn {
    display: inline-block;
    background: #e60012;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.model-hero-btn:hover {
    background: #c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 0, 18, 0.4);
}

.model-hero-btn-outline {
    display: inline-block;
    background: #25D366;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.model-hero-btn-outline:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.model-hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.model-hero-image img {
    max-height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.model-img-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 24px;
}

.model-img-placeholder i {
    font-size: 80px;
    margin-bottom: 10px;
}

/* Model Variants */
.model-variants {
    padding: 60px 20px 70px;
    background: #f0f4f8;
}

.model-variants-container {
    max-width: 1200px;
    margin: 0 auto;
}

.model-variants h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.variant-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px 25px;
    text-align: center;
    border: none;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.variant-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.variant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e60012;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.variant-name {
    font-size: 24px;
    font-weight: 800;
    color: #2b3a5e;
    margin-bottom: 4px;
    font-style: italic;
}

.variant-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 18px;
    font-style: italic;
}

.variant-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -20px 20px;
    padding: 15px 20px;
    background: #f3f3f3;
    border-radius: 8px;
}

.variant-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.variant-img-placeholder {
    color: #ccc;
    font-size: 50px;
}

.variant-price {
    font-size: 15px;
    color: #555;
    margin-bottom: 4px;
}

.variant-price strong {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 900;
}

.variant-harga {
    font-size: 13px;
    color: #888;
    margin-bottom: 18px;
}

.variant-harga strong {
    color: #1a1a1a;
    text-decoration: underline;
}

.variant-separator {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 12px 0;
}

.variant-hti {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.variant-hti strong {
    color: #1a1a1a;
    font-weight: 800;
}

.variant-btn {
    display: inline-block;
    background: #e60012;
    color: #fff !important;
    padding: 11px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.variant-btn:hover {
    background: #c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
}

/* Model CTA */
.model-cta {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.model-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.model-cta h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.model-cta p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.model-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.model-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.model-cta-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.model-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #333 !important;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.model-cta-call:hover {
    border-color: #333;
}

/* Model Page Responsive */
@media (max-width: 992px) {
    .model-hero-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 40px 30px 0;
    }

    .model-hero-content {
        padding-bottom: 40px;
    }

    .model-hero-content h1 strong {
        font-size: 38px;
    }

    .model-hero-buttons {
        justify-content: center;
        align-items: center;
    }

    .model-hero-price {
        justify-content: center;
    }

    .model-hero-image img {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .model-hero {
        padding-top: 80px;
    }

    .model-hero-container {
        padding: 20px 20px 0;
        gap: 0;
    }

    .model-hero-content h1 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .model-hero-content h1 strong {
        font-size: 32px;
    }

    .model-hero-tagline {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .model-hero-action-row {
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: stretch;
        text-align: left;
    }

    .model-hero-pricing {
        flex: 1;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 0;
    }

    .model-hero-price {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 8px;
        justify-content: flex-start;
    }

    .model-hero-price:last-child {
        margin-bottom: 0;
    }

    .model-price-label {
        font-size: 12px;
    }

    .model-price-value {
        font-size: 22px;
    }

    .model-hero-buttons {
        flex: 1;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .model-hero-btn,
    .model-hero-btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        font-size: 15px;
    }

    .model-hero-image img {
        max-height: 250px;
    }

    .variant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .model-cta-wa,
    .model-cta-call {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .model-hero {
        padding-top: 70px;
    }

    .model-hero-content h1 {
        font-size: 22px;
    }

    .model-hero-content h1 strong {
        font-size: 28px;
    }

    .model-hero-image img {
        max-height: 220px;
    }

    .variant-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ================================
   BLOG STYLES
   ================================ */

/* Blog Page Header */
.blog-page-header {
    position: relative;
    background: linear-gradient(135deg, #00703c 0%, #005a30 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.blog-page-header .container { position: relative; z-index: 2; }

.blog-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.blog-page-header h1 span { color: #c8e6c9; }

.blog-page-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-header { padding-bottom: 50px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover { color: #fff; transform: translateX(-3px); }

.post-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.post-meta i { margin-right: 5px; color: rgba(255, 255, 255, 0.9); }

/* Blog Breadcrumbs */
.blog-breadcrumbs {
    background: #f5f5f5;
    padding: 15px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-breadcrumbs a {
    color: #00703c;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-breadcrumbs a:hover { color: #005a30; }
.blog-breadcrumbs span { color: #bbb; font-size: 0.75rem; }
.blog-breadcrumbs .current { color: #666; }

/* Blog Listing */
.blog-listing {
    padding: 80px 0;
    background: #f9f9f9;
}

.blog-listing .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #00703c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00703c;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}

.blog-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.blog-month {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body { padding: 25px; }

.blog-card-body h3 {
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-body h3 { color: #00703c; }

.blog-card-body p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-author {
    font-size: 0.8rem;
    color: #999;
}

.blog-author i { margin-right: 5px; color: #00703c; }

.blog-read-more {
    font-size: 0.85rem;
    color: #00703c;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more i { margin-left: 5px; transition: transform 0.3s; }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

.no-posts {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 80px 0;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: rgba(0, 112, 60, 0.05);
    border-color: #00703c;
    color: #00703c;
}

.pagination-link.active {
    background: #00703c;
    border-color: #00703c;
    color: #fff;
    font-weight: 700;
}

/* Blog Post Page */
.blog-post {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

.blog-post .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
}

.blog-post-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.blog-post-body h2, .blog-post-body h3, .blog-post-body h4 { color: #1a1a1a; margin: 1.5em 0 0.8em; }
.blog-post-body h2 { font-size: 1.6rem; border-bottom: 2px solid rgba(0, 112, 60, 0.2); padding-bottom: 10px; }
.blog-post-body h3 { font-size: 1.3rem; }
.blog-post-body a { color: #00703c; text-decoration: underline; }
.blog-post-body a:hover { color: #005a30; }
.blog-post-body img { max-width: 100%; border-radius: 8px; margin: 1.5em 0; }
.blog-post-body blockquote {
    border-left: 4px solid #00703c;
    padding: 15px 20px;
    margin: 1.5em 0;
    background: rgba(0, 112, 60, 0.04);
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
}

.blog-post-body ul, .blog-post-body ol { margin: 1em 0; padding-left: 1.5em; }
.blog-post-body li { margin-bottom: 0.5em; }
.blog-post-body p { margin-bottom: 1.2em; }

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00703c;
    font-weight: 600;
}

.sidebar-widget h3 i { margin-right: 8px; color: #00703c; }

.sidebar-widget p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sidebar-post {
    display: block;
    text-decoration: none;
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-post:last-child { border-bottom: none; }

.sidebar-post:hover {
    background: rgba(0, 112, 60, 0.04);
    padding-left: 15px;
}

.sidebar-post.active {
    border-left: 3px solid #00703c;
    padding-left: 15px;
    background: rgba(0, 112, 60, 0.04);
}

.sidebar-post-date {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
}

.sidebar-post-date i { margin-right: 4px; }

.sidebar-post-title {
    display: block;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.3s;
}

.sidebar-post:hover .sidebar-post-title { color: #00703c; }

.sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    background: #20bd5a;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-page-header h1 { font-size: 28px; }
    .blog-page-header { padding: 120px 0 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-post-image { height: 250px; }
    .blog-listing { padding: 50px 0; }
}

/* ==================== PROMO PAGE ==================== */

.promo-page-header {
    position: relative;
    background: linear-gradient(135deg, #00703c 0%, #005a30 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.promo-page-header .container { position: relative; z-index: 2; }

.promo-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.promo-page-header h1 span { color: #c8e6c9; }

.promo-page-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.promo-listing-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.promo-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.promo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.05);
}

.promo-card-icon {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.promo-card-icon i {
    font-size: 60px;
    color: #00703c;
}

.promo-card-body {
    padding: 25px;
    flex: 1;
}

.promo-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.promo-card-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-date {
    display: inline-block;
    font-size: 13px;
    color: #e60012;
    font-weight: 600;
    background: #fff5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

.promo-card-footer {
    padding: 0 25px 25px;
}

.promo-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.promo-wa-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.promo-empty {
    text-align: center;
    padding: 80px 20px;
}

.promo-empty i {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.promo-empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.promo-empty p {
    font-size: 16px;
    color: #777;
}

.promo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b3a5e 0%, #1a2540 100%);
    text-align: center;
}

.promo-cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.promo-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.promo-cta-btn:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Promo Responsive */
@media (max-width: 768px) {
    .promo-page-header h1 { font-size: 28px; }
    .promo-page-header { padding: 120px 0 40px; }
    .promo-grid { grid-template-columns: 1fr; }
    .promo-listing-section { padding: 40px 0; }
    .promo-cta { padding: 50px 0; }
    .promo-cta h2 { font-size: 24px; }
}

/* ================================
   CTA POPUP MODAL
   ================================ */
.cta-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.cta-popup-overlay.active {
    display: flex;
}

.cta-popup {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 440px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popupSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.cta-popup-close:hover {
    color: #333;
}

.cta-popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e60012, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: pulse 2s infinite;
}

.cta-popup-icon i {
    color: #fff;
    font-size: 26px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(230, 0, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0); }
}

.cta-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: #2b3a5e;
    margin-bottom: 12px;
}

.cta-popup-urgency {
    background: #fff3cd;
    color: #856404;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid #ffc107;
}

.cta-popup-benefits {
    text-align: left;
    margin-bottom: 24px;
}

.cta-popup-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}

.cta-popup-benefit i {
    color: #00703c;
    font-size: 16px;
    flex-shrink: 0;
}

.cta-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-popup-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-popup-btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.cta-popup-btn-primary i {
    font-size: 20px;
}

.cta-popup-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #00703c;
    border: 2px solid #00703c;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-popup-btn-secondary:hover {
    background: #00703c;
    color: #fff;
    transform: translateY(-2px);
}

.cta-popup-btn-secondary i {
    font-size: 18px;
}

.cta-popup-footer {
    margin-top: 16px;
    font-size: 12px;
    color: #999;
}

.cta-popup-footer i {
    color: #00703c;
    margin-right: 4px;
}

@media (max-width: 480px) {
    .cta-popup {
        padding: 28px 20px;
        margin: 16px;
    }

    .cta-popup-title {
        font-size: 18px;
    }
}

/* ================================
   PRICELIST PAGE
   ================================ */
.pricelist-section {
    padding: 40px 20px;
    padding-top: 100px;
    background: #f9f9f9;
    min-height: 100vh;
}

.pricelist-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricelist-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fff 0%, #f0f7f3 100%);
    border-radius: 12px;
    border-left: 5px solid #00703c;
}

.pricelist-logo {
    width: 70px;
    height: auto;
}

.pricelist-title-block {
    flex: 1;
}

.pricelist-title {
    font-size: 32px;
    font-weight: 900;
    color: #c00;
    margin: 0;
    line-height: 1.2;
}

.pricelist-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 2px 0;
}

.pricelist-tenure {
    font-size: 14px;
    font-weight: 700;
    color: #00703c;
    margin: 0;
}

.pricelist-note {
    background: #fffde7;
    border: 1px solid #f9e14a;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #555;
}

.pricelist-note p {
    margin: 2px 0;
}

.pricelist-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.pricelist-tables {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricelist-model {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricelist-model-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #00703c, #005a30);
    padding: 10px 16px;
}

.pricelist-model-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.pricelist-model-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.pricelist-table {
    width: 100%;
    border-collapse: collapse;
}

.pricelist-table thead th {
    background: #f5f5f5;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricelist-table thead th:first-child {
    text-align: left;
}

.pricelist-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.pricelist-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.pricelist-table tbody tr:hover {
    background: #f0f7f3;
}

.pricelist-table td {
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
}

.pricelist-variant-name {
    text-align: left !important;
    font-weight: 500;
    color: #333;
    font-size: 12.5px !important;
}

.pricelist-price {
    font-weight: 700;
    color: #1a1a1a;
}

.pricelist-loan {
    font-weight: 700;
    color: #00703c;
}

/* Sidebar */
.pricelist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 80px;
}

.pricelist-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricelist-info-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #c00;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricelist-info-card h3 i {
    color: #00703c;
}

.pricelist-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricelist-info-card ul li {
    font-size: 13px;
    color: #444;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricelist-info-card ul li i {
    color: #25D366;
    font-size: 12px;
    flex-shrink: 0;
}

.pricelist-info-highlight {
    border: 2px solid #00703c;
    background: #f0f7f3;
}

.pricelist-cta {
    background: linear-gradient(135deg, #c00, #a00);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.pricelist-cta-label {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
}

.pricelist-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s;
}

.pricelist-cta-phone:hover {
    background: #1da851;
}

.pricelist-cta-site {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 10px 0 0;
}

/* Pricelist Mobile */
@media (max-width: 900px) {
    .pricelist-grid {
        grid-template-columns: 1fr;
    }

    .pricelist-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .pricelist-header {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .pricelist-title {
        font-size: 24px;
    }

    .pricelist-model-header {
        padding: 8px 12px;
    }

    .pricelist-model-name {
        font-size: 15px;
    }

    .pricelist-model-img {
        height: 35px;
    }

    .pricelist-table td,
    .pricelist-table thead th {
        padding: 6px 8px;
        font-size: 11px;
    }

    .pricelist-variant-name {
        font-size: 11px !important;
    }

    .pricelist-info-card {
        padding: 12px;
    }

    .pricelist-cta-phone {
        font-size: 16px;
        padding: 10px 20px;
    }
}
