.logo-img {
  height: 30px;
  vertical-align: middle;
}
/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/* NAVBAR & BURGER */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e63946;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}
.nav-links a:hover { color: #e63946; }
/* FULL PAGE LOGIC */
.full-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.link-text {
    color: white;
    text-decoration: none;
}

.container { max-width: 900px; margin: auto; }
/* WARNA SETIAP SECTION */
.section-white { background: #ffffff; color: #111; }
.section-grey  { background: #f4f4f4; color: #333; }
.section-blue  { background: #003399; color: #fff; }
.section-dark  { background: #1a1a1a; color: #fff; }
.section-red   { background: #e63946; color: #fff; }
.gold-text { color: #ffd700; margin-bottom: 20px; }
/* BUTTONS */
.btn-red {
    display: inline-block;
    background: #e63946;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
}
.btn-white {
    display: inline-block;
    background: #fff;
    color: #e63946;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* RESPONSIVE BURGER MENU */
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li { margin: 20px 0; }
    .burger { display: block; }
}
.nav-active {
    transform: translateX(0%) !important;
}
/* Burger Animation */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
/* Layout Grid untuk Kad */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}
/* Gaya Kad Kebaikan (Section Biru) */
.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.info-card h3 {
    margin-bottom: 15px;
    color: #003399;
}
/* Gaya Kad Langkah (Section Gelap) */
.step-card {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    position: relative;
    border: 1px solid #444;
    text-align: left;
    transition: 0.3s;
}
.step-card:hover {
    border-color: #e63946;
    background: #333;
}
.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(230, 57, 70, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}
.step-card h3 {
    color: #e63946;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.step-card p {
    color: #ccc;
    font-size: 0.95rem;
}
/* Penyesuaian Teks */
.white-text {
    color: white;
    margin-bottom: 30px;
}
/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr; /* Satu kad satu baris pada phone */
    }
    .full-page {
        height: auto; /* Benarkan skrin memanjang jika kad banyak */
        padding: 80px 20px;
    }
}
/* Mutiara Kata Styles */
.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.quote-icon {
    font-size: 5rem;
    font-family: 'serif';
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
}
.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    min-height: 120px; /* Elakkan layout melompat bila teks pendek/panjang */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out;
}
.quote-line {
    width: 100px;
    margin: 30px auto;
    border: 0;
    border-top: 2px solid rgba(255,255,255,0.3);
}
.cta-area h3 {
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}
/* Animasi Fade Out/In */
.fade-out {
    opacity: 0;
}
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.4rem;
    }
}
/* Pack Card Styles */
.pack-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.pack-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    width: 200px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #e63946;
}
.pack-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.pack-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 15px;
}
.btn-buy {
    display: block;
    text-decoration: none;
    background: #f8f9fa;
    color: #e63946;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e63946;
    transition: 0.3s;
}
.btn-buy:hover {
    background: #e63946;
    color: #fff;
}
/* Style Khas untuk Pek Popular (RM50) */
.pack-card.featured {
    position: relative;
    border: 2px solid #e63946;
}
.badge-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e63946;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: bold;
}
.red-bg {
    background: #e63946 !important;
    color: #fff !important;
}
/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .pack-card {
        width: 45%; /* Dua kad sebaris di phone */
    }
}
@media (max-width: 480px) {
    .pack-card {
        width: 100%; /* Satu kad sebaris di phone kecil */
    }
}

/* GAYA ASAS UNTUK FULL PAGE SECTION (KEKALKAN INI) */
.full-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative; /* Penting untuk kedudukan overlay */
    overflow: hidden;
}
/* GAYA KHAS UNTUK SECTION HERO (GAMBAR image_5.png) */
.section-hero {

    background-image: url('data_belanje/hero.webp'); 
    background-size: cover; /* Pastikan gambar memenuhi keseluruhan skrin */
    background-position: center; /* Fokuskan di tengah-tengah gambar */
    background-repeat: no-repeat;
    color: white; /* Tukar teks kepada putih secara lalai */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Hitam lutsinar (40%) */
    z-index: 1; /* Pastikan ia berada di bawah teks */
}
/* GAYA UNTUK KANDUNGAN HERO */
.section-hero .content {
    position: relative;
    z-index: 2; /* Pastikan ia berada di atas overlay */
    max-width: 700px;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem; /* Saiz tajuk besar untuk hero */
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* Bayang pada teks untuk lebih kontras */
}
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
/* GAYA UNTUK BUTANG MULA TEROKA */
.btn-red {
    display: inline-block;
    background-color: #e63946; /* Merah untuk butang */
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}
.btn-red:hover {
    transform: translateY(-5px);
    background-color: #c12e3a;
}
/* RESPONSIVE UNTUK HERO (UNTUK TELEFON) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem; /* Kecilkan sedikit tajuk pada phone */
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
}

/* Progress Map Styling */
.progress-map {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 60px 0;
    padding: 0 20px;
}
/* Garis di belakang titik */
.progress-line {
    position: absolute;
    top: 25px; /* Selari dengan tengah dot */
    left: 50px;
    right: 50px;
    height: 4px;
    background: #ddd;
    z-index: 1;
}
.map-item {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.map-dot {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 15px;
    transition: 0.3s;
}
/* Titik pertama nampak 'active' */
.map-dot.active {
    background: #e63946;
    color: white;
}
.map-text h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}
.map-text p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
    padding: 0 10px;
}
/* Gambar & Teks Tambahan di bawah Map */
.about-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-img-small {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
/* Responsive Progress Map */
@media (max-width: 768px) {
    .progress-map {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 40px;
    }
    .progress-line {
        width: 4px;
        height: 80%;
        left: 63px; /* Selari dengan dot bila menegak */
        top: 20px;
    }
    .map-item {
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }
    .map-text p {
        padding: 0;
    }
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* FOOTER STYLING */
.main-footer {
    background-color: #1a1a1a; /* Warna hitam gelap */
    color: #ffffff;
    padding: 60px 0 20px 0;
    text-align: left;
    border-top: 4px solid #e63946; /* Garisan merah di atas footer */
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    flex: 1;
    min-width: 250px;
}
.logo-footer {
    font-family: 'Montserrat', sans-serif;
    color: #e63946;
    font-size: 2rem;
    margin-bottom: 15px;
}
.footer-brand p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-info {
    flex: 1;
    min-width: 280px;
}
.info-item {
    margin-bottom: 15px;
}
.info-label {
    display: block;
    color: #ffd700; /* Warna emas untuk label */
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-value {
    font-size: 1.1rem;
    color: #ffffff;
}
.info-value a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #e63946;
    transition: 0.3s;
}
.info-value a:hover {
    color: #e63946;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
    font-size: 0.85rem;
}
/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .info-value a {
        display: inline-block;
        margin-top: 5px;
    }
}