    /* ==========================================
       RESET & VARIABLE GLOBAL
    ========================================== */
    :root {
        --primary-blue: #193059;
        --soft-blue: rgb(25,48,89);
        --primary-gold: #D4AF37;
        --gold-hover: #b89528;
        --text-dark: #222222;
        --text-muted: #666666;
        --bg-light: #f8f9fa;
        --white: #ffffff;
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Plus Jakarta Sans', sans-serif;
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

        /*
        --pattern-morocco: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z M30 10 L50 30 L30 50 L10 30 Z' fill='%23ffffff' fill-opacity='0.04' stroke='%23D4AF37' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
        */
        --pattern-morocco: url("../../../upload/pattern.jpg");
        
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        color: #fff;
        background-color: var(--primary-blue);
        background-image: url("../../../upload/bg_pattern.jpg");
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-serif {
        font-family: var(--font-serif);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .text-gold {
        color: var(--primary-gold) !important;
    }

    .btn {
        display: inline-block;
        padding: 14px 32px;
        background: var(--primary-gold);
        color: var(--primary-blue);
        font-weight: 600;
        border-radius: 50px;
        border: 2px solid var(--primary-gold);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--primary-blue);
        transition: var(--transition);
        z-index: -1;
    }

    .btn:hover {
        color: var(--primary-gold);
        box-shadow: 0 6px 20px rgba(25, 48, 89, 0.4);
        transform: translateY(-3px);
    }

    .btn:hover::before {
        left: 0;
    }

    .btn-outline-gold {
        background: transparent;
        color: var(--primary-gold);
    }
    .btn-outline-gold:hover {
        background: var(--primary-blue);
        color: var(--primary-gold);
    }

    .breadcrumb-container {
      padding: 10px 16px;
      text-align: center;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 8px;
      justify-content: center;
    }

    /* Item & Link Styles */
    .breadcrumb-item {
      display: flex;
      align-items: center;
      font-size: 14px;
    }

    .breadcrumb-item a {
      color: #94a3b8;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    /* Icon styling (SVG) */
    .breadcrumb-item a svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      transition: transform 0.3s ease;
    }

    /* Separator / Pemisah Icon */
    .breadcrumb-item:not(:last-child)::after {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-right: 2px solid #64748b;
      border-top: 2px solid #64748b;
      transform: rotate(45deg);
      margin-left: 8px;
      opacity: 0.6;
    }

    /* Hover State */
    .breadcrumb-item a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .breadcrumb-item a:hover svg {
      transform: translateY(-2px);
    }

    /* Active State (Halaman Saat Ini) */
    .breadcrumb-item.active span {
      color: var(--primary-gold);
      font-weight: 600;
      padding: 8px 14px;
      background: rgba(56, 189, 248, 0.1);
      border-radius: 20px;
      border: 1px solid rgba(56, 189, 248, 0.2);
    }

    /* Pattern Moroccan Background */
    .bg-moroccos {
        background-color: var(--primary-blue);
        background-image: var(--pattern-morocco);
        background-size: 100%;
        color: var(--white);
    }
    
    .bg-morocco {
        background-color: rgb(25,48,89,0.7);
        background-size: 100%;
        color: var(--white);
    }

    /* Scroll Fade Animation Class */
    .fade-element {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-element.appear {
        opacity: 1;
        transform: translateY(0);
    }

    /* ==========================================
       NAVBAR
    ========================================== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: var(--transition);
        background: transparent;
    }

    .navbar.scrolled {
        background-color: var(--primary-blue);
        padding: 12px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo span {
        color: var(--primary-gold);
    }

    .logo img {
        width: auto;
        max-height: 50px;
        filter: brightness(0) invert(1);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .nav-link {
        color: var(--white);
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
    }

    .nav-link:hover {
        color: var(--primary-gold);
    }

    /* Dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        min-width: 180px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        margin-top:15px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        background-color: var(--bg-light);
        color: var(--primary-blue);
        padding-left: 25px;
    }

    .mobile-toggle, .mobile-close {
        display: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* ==========================================
       HERO SECTION (CAROUSEL)
    ========================================== */
    .hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-slider {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide.active {
        opacity: 1;
    }

    .slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(25, 48, 89, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 800px;
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 3.5rem;
        color: var(--primary-gold);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 1.25rem;
        margin-bottom: 30px;
        font-weight: 300;
    }

    /* Hero Arrow Navigation */
    .hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 50px;
        height: 50px;
        background-color: rgba(25, 48, 89, 0.6);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: 1px solid var(--primary-gold);
        transition: var(--transition);
    }

    .hero-arrow:hover {
        background-color: var(--primary-gold);
        color: var(--primary-blue);
    }

    .hero-arrow.prev { left: 25px; }
    .hero-arrow.next { right: 25px; }

    /* ==========================================
       TENTANG KAMI
    ========================================== */
    .about {
        padding: 100px 0;
        background: none!important;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .subheadline-tag {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-gold);
        display: block;
    }

    .section-headline {
        font-size: 2.5rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .about-desc {
        color: var(--white);
        margin-bottom: 30px;
        font-size: 1.05rem;
    }

    .about-img-box {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .about-img-box img {
        width: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .about-img-box:hover img {
        transform: scale(1.05);
    }

    .about ol,
    .about ul {
        list-style-type: none; /* Removes default 1, 2, 3 */
        padding-left: 0;
    }

    .about li {
        position: relative;
        padding-left: 28px; /* Space for the symbol */
        margin-bottom: 10px;
    }

    /* Insert custom symbol */
    .about li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: var(--primary-gold); /* Symbol color */
        font-weight: bold;
    }

    .cards-container {
      display: flex;
      flex-direction: row;
      gap: 24px;
      max-width: 960px;
      width: 100%;
    }

    .card {
      flex: 1;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    }

    .icon-badge {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .card-title {
      font-family: Georgia, serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .card-dark {
      background-color: #0f1e38;
      color: #ffffff;
    }

    .card-dark .icon-badge {
      background-color: rgba(255, 255, 255, 0.08);
      color: #f59e0b; /* Amber icon */
    }

    .legal-list {
      list-style: none;
    }

    .legal-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
    }

    .legal-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .legal-item .label {
      color: #94a3b8;
    }

    .legal-item .value {
      font-weight: 600;
      color: #ffffff;
      text-align: right;
    }

    .card-light {
      background-color: #ffffff;
      color: #1e293b;
      border: 1px solid #e2e2e2;
    }

    .card-light .icon-badge {
      background-color: #f0f6ff;
      color: #1e293b;
    }

    .bank-box {
      background-color: #f8fafc;
      border-radius: 12px;
      padding: 18px 20px;
      margin-bottom: 16px;
    }

    .bank-name {
      font-weight: 700;
      font-size: 15px;
      color: #1e293b;
      margin-bottom: 12px;
    }

    .bank-details {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 13px;
    }

    .bank-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .bank-row .label {
      color: #64748b;
    }

    .bank-row .value {
      color: #0f172a;
    }

    .bank-row .value.bold {
      font-weight: 700;
      font-size: 15px;
    }

    .wa-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 6px 0 6px;
      font-size: 14px;
    }

    .wa-row .label {
      color: #64748b;
    }

    .wa-row .value {
      color: #10b981; /* Green color for WA */
      font-weight: 700;
      font-size: 15px;
    }

    /* Responsive untuk Layar HP */
    @media (max-width: 768px) {
      .cards-container {
        flex-direction: column;
      }
    }
    
    .about-gallery-section {
      margin-top: 32px;
      padding-top: 24px;
    }

    .about-title {
      font-size: 1.25rem;
      color: var(--primary-gold);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .about-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
      gap: 12px;
      place-items: center;
      justify-items: center;
      align-items: center;
      place-content: center;
    }

    .about-gallery-item {
      position: relative;
      height: 175px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      background-color: #e2e8f0;
    }

    .about-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
    }

    .about-gallery-item:hover img {
      transform: scale(1.08);
    }
    

    /* ==========================================
       HEADER SEJAJAR (DAFTAR PAKET & ARTIKEL)
    ========================================== */
    .section-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Sejajar secara vertikal */
        margin-bottom: 50px;
    }

    .section-header-left {
        text-align: left;
    }

    .section-header-left .section-headline {
        margin-bottom: 0; /* Hilangkan margin bawah agar benar-benar sejajar secara vertikal */
    }

    .link-more {
        color: var(--primary-gold);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .link-more:hover {
        gap: 15px;
    }

    /* ==========================================
       DAFTAR PAKET
    ========================================== */
    .paket {
        padding: 100px 0;
        color: var(--white);
    }

    .paket-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .paket-card {
        background-color: var(--white);
        border-radius: 15px;
        overflow: hidden;
        color: var(--text-dark);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .paket-card:hover {
        transform: translateY(-10px);
    }

    .paket-img {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
    }

    .paket-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .paket-card:hover .paket-img img {
        transform: scale(1.1);
    }

    .paket-body {
        padding: 25px;
    }

    .paket-title {
        font-size: 1.4rem;
        color: var(--primary-blue);
        margin-bottom: 5px;
        min-height: 75px;
    }

    .paket-sub {
        font-size: 0.85rem;
        color: var(--primary-gold);
        font-weight: 700;
        margin-bottom: 12px;
        display: block;
    }

    .paket-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

    .paket-desc i {
        color: var(--primary-gold);
    }

    .paket-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .paket-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-blue);
    }

    .paket-price span {
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 400;
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px;
    }

    @media (min-width: 800px) {
      .product-grid {
        grid-template-columns: 1fr 1fr; /* 2 Kolom di Desktop */
      }
    }

    .product-image-wrapper {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      overflow: hidden;
      background-color: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .product-title {
      font-size: 2rem;
      color: var(--primary-gold);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .product-price {
      font-size: 1.75rem;
      color: var(--primary-gold);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .product-short-desc {
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .product-short-desc i {
        color: var(--primary-gold);
    }

    .tabs-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
    }

    .nav-tabs {
      display: flex;
      gap: 32px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 32px;
      overflow-x: auto;
    }

    .tab-btn {
      background: none;
      border:none;
      border-bottom: 2px solid var(--primary-blue);
      padding-bottom: 16px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      cursor: pointer;
      position: relative;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .tab-btn:hover {
      color: var(--primary-gold);
      border-bottom: 2px solid var(--primary-gold);
    }

    .tab-btn.active {
      color: var(--primary-gold);
      border-bottom: 2px solid var(--primary-gold);
    }

    .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent-blue);
      border-radius: 2px;
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.3s ease;
      color: #334155;
      line-height: 1.8;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ==========================================
       MENGAPA MEMILIH KAMI
    ========================================== */
    .why-us {
        padding: 100px 0;
        background: none!important;
        text-align: center;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .why-card {
        background: var(--white);
        padding: 40px 25px;
        border-radius: 12px;
        transition: var(--transition);
        border: 1px solid #eee;
    }

    .why-card:hover {
        box-shadow: 0 15px 35px rgba(25, 48, 89, 0.12);
        transform: translateY(-5px);
        border-bottom: 3px solid var(--primary-gold);
    }

    .why-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(25, 48, 89, 0.05);
        color: var(--primary-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin: 0 auto 20px;
        transition: var(--transition);
    }

    .why-card:hover .why-icon {
        background-color: var(--primary-blue);
        color: var(--primary-gold);
    }

    .why-title {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 10px;
    }

    .why-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    /* ==========================================
       GALERI
    ========================================== */
    .galeri {
        padding: 100px 0;
        background: none!important;
    }

    .galeri-carousel-wrapper {
        position: relative;
        overflow: hidden;
        margin-top: 50px;
    }

    .galeri-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .galeri-card {
        min-width: calc(100% / 3);
        padding: 0 15px;
        box-sizing: border-box;
    }

    .galeri-card-inner {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 260px;
        transition: var(--transition);
    }

    .galeri-card-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .galeri-card-inner:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    .galeri-title-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(25, 48, 89, 0.5);
        color: var(--primary-gold);
        padding: 15px;
        text-align: center;
        font-family: var(--font-serif);
        font-size: 1.1rem;
        font-weight: 600;
        backdrop-filter: blur(2px);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
    }

    .dot {
        width: 12px;
        height: 12px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
    }

    .dot.active {
        background-color: var(--primary-gold);
        width: 25px;
        border-radius: 10px;
    }

    /* ==========================================
       TESTIMONIAL
    ========================================== */
    .testimonial {
        padding: 100px 0;
        color: var(--white);
        text-align: center;
    }

    .testi-carousel {
        max-width: 700px;
        margin: 40px auto 0;
        position: relative;
        overflow: hidden;
    }

    .testi-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testi-item {
        min-width: 100%;
        padding: 0 20px;
    }

    .testi-quote {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 25px;
    }

    .testi-user {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .testi-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid var(--primary-gold);
        object-fit: cover;
    }

    .testi-name {
        font-weight: 700;
        color: var(--primary-gold);
    }

    .testi-role {
        font-size: 0.85rem;
        color: #ccc;
    }

    /* ==========================================
       ARTIKEL
    ========================================== */
    .artikel {
        padding: 100px 0;
        background: none!important;
    }

    .artikel-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .artikel-card {
        background-color: var(--white);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: var(--transition);
    }

    .artikel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .artikel-img {
        height: 200px;
        overflow: hidden;
    }

    .artikel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .artikel-card:hover .artikel-img img {
        transform: scale(1.08);
    }

    .artikel-body {
        padding: 20px;
    }

    .artikel-title {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 10px;
    }

    .artikel-title:hover {
        color: var(--primary-gold);
    }

    .artikel-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .article-container {
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 900px) {
      .article-container {
        grid-template-columns: 2.2fr 1fr; /* Kolom kiri lebih lebar */
      }
    }

    .category-badge {
      display: inline-block;
      background-color: var(--primary-gold);
      color: var(--primary-blue);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .article-date {
      font-size: 0.875rem;
      color: #fff;
    }

    .main-article .article-title {
      font-size: 2rem;
      color: var(--primary-gold);
      line-height: 1.3;
      margin-bottom: 20px;
      font-weight: 800;
    }

    @media (min-width: 768px) {
      .main-article .article-title {
        font-size: 2.4rem;
      }
    }

    .featured-image-container {
      width: 100%;
      height: 380px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
      background-color: #e2e8f0;
    }

    .featured-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-content p {
      margin-bottom: 18px;
      font-size: 1.05rem;
      color: #fff;
    }

    .article-content h2 {
      font-size: 1.4rem;
      color: #fff;
      margin: 28px 0 12px 0;
    }

    .article-gallery-section {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 2px solid #f1f5f9;
    }

    .gallery-title {
      font-size: 1.25rem;
      color: var(--primary-gold);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      background-color: #e2e8f0;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item::after {
      content: '🔍';
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.2rem;
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none; /* PERBAIKAN: Klik akan diteruskan ke gambar dibawahnya */
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    .image-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background-color: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-modal.active {
      display: flex;
      opacity: 1;
    }

    .modal-content-wrapper {
      position: relative;
      max-width: 900px;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .modal-image {
      max-width: 100%;
      max-height: 75vh;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
      object-fit: contain;
    }

    .modal-caption {
      margin-top: 14px;
      color: #f8fafc;
      font-size: 0.95rem;
      text-align: center;
    }

    .modal-close-btn {
      position: absolute;
      top: -45px;
      right: 0;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 2.2rem;
      line-height: 1;
      cursor: pointer;
      opacity: 0.8;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .modal-close-btn:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    .sidebar-title {
      font-size: 1.25rem;
      color: var(--primary-gold);
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f1f5f9;
      position: relative;
    }

    .sidebar-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-gold);
    }

    .related-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .related-item {
      display: flex;
      gap: 14px;
      align-items: center;
      text-decoration: none;
      color: inherit;
      padding: 8px;
      border-radius: 10px;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .related-item:hover {
      background-color: #f8fafc;
      transform: translateX(4px);
    }

    .related-image {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background-color: #cbd5e1;
    }

    .related-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .related-info .category-badge {
      font-size: 0.7rem;
      padding: 2px 8px;
      align-self: flex-start;
    }

    .related-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .related-item:hover .related-title {
      color: var(--primary-gold);
    }

    /* ==========================================
       FAQ
    ========================================== */
    .faq-title {
        text-align: center;
        margin-bottom: 25px;
        color: #fff;
        font-size: 1.8rem;
    }

    .faq-item {
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 10px;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 16px 0;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: var(--primary-gold);
    }

    .faq-icon {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
      color: var(--primary-blue);
    }

    .faq-question.active .faq-icon {
      transform: rotate(180deg);
      color: var(--primary-gold);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      color: #fff;
    }

    .faq-answer-content {
      padding-bottom: 16px;
      font-size: 0.95rem;
    }

    /* ==========================================
       Hubungi Kami
    ========================================== */
    .contact-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .contact-header h1 {
      font-size: 2.2rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .contact-header p {
      color: #fff;
      font-size: 1.05rem;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    @media (min-width: 900px) {
      .contact-wrapper {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 0.95rem;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
    }

    .form-control:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    .form-status {
      margin-top: 15px;
      padding: 12px;
      border-radius: 8px;
      font-size: 0.9rem;
      display: none;
    }

    .form-status.success {
      display: block;
      background-color: #dcfce7;
      color: #166534;
      border: 1px solid #bbf7d0;
    }

    .info-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      color: #475569;
      font-size: 0.95rem;
    }

    .info-icon {
      width: 22px;
      height: 22px;
      color: var(--primary-gold);
      flex-shrink: 0;
      margin-top: 2px;
    }
    
    .info-content {
        color: #fff!important;
    }

    .info-content strong {
      display: block;
      color: #fff;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .info-content a {
      color: var(--primary-gold);
      text-decoration: none;
    }

    .info-content a:hover {
      text-decoration: underline;
    }

    .social-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-bottom: 28px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f1f5f9;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .social-btn:hover {
      background-color: var(--primary-gold);
      color: var(--primary-blue);
      transform: translateY(-2px);
    }

    .social-btn svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .map-container {
      width: 100%;
      height: 220px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--primary-blue);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ==========================================
       Product Not Found
    ========================================== */
    .illustration-container {
      width: 180px;
      height: 180px;
      margin: 0 auto 28px auto;
      background-color: #f1f5f9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .illustration-svg {
      width: 110px;
      height: 110px;
      color: #94a3b8;
    }

    .headline {
      font-size: 1.65rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .subheadline {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 32px;
    }


    /* ==========================================
       CTA SECTION
    ========================================== */
    .cta-section {
        padding: 80px 0;
        color: var(--white);
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .cta-btn-wrapper {
        text-align: right;
    }

    .btn-whatsapp {
        background-color: #25D366;
        color: var(--white);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
    }

    .btn-whatsapp:hover {
        background-color: #1eb856;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    }

    /* ==========================================
       Header Page
    ========================================== */
    .head-section {
        padding: 100px 0px 80px 0;
        color: var(--white);
        text-align: center;
    }

    /* ==========================================
       FOOTER
    ========================================== */
    footer {
        background-color: #0f1e38;
        color: var(--white);
        padding-top: 80px;
        border-top: 3px solid var(--primary-gold);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .footer-title {
        font-size: 1.2rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #aaa;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--primary-gold);
        padding-left: 5px;
    }

    .footer-contact li {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
        color: #aaa;
        font-size: 0.9rem;
    }

    .footer-contact i {
        color: var(--primary-gold);
    }

    .copyright {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid rgba(255,255,255,0.05);
        color: #777;
        font-size: 0.85rem;
    }

    /* ==========================================
       RESPONSIVE (MOBILE FRIENDLY)
    ========================================== */
    @media (max-width: 992px) {
        .about-grid, .cta-grid {
            grid-template-columns: 1fr;
        }
        .paket-grid, .artikel-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .galeri-card {
            min-width: 50%;
        }
        .cta-btn-wrapper {
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .hero-headline { font-size: 2.3rem; }
        .section-headline { font-size: 2rem; }
        
        .mobile-toggle { display: block; }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--primary-blue);
            flex-direction: column;
            align-items: flex-start;
            padding: 80px 30px 30px;
            transition: var(--transition);
            box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        }

        .nav-menu.active {
            right: 0;
        }

        .mobile-close {
            display: block;
            position: absolute;
            top: 25px;
            right: 25px;
        }

        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: rgba(255,255,255,0.05);
            box-shadow: none;
            width: 100%;
            margin-top: 10px;
            display: none;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            color: #fff;
        }

        .section-header-flex {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .paket-grid, .artikel-grid, .why-grid, .footer-grid {
            grid-template-columns: 1fr;
        }

        .galeri-card {
            min-width: 100%;
        }
    }