    :root {
      --primary: #F5A623;
      --primary-dark: #D4891A;
      --secondary: #1A1A2E;
      --dark: #0D0D1A;
      --surface: #16213E;
      --surface-2: #1E2A45;
      --text: #E8EAF0;
      --text-muted: #8A93A8;
      --white: #FFFFFF;
      --accent: #FF6B35;
      --gradient: linear-gradient(135deg, #F5A623 0%, #FF6B35 100%);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(13, 13, 26, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(245, 166, 35, 0.15);
      padding: 14px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 9999;
      transition: all 0.4s ease;
    }
    .navbar.scrolled {
      padding: 8px 0;
      background: rgba(13, 13, 26, 0.98);
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo {
      width: 46px;
      height: 46px;
      background: var(--gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', cursive;
      font-size: 22px;
      color: white;
      font-weight: 400;
      flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(245,166,35,0.4);
    }
    .brand-text { line-height: 1.1; }
    .brand-text .brand-main {
      font-family: 'Bebas Neue', cursive;
      font-size: 18px;
      letter-spacing: 1.5px;
      color: var(--white);
    }
    .brand-text .brand-sub {
      font-size: 9px;
      font-weight: 500;
      color: var(--primary);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .nav-link {
      color: var(--text-muted) !important;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.5px;
      padding: 8px 16px !important;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--primary) !important;
      background: rgba(245,166,35,0.08);
    }
    .navbar .btn-contact {
      background: var(--gradient);
      color: white;
      font-weight: 700;
      font-size: 12px;
      padding: 10px 24px;
      border-radius: 50px;
      border: none;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(245,166,35,0.35);
    }
    .navbar .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(245,166,35,0.5);
    }
    .navbar-toggler { border: none; outline: none !important; box-shadow: none !important; }
    .navbar-toggler-icon { filter: invert(1); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(245,166,35,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,107,53,0.08) 0%, transparent 50%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,166,35,0.1);
      border: 1px solid rgba(245,166,35,0.25);
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 28px;
    }
    .hero-badge span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }
    .hero-title {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(52px, 8vw, 96px);
      line-height: 0.95;
      color: var(--white);
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .hero-title .highlight {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-tagline {
      font-size: clamp(15px, 2vw, 18px);
      color: var(--text-muted);
      font-weight: 400;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 40px;
    }
    .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary-custom {
      background: var(--gradient);
      color: white;
      font-weight: 700;
      font-size: 14px;
      padding: 16px 36px;
      border-radius: 50px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 30px rgba(245,166,35,0.4);
    }
    .btn-primary-custom:hover {
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(245,166,35,0.55);
    }
    .btn-outline-custom {
      background: transparent;
      color: var(--text);
      font-weight: 600;
      font-size: 14px;
      padding: 15px 34px;
      border-radius: 50px;
      border: 1.5px solid rgba(255,255,255,0.2);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }
    .btn-outline-custom:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: rgba(245,166,35,0.07);
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
    }
    .stat-item {}
    .stat-number {
      font-family: 'Bebas Neue', cursive;
      font-size: 44px;
      line-height: 1;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
    .hero-image-area {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-truck-visual {
      width: 100%;
      max-width: 600px;
      position: relative;
    }
    .hero-truck-visual svg { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(245,166,35,0.3)); }
    .floating-card {
      position: absolute;
      background: rgba(30, 42, 69, 0.85);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(245,166,35,0.15);
      border-radius: 16px;
      padding: 16px 20px;
      animation: float-card 4s ease-in-out infinite;
    }
    .floating-card:nth-child(2) { animation-delay: -2s; }
    .floating-card.card-1 { top: 15%; right: -20px; }
    .floating-card.card-2 { bottom: 20%; left: -30px; animation-delay: -2s; }
    @keyframes float-card {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .floating-card .card-icon {
      width: 36px; height: 36px;
      background: var(--gradient);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; margin-bottom: 8px;
    }
    .floating-card .card-value { font-family: 'Bebas Neue', cursive; font-size: 24px; color: var(--white); line-height: 1; }
    .floating-card .card-desc { font-size: 11px; color: var(--text-muted); font-weight: 500; }

    /* ── SECTION GENERAL ── */
    section { padding: 100px 0; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,166,35,0.08);
      border: 1px solid rgba(245,166,35,0.2);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .section-title {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 560px;
    }
    .divider-line {
      width: 60px;
      height: 3px;
      background: var(--gradient);
      border-radius: 2px;
      margin: 16px 0 24px;
    }

    /* ── ABOUT ── */
    .about-section { background: var(--secondary); position: relative; overflow: hidden; }
    .about-section::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
    }
    .about-features { margin-top: 40px; }
    .about-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }
    .about-feature-item:hover {
      border-color: rgba(245,166,35,0.2);
      background: rgba(245,166,35,0.04);
      transform: translateX(6px);
    }
    .about-feature-icon {
      width: 44px; height: 44px;
      background: var(--gradient);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .about-feature-text h6 { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 4px; }
    .about-feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .about-image-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }
    .about-img-main {
      width: 100%;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
      height: 450px;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(255,107,53,0.05) 100%);
    }
    .about-img-placeholder {
      font-size: 120px;
      opacity: 0.15;
      z-index: 1;
    }
    .about-badge-overlay {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--gradient);
      padding: 16px 24px;
      border-radius: 16px;
      z-index: 2;
    }
    .about-badge-overlay .num { font-family: 'Bebas Neue', cursive; font-size: 36px; color: white; line-height: 1; }
    .about-badge-overlay .label { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 600; }

    /* ── SERVICES ── */
    .services-section { background: var(--dark); }
    .service-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      padding: 36px 28px;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover {
      transform: translateY(-10px);
      border-color: rgba(245,166,35,0.2);
      box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(245,166,35,0.1);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 64px; height: 64px;
      background: rgba(245,166,35,0.1);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin-bottom: 24px;
      transition: all 0.4s ease;
    }
    .service-card:hover .service-icon {
      background: var(--gradient);
    }
    .service-card h4 {
      font-weight: 800;
      font-size: 18px;
      color: var(--white);
      margin-bottom: 12px;
    }
    .service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    .service-card .service-tag {
      display: inline-block;
      background: rgba(245,166,35,0.1);
      color: var(--primary);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    /* ── JENIS PENGIRIMAN ── */
    .jenis-section { background: var(--secondary); }
    .jenis-col-header {
      font-family: 'Bebas Neue', cursive;
      font-size: 16px;
      letter-spacing: 2px;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .jenis-col-header::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(245,166,35,0.2);
    }
    .jenis-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      padding: 28px;
      height: 100%;
      transition: all 0.3s ease;
    }
    .jenis-card:hover {
      border-color: rgba(245,166,35,0.2);
      background: rgba(245,166,35,0.03);
    }
    .jenis-card-title {
      font-weight: 800;
      font-size: 15px;
      color: var(--white);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .jenis-card-title::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--gradient);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .jenis-card-sub {
      font-size: 11px;
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .jenis-list { list-style: none; padding: 0; margin: 0; }
    .jenis-list li {
      font-size: 13px;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .jenis-list li:last-child { border-bottom: none; }
    .jenis-list li::before {
      content: '→';
      color: var(--primary);
      font-size: 12px;
      flex-shrink: 0;
    }

    /* ── DESTINATION ── */
    .destination-section { background: var(--dark); }
    .dest-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 32px;
      height: 100%;
      transition: all 0.4s ease;
    }
    .dest-card:hover {
      border-color: rgba(245,166,35,0.2);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .dest-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .dest-icon {
      width: 50px; height: 50px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .dest-card-header h5 { font-weight: 800; font-size: 16px; color: var(--white); margin: 0 0 2px; }
    .dest-card-header span { font-size: 12px; color: var(--text-muted); }
    .dest-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
    .dest-list li {
      background: rgba(245,166,35,0.08);
      border: 1px solid rgba(245,166,35,0.15);
      color: var(--text);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    .dest-list li:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }

    /* ── GALLERY ── */
    .gallery-section { background: var(--secondary); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 16px;
    }
    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: var(--surface-2);
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.4s ease;
    }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-row: span 2; }
    .gallery-item:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    .gallery-item-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      gap: 10px;
    }
    .gallery-icon { font-size: 40px; opacity: 0.2; }
    .gallery-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-align: center;
      padding: 0 12px;
    }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover::after { opacity: 1; }

    /* ── WHY US ── */
    .whyus-section { background: var(--dark); }
    .whyus-card {
      text-align: center;
      padding: 36px 24px;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .whyus-card::before {
      content: attr(data-num);
      position: absolute;
      top: -20px; right: -10px;
      font-family: 'Bebas Neue', cursive;
      font-size: 100px;
      color: rgba(245,166,35,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .whyus-card:hover {
      border-color: rgba(245,166,35,0.2);
      transform: translateY(-8px);
      background: var(--surface-2);
    }
    .whyus-icon {
      width: 72px; height: 72px;
      background: rgba(245,166,35,0.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 30px;
      margin: 0 auto 20px;
      transition: all 0.4s ease;
    }
    .whyus-card:hover .whyus-icon { background: var(--gradient); }
    .whyus-card h5 { font-weight: 800; font-size: 16px; color: var(--white); margin-bottom: 12px; }
    .whyus-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: var(--gradient);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.04) 40px,
        rgba(255,255,255,0.04) 80px
      );
    }
    .cta-strip h2 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(36px, 5vw, 64px);
      color: white;
      margin-bottom: 16px;
      line-height: 1;
    }
    .cta-strip p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 0; }
    .btn-white {
      background: white;
      color: var(--primary-dark);
      font-weight: 800;
      padding: 16px 36px;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    }
    .btn-white:hover {
      color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }

    /* ── CONTACT ── */
    .contact-section { background: var(--secondary); }
    .contact-info-card {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 36px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-item-icon {
      width: 46px; height: 46px;
      background: rgba(245,166,35,0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }
    .contact-item h6 { font-weight: 700; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .contact-item p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; font-weight: 500; }
    .contact-wa-btns { display: flex; gap: 12px; margin-top: 32px; }
    .btn-wa {
      flex: 1;
      background: #25D366;
      color: white;
      font-weight: 700;
      font-size: 13px;
      padding: 14px 20px;
      border-radius: 50px;
      text-decoration: none;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: all 0.3s ease;
    }
    .btn-wa:hover { color: white; filter: brightness(1.1); transform: translateY(-2px); }
    .contact-map {
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
      display: flex; flex-direction: column;
    }
    .contact-map iframe {
      flex: 1;
      width: 100%;
      min-height: 300px;
      border: none;
    }
    .map-label {
      padding: 20px 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .map-label i { color: var(--primary); font-size: 18px; }
    .map-label span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 60px 0 30px;
    }
    .footer-brand { margin-bottom: 20px; }
    .footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 300px; margin-bottom: 28px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 40px; height: 40px;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .social-btn:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
      transform: translateY(-3px);
    }
    .footer-heading {
      font-weight: 800;
      font-size: 13px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .footer-links a:hover { color: var(--primary); transform: translateX(4px); }
    .footer-bottom {
      margin-top: 50px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: var(--text-muted); margin: 0; }
    .footer-bottom .highlight { color: var(--primary); font-weight: 700; }

    /* ── FLOATING WA ── */
    .float-wa {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      color: white;
      text-decoration: none;
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
      z-index: 9998;
      animation: float-wa 3s ease-in-out infinite;
      transition: all 0.3s ease;
    }
    .float-wa:hover { color: white; transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.65); }
    @keyframes float-wa {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ── PROGRESS BARS ── */
    .progress-custom {
      height: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 8px;
    }
    .progress-bar-custom {
      height: 100%;
      background: var(--gradient);
      border-radius: 10px;
      transition: width 1.5s ease;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .hero-image-area { height: 350px; margin-top: 40px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
      .gallery-item:first-child { grid-column: span 2; }
      .gallery-item:nth-child(4) { grid-row: span 1; }
      .hero-stats { gap: 24px; }
    }
    @media (max-width: 576px) {
      section { padding: 70px 0; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .contact-wa-btns { flex-direction: column; }
    }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed;
      bottom: 100px; right: 28px;
      width: 44px; height: 44px;
      background: var(--surface);
      border: 1px solid rgba(245,166,35,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      font-size: 18px;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 9997;
    }
    #backToTop.show { opacity: 1; pointer-events: all; }
    #backToTop:hover { background: var(--gradient); color: white; border-color: transparent; }

    /* number counter */
    .count-up { transition: all 0.3s; }

    /* Swiper overrides */
    .swiper-pagination-bullet { background: var(--primary) !important; }
    .swiper-button-next, .swiper-button-prev { color: var(--primary) !important; }