
        /* ==========================================================================
           1. MODERN DESIGN SYSTEM (DARK BLUE + GOLD ACCENT + DARK MODE)
           ========================================================================== */
        :root {
            /* Light Theme Palette */
            --bg-main: #f8fafc;
            --bg-card: #ffffff;
            --bg-input: #f1f5f9;
            --bg-card-subtle: #f8fafc;
            
            --border-color: #e2e8f0;
            --border-hover: #cbd5e1;
            
            --text-heading: #0f172a;
            --text-body: #334155;
            --text-muted: #64748b;
            
            /* Primary Colors: Executive Dark Blue & Gold/Amber */
            --brand-blue: #0a2540;
            --brand-blue-hover: #061729;
            --brand-blue-light: #f0f4f8;
            --brand-blue-border: #cbd5e1;
            
            --brand-yellow: #f59e0b;
            --brand-yellow-hover: #d97706;
            --brand-yellow-bg: #fffbeb;
            --brand-yellow-border: #fde68a;
            --brand-yellow-text: #b45309;
            
            --whatsapp-emerald: #16a34a;
            --whatsapp-hover: #15803d;
            
            /* Premium Dot Texture Background */
            --bg-pattern: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
            
            /* Shadows */
            --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
            --shadow-card: 0 10px 25px -5px rgba(10, 37, 64, 0.06), 0 8px 10px -6px rgba(10, 37, 64, 0.03);
            --shadow-floating: 0 20px 30px -10px rgba(10, 37, 64, 0.15);
            
            --radius-input: 10px;
            --radius-card: 16px;
            --radius-pill: 9999px;
            
            --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Dark Mode Overrides */
        [data-theme="dark"] {
            --bg-main: #070d19;
            --bg-card: #0f172a;
            --bg-input: #1e293b;
            --bg-card-subtle: #131d31;
            
            --border-color: #1e293b;
            --border-hover: #334155;
            
            --text-heading: #f8fafc;
            --text-body: #cbd5e1;
            --text-muted: #94a3b8;
            
            --brand-blue: #1e3a8a;
            --brand-blue-hover: #172554;
            --brand-blue-light: #172554;
            --brand-blue-border: #1e40af;
            
            --brand-yellow: #fbbf24;
            --brand-yellow-bg: #2d2415;
            --brand-yellow-border: #78350f;
            --brand-yellow-text: #fef08a;
            
            --bg-pattern: radial-gradient(#1e293b 1.2px, transparent 1.2px);
            --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
        }

        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-main);
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-main);
            background-image: var(--bg-pattern);
            background-size: 24px 24px;
            color: var(--text-body);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            transition: background-color 0.3s, color 0.3s;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--text-heading);
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==========================================================================
           2. NAVBAR WITH TOGGLE CONTROLS
           ========================================================================== */
.navbar-wrapper {
    position: sticky; /* atau fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Pastikan z-index tinggi supaya berada di lapisan paling atas */
    background-color: var(--bg-card, #ffffff); /* Pastikan background tidak lutsinar/transparent */
}
        .navbar {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-subtle);
            height: 62px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            transition: background 0.3s, border-color 0.3s;
        }

        [data-theme="dark"] .navbar {
            background: rgba(15, 23, 42, 0.88);
        }
.logo-img {
    width: 50px;          /* Saiz lebar logo */
    height: 50px;         /* Saiz tinggi logo */
    object-fit: contain;  /* Elak gambar terhenyek / herot */
    border-radius: 8px;   /* Masukkan jika mahu bucu melengkung seperti icon K asal */
}

/* Pastikan elemen di dalam .brand-logo tersusun selari */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;            /* Jarak antara logo dan teks */
    text-decoration: none;
}
       

        .brand-text h1 {
            font-size: 0.95rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-text span {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--brand-yellow-hover);
        }

        .nav-pill-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-card-subtle);
            padding: 4px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--border-color);
        }

        .nav-pill-menu a {
	    min-width: 95px;
	    text-align: center;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            transition: var(--transition);
        }

        .nav-pill-menu a:hover, .nav-pill-menu a.active {
            color: var(--text-heading);
            background: var(--bg-card);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-control {
            background: var(--bg-card-subtle);
            border: 1px solid var(--border-color);
            color: var(--text-heading);
            padding: 7px 12px;
            border-radius: var(--radius-pill);
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .btn-control:hover {
            background: var(--brand-blue-light);
            border-color: var(--brand-blue-border);
        }

        .btn-whatsapp-pill {
            background-color: var(--whatsapp-emerald);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.82rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
        }

        .btn-whatsapp-pill:hover {
            background-color: var(--whatsapp-hover);
        }

/* ==========================================================================
   HERO SECTION STYLES (MATCHING REFERENCE IMAGE)
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    
    /* Gambar background tanpa sebarang overlay */
    background: url('images/bganuar.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Headings */
.hero-title {
    font-size: 3.8rem;
    font-weight: 950;
    color: #111827;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title .highlight-blue {
    font-weight: 900;
    font-size: 6.0rem; /* Besarkan sikit sebab font handwriting skala dia agak kecil */
    font-style: italic;
        color: #0099ff;

    display: inline-block;
    position: relative;
    margin-top: 6px;
    padding: 0px;

}

.hero-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 500px;
    font-weight: 500;
}

/* Feature Badges Row */
.hero-features-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-badge-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    border: 3px solid #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.feature-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1.0rem;
    color: #111827;
}

.feature-badge-text strong {
    font-weight: 800;
}

/* Visual Car Image */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car-img {
    width: 620px;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

/* FLOATING BOOKING BAR (DARK THEME) */
.floating-booking-bar {
    background: #090d16;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.booking-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-bar-header .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-bar-header .icon-circle {
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-bar-header h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin: 0;
}

.booking-bar-header p {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.header-price-summary {
    text-align: right;
}

.price-sub-info {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #facc15;
}

/* Horizontal Form Inputs */
.horizontal-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
    gap: 12px;
    align-items: flex-end;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-item .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d1d5db;
    margin: 0;
}

.form-control-custom {
    width: 100%;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    outline: none;
}

.form-control-custom:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

/* CTA Yellow Button */
.btn-yellow-cta {
    width: 100%;
    height: 48px;
    background: #facc15;
    color: #0f172a;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-yellow-cta:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(250, 204, 21, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-row {
        justify-content: center;
    }

    .hero-car-img {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .horizontal-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group-item.btn-container {
        grid-column: span 2;
    }

    .floating-booking-bar {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-title .highlight-blue {
        font-size: 2.5rem;
    }

    .horizontal-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-item.btn-container {
        grid-column: span 1;
    }

    .booking-bar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-price-summary {
        text-align: left;
    }
}

        /* ==========================================================================
           4. CATALOGUE SECTION (ALL 17 CARS INCLUDED)
           ========================================================================== */
        .section-padding {
            padding: 70px 0;
        }

        .section-header {
            text-align: center;
            max-width: 550px;
            margin: 0 auto 36px;
        }

        .section-tag {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--brand-yellow-text);
            background: var(--brand-yellow-bg);
            border: 1px solid var(--brand-yellow-border);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            display: inline-block;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 800;
        }

        .fleet-filters {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-body);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--brand-blue);
            color: #ffffff;
            border-color: var(--brand-blue);
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .car-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-subtle);
        }

        .car-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: var(--brand-blue-border);
        }

        .car-image-container {
            position: relative;
            height: 180px;
            background: var(--bg-input);
            overflow: hidden;
        }

        .car-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .car-tag-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(10, 37, 64, 0.88);
            backdrop-filter: blur(6px);
            color: #ffffff;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .car-content {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .car-brand {
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--brand-yellow-hover);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .car-name {
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .car-tier-grid {
            background: var(--bg-card-subtle);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 8px;
            margin-bottom: 16px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            text-align: center;
        }

        .tier-box {
            display: flex;
            flex-direction: column;
        }

        .tier-title {
            font-size: 0.6rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .tier-price {
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--text-heading);
        }

        .car-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        .price-display .price-num {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--brand-blue);
        }

        [data-theme="dark"] .price-display .price-num {
            color: #60a5fa;
        }

        .price-display .price-unit {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        .btn-select-car {
            padding: 7px 14px;
            background: var(--brand-blue-light);
            border: 1px solid var(--brand-blue-border);
            color: var(--brand-blue);
            border-radius: var(--radius-input);
            font-weight: 700;
            font-size: 0.78rem;
            cursor: pointer;
            transition: var(--transition);
        }

        [data-theme="dark"] .btn-select-car {
            color: #93c5fd;
        }

        .btn-select-car:hover {
            background: var(--brand-blue);
            color: #ffffff;
        }
/* Sembunyikan kad kereta yang melebihi had */
.car-card.hidden-car {
    display: none !important;
}

/* Container untuk butang 'Lihat Banyak Lagi' */
.load-more-wrapper {
    text-align: center;
    margin-top: 32px;
    width: 100%;
}

/* ==========================================================================
   GALLERY   SECTION
   ========================================================================== */
.customer-gallery-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 1rem 0.5rem;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome & Safari */
}

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.carousel-card p {
  padding: 1rem;
  font-size: 0.95rem;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.prev-btn {
  left: -15px;
}

.next-btn {
  right: -15px;
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 85%;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }
}
/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
    padding: 30px 0 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #061729 100%);
    border-radius: var(--radius-card);
    padding: 48px 32px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-floating);
    border: 1px solid var(--brand-blue-border);
}

[data-theme="dark"] .cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Pencahayaan Hiasan Visual */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-description {
    font-size: 0.92rem;
    color: #cbd5e1;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-whatsapp {
    background-color: var(--whatsapp-emerald);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.btn-cta-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 32px 20px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-whatsapp, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

        /* ==========================================================================
           5. TESTIMONIALS & CONTACT
           ========================================================================== */

           /* 1. Pembungkus Utama (Wajib position: relative & ada padding tepi) */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px; /* Bagi ruang sikit di tepi supaya butang tak terkeluar dari skrin */
    box-sizing: border-box;
}

/* 2. Slider Grid (3 Kad Sebaris) */
.reviews-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 15px 0;
    width: 100%;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.reviews-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3) !important;
    min-width: calc((100% - 40px) / 3) !important;
    box-sizing: border-box;
}

/* 3. Gaya Butang Bulat Moden */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color, #e5e7eb);
    color: var(--text-heading, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.slider-btn:hover {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: translateY(-50%) scale(1.08);
}

/* 4. Kedudukan Tepat Kiri & Kanan */
.prev-btn {
    left: -15px; /* Melekat di tebing kiri grid */
}

.next-btn {
    right: -15px; /* Melekat di tebing kanan grid */
}

/* Responsif Mobile */
@media (max-width: 640px) {
    .reviews-carousel-wrapper {
        padding: 0;
    }
    .slider-btn {
        display: none; /* Mobile guna swipe jari sahaja */
    }
}
        /* Google Rating Summary Header */
.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 50px;
    margin-top: 14px;
}

.google-badge-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-heading);
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.score-num {
    font-weight: 700;
    color: var(--text-heading);
}

.stars-gold {
    color: #FFB800;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.total-reviews {
    color: var(--text-body);
    opacity: 0.8;
}

/* Card Styling Upgrade */
.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: #ffffff;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-details strong {
    font-size: 0.9rem;
    color: var(--text-heading);
}

.local-guide {
    font-size: 0.75rem;
    color: #f4b400;
    font-weight: 500;
}

.verified-tag {
    font-size: 0.75rem;
    color: var(--text-body);
    opacity: 0.7;
}

.review-content {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-top: 8px;
}

/* Button Google Reviews */
.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-heading);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-google-reviews:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}   
/* 1. Container Slider (Mobile First) */
.reviews-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    
    /* Benarkan Touch Swipe / Slide di Fon */
    overflow-x: auto !important; 
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Kesan 'snap' kemas bila swipe */
    
    padding: 15px 5px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Sembunyikan scrollbar supaya nampak macam slider native */
.reviews-grid::-webkit-scrollbar {
    display: none;
}
.reviews-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 2. Kad di Fon (Ambil 85% - 90% lebar skrin) */
.reviews-grid > * {
    flex: 0 0 85% !important; /* 1 kad utama + nampak sikit hint kad sebelah */
    scroll-snap-align: center;
    box-sizing: border-box;
}

/* 3. Skrin Besar / Desktop (Kekal 3 Kad Sebaris) */
@media (min-width: 768px) {
    .reviews-grid {
        overflow-x: hidden !important; /* Kawal guna butang JS/arrow di desktop */
    }

    .reviews-grid > * {
        flex: 0 0 calc((100% - 40px) / 3) !important; /* Tepat 3 kad sebaris */
        scroll-snap-align: start;
    }
}

        .stars-row {
            display: flex;
            gap: 3px;
            color: var(--brand-yellow);
            margin-bottom: 12px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .contact-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }

        .info-row {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
        }

        .info-icon {
            width: 38px;
            height: 38px;
            background: var(--brand-blue-light);
            color: var(--brand-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid var(--border-color);
        }

        [data-theme="dark"] .info-icon {
            color: #60a5fa;
        }

        .map-frame {
            width: 100%;
            height: 100%;
            min-height: 280px;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 30px 0;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--whatsapp-emerald);
            color: #ffffff;
            width: 52px;
            height: 52px;
            border-radius: var(--radius-pill);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
            z-index: 999;
            transition: var(--transition);
        }

        .floating-whatsapp:hover {
            transform: scale(1.08);
            background-color: var(--whatsapp-hover);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            
            .hero-section {
                min-height: auto;
                padding-top: 100px;
            }
            .hero-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
            .fleet-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-image-card img {
                height: 300px;
            }
        }

@media (max-width: 906px) {

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .nav-pill-menu {
        display: none;
    }

    /* ==========================================
       1. HILANGKAN BUTANG WHATSAPP DALAM NAVBAR
       ========================================== */
    .nav-right .btn-whatsapp-pill,
    .navbar .btn-whatsapp-pill {
        display: none !important; /* Butang WhatsApp dipadamkan terus di mobile */
    }

    /* ==========================================
       2. KEMASKAN SUSUNAN NAVBAR & BRAND TEXT
       ========================================== */
    .navbar, .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        width: 100% !important;
    }

    /* Elakkan brand-text daripada terlipat/penyek ke bawah */
    .brand-text {
        display: flex !important;
        flex-direction: column !important;
        white-space: nowrap !important; /* Paksa teks kekal rapat & tak melimpah 4 baris */
    }

    /* Pelarasan saiz font tajuk & subteks supaya muat comel */
    .brand-text h1, .brand-text h2, .brand-title {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
    }

    .brand-text p, .brand-subtext {
        font-size: 0.68rem !important;
        line-height: 1 !important;
    }

    /* ==========================================
       3. PASTIKAN BUTANG EN & THEME KEKAL DI KANAN
       ========================================== */
    .nav-right, .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important; /* Elak butang translate & mode daripada mampat */
    }

    /* Pelarasan susunan elemen lain yang anda sedia ada */
    .hero-title {
        font-size: 1.8rem;
    }
    .fleet-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
 /* 1. Kunci grid borang supaya tak melebihi lebar kad */
    .form-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group,
    .form-group.full-width {
        grid-column: span 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. KUNCI UTAMA: Paksa semua input, select, & button kekal di dalam kotak */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important; /* Mengira padding di DALAM lebar 100% */
    }

}

/* =========================================================
   2. RESPONSIVE MOBILE (SEMBUNYIKAN TAJUK NAMA SYARIKAT)
   ========================================================= */
@media (max-width: 400px) {
    /* Sembunyikan teks nama syarikat bila paparan mobile ketat */
    .brand-text {
        display: none !important;
    }
    
    /* Pastikan navbar kekal tersusun rapi */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
    }

    .place-card {
        max-width: 100%; /* Penuhkan lebar pada skrin telefon */
    }
}

/* =========================================================
   HAMBURGER BUTTON & MOBILE MENU STYLING
   ========================================================= */

/* Default: Sembunyikan hamburger pada skrin desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* Tetapan bar garisan hamburger */
.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-heading, #1e293b);
    border-radius: 3px;
    transition: all 0.3s ease;
}
header, nav, .navbar {
    overflow: visible !important;
}

@media (max-width: 768px) {
    /* Paparkan butang hamburger di mobile */
    .hamburger-btn {
        display: flex;
    }

    /* Mod Menu Navigasi Mobile */
    .nav-pill-menu {
        display: none;
        position: fixed;
        top: 65px; /* Laraskan mengikut ketinggian header */
        left: 0;
        width: 100vw;
        height: calc(100vh - 65px);
        background-color: #ffffff;

        /* BUANG BENTUK BUJUR & BORDER DESKTOP */
        border-radius: 0 !important;
        border: none !important;
        outline: none !important;

        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 9999;
    }

    /* PAPARKAN MENU APABILA CLASS .active DITAMBAH */
    .nav-pill-menu.active {
        display: flex !important;
    }

    /* BUANG BORDER/KAPSUL PADA A & LI DI MOBILE */
    .nav-pill-menu a,
    .nav-pill-menu li {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        
        /* Reset gaya kapsul/button pada link */
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Boleh tambah border halus bawah setiap item jika mahu */
    .nav-pill-menu a:not(:last-child) {
        border-bottom: 1px solid #f1f5f9 !important;
    }

    /* Animasi Pertukaran Hamburger ke ikon 'X' */
    .hamburger-btn.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}
