/*RESET PENTING*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
      --green-primary: #2E8B57;
      --green-dark: #1E6B3A;
      --green-gradient: linear-gradient(135deg, #4CAF75, #2E8B57, #236B43);
      --green-card: linear-gradient(160deg, #3A9D6E, #2E8B57);
      --green-glass: rgba(46, 139, 87, 0.12);
      --green-glass-hover: rgba(46, 139, 87, 0.22);
      --green-border: rgba(46, 139, 87, 0.2);
      --gold-hover: #D4AF37;
      --gold-shadow: rgba(212, 175, 55, 0.25);
      --gold-gradient: linear-gradient(90deg, #FFD700, #D4AF37);
      --gray-dark: #333333;
      --gray-mid: #666666;
      --gray-light: #999999;
      --bg-page: #FAFAFA;
      --wa-green: #25D366;
      --wa-dark: #128C7E;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg-page);
      color: var(--gray-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }


    .text-awal {
        font-size: 1.2rem;
        color: var(--gray-dark);
        text-align: center;
        margin: 0 auto;
        margin-top: 420px;
        line-height: 1.5;
        
    }

    .text-awal h1 {
        font-size: 32px;
    }
    .text-awal h4 {
        font-size: 18px;
        font-weight: 200;
        margin-bottom: 2px !important;
    }
    .text-awal p {
        font-size: 16px;
        font-weight: 700;
    }
    /* ===== GLASSMORPHISM FLOATING HEADER ===== */
    .glass-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.4s ease;
    }

    .glass-header.scrolled {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .glass-header .brand {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
    }

    .brand-icon {
      width: 38px; height: 38px; background: var(--gray-light);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
    }

    .brand-icon i { font-size: 1.1rem; color: #fff; }

    .brand-name {
      font-size: 1.15rem; font-weight: 700; color: #fff; transition: color 0.3s ease;
    }

    .glass-header.scrolled .brand-name { color: var(--gray-dark); }

    .header-nav { display: flex; align-items: center; gap: 8px; }

    .nav-link-custom {
      padding: 8px 16px; border-radius: 25px; font-size: 0.8rem; font-weight: 500;
      text-decoration: none; color: rgba(255, 255, 255, 0.9);
      transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .glass-header.scrolled .nav-link-custom {
      color: var(--gray-mid); border-color: #E0E0E0;
    }

    .nav-link-custom:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }

    .glass-header.scrolled .nav-link-custom:hover {
      background: var(--green-primary); color: #fff; border-color: var(--green-primary);
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
      background: var(--green-gradient); padding: 120px 20px 70px;
      text-align: center; position: relative; overflow: hidden;
    }

    .hero-section::before {
      content: ''; position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-section::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
      background: linear-gradient(to top, var(--bg-page), transparent);
      pointer-events: none;
    }

    .hero-label {
      display: inline-block; background: rgba(255, 255, 255, 0.15);
      color: #fff; font-size: 0.75rem; font-weight: 500;
      padding: 6px 16px; border-radius: 20px; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-section h1 {
      color: #fff; font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 8px;
    }

    .hero-section h1 span { font-weight: 300; }

    .hero-section p {
      color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; font-weight: 300;
      max-width: 400px; margin: 0 auto;
    }

    /* ===== FITUR UNDANGAN ===== */
    .fitur-section { padding: 0 16px 40px; }

    .fitur-card {
      background: var(--green-card); border-radius: 24px;
      padding: 32px 24px 24px; position: relative; overflow: hidden;
    }

    .fitur-card::before {
      content: ''; position: absolute; top: -30%; right: -20%;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .fitur-title { text-align: center; margin-bottom: 24px; }

    .fitur-title h2 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }

    .fitur-title .line {
      width: 45px; height: 3px; background: rgba(255, 255, 255, 0.4);
      border-radius: 2px; margin: 0 auto;
    }

    .feature-list { list-style: none; padding: 0; margin: 0; }

    .feature-list li {
      display: flex; align-items: center; gap: 10px; padding: 7px 0;
      color: #fff; font-size: 0.82rem; font-weight: 400;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.3s ease;
    }

    .feature-list li:last-child { border-bottom: none; }

    .feature-list li:hover { transform: translateX(6px); }

    .feature-list li i {
      font-size: 0.95rem; width: 20px; text-align: center; opacity: 0.85; flex-shrink: 0;
    }

    .feature-list li .tag {
      font-size: 0.62rem; background: rgba(255, 255, 255, 0.15);
      padding: 2px 8px; border-radius: 10px; margin-left: auto;
      font-weight: 500; white-space: nowrap;
    }

    .fitur-bottom {
      margin-top: 18px; padding-top: 16px;
      border-top: 2px dashed rgba(255, 255, 255, 0.25);
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }

    .fitur-bottom-info {
      color: rgba(255, 255, 255, 0.75); font-size: 0.72rem; line-height: 1.8;
    }

    .fitur-bottom-info i { margin-right: 6px; font-size: 0.82rem; }

    .fitur-wa {
      width: 44px; height: 44px; background: rgba(255, 255, 255, 0.2);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      transition: all 0.3s ease; text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .fitur-wa:hover { background: rgba(255, 255, 255, 0.35); transform: scale(1.1); }

    .fitur-wa i { font-size: 1.3rem; color: #fff; }

    /* ===== PILIH TEMA SECTION ===== */
    .tema-section { padding: 36px 16px; }

    .tema-header { text-align: center; margin-bottom: 24px; }

    .tema-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 4px; }

    .tema-header p { color: var(--gray-mid); font-size: 0.82rem; font-weight: 300; font-style: italic; }

    .filter-tabs {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 8px; max-width: 460px; margin: 0 auto 24px;
    }

    .filter-tab {
      padding: 10px 16px; background: #EEEEEE; border: 2px solid transparent;
      border-radius: 12px; text-align: center; font-size: 0.82rem; font-weight: 600;
      color: var(--gray-dark); cursor: pointer; transition: all 0.3s ease;
    }

    .filter-tab:hover {
      background: var(--green-glass-hover); border-color: var(--green-primary); color: var(--green-dark);
    }

    .filter-tab.active {
      background: var(--green-gradient); color: #fff; border-color: var(--green-primary);
      box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    }

    .active-category { text-align: center; margin-bottom: 18px; }

    .active-category span {
      display: inline-block; background: linear-gradient(135deg, var(--green-primary), #3A9D6E);
      color: #fff; font-size: 1.1rem; font-weight: 700; padding: 6px 28px;
      border-radius: 20px; letter-spacing: 2px;
    }

    .feature-box-basic {
      max-width: 520px; margin: 0 auto 20px; background: var(--green-glass);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--green-border); border-radius: 16px; padding: 16px 20px;
    }

    .feature-box-basic ul { list-style: none; padding: 0; margin: 0; }

    .feature-box-basic ul li {
      display: flex; align-items: center; gap: 8px; padding: 5px 0;
      color: var(--gray-dark); font-size: 0.8rem; font-weight: 400;
    }

    .feature-box-basic ul li i { font-size: 0.9rem; flex-shrink: 0; }

    .feature-box-basic ul li i.bi-x-circle-fill { color: #E74C3C; }

    .feature-box-basic ul li i.bi-check-circle-fill { color: var(--green-primary); }

    /* ===== THEME CARDS ===== */
    .theme-card {
      background: var(--green-glass); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); border: 1px solid var(--green-border);
      border-radius: 20px; overflow: hidden; position: relative;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); margin-bottom: 16px;
    }

    .theme-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 32px var(--gold-shadow), 0 6px 12px rgba(0,0,0,0.04);
      border-color: var(--gold-hover);
    }

    .theme-card:hover .theme-card-bg {
      background: linear-gradient(160deg, #F0F9F4, #E8F5EC, #F0F9F4);
    }

    .theme-card-bg {
      background: linear-gradient(160deg, #F0F9F4, #E8F5EC, #F0F9F4);
      padding: 24px 14px 16px; position: relative; overflow: hidden;
      transition: background 0.3s ease;
    }

    .theme-card-bg::before {
      content: ''; position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at 30% 30%, rgba(46, 139, 87, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .theme-name {
      text-align: center; font-size: 1rem; font-weight: 600;
      color: var(--gray-dark); margin-bottom: 14px;
    }

    .phone-mockup {
      position: relative; max-width: 190px; margin: 0 auto;
      display: flex; justify-content: center; gap: 6px;
    }

    .phone {
      width: 88px; height: 165px; background: #fff; border-radius: 14px;
      border: 2.5px solid #333; position: relative; overflow: hidden;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .phone-notch { width: 45%; height: 7px; background: #333; border-radius: 0 0 8px 8px; margin: 0 auto; }

    .phone-screen { padding: 6px; text-align: center; }

    .phone-screen .wedding-preview {
      width: 100%; height: 100px; background: linear-gradient(135deg, #E8F5E9, #F0F8FF);
      border-radius: 5px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; font-size: 0.5rem; color: #888;
    }

    .phone-screen .wedding-preview i {
      font-size: 1.3rem; margin-bottom: 3px; color: var(--green-primary); opacity: 0.6;
    }

    .phone:nth-child(2) { transform: translateY(12px); }

    .badge-new {
      position: absolute; top: 12px; right: 12px;
      background: linear-gradient(135deg, #27AE60, #2ECC71);
      color: #fff; font-size: 0.6rem; font-weight: 700;
      padding: 3px 10px; border-radius: 18px;
      display: flex; align-items: center; gap: 3px;
      box-shadow: 0 3px 8px rgba(39, 174, 96, 0.3); z-index: 2;
    }

    .badge-new i { font-size: 0.65rem; }

    .theme-price { text-align: center; padding: 14px 16px 8px; }

    .price-original { font-size: 0.8rem; color: var(--gray-light); text-decoration: line-through; margin-bottom: 1px; }

    .price-current { font-size: 1.1rem; font-weight: 700; color: var(--gray-dark); }

    .theme-actions { padding: 0 14px 16px; display: flex; flex-direction: column; gap: 8px; }

    .btn-preview {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      width: 100%; padding: 9px 16px; background: var(--green-glass);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid var(--green-border); color: var(--green-dark);
      border-radius: 12px; font-size: 0.78rem; font-weight: 600;
      cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    }

    .btn-preview:hover {
      background: var(--green-primary); border-color: var(--green-primary);
      color: #fff; transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(46, 139, 87, 0.3);
    }

    .btn-preview i { font-size: 0.9rem; }

    .btn-order {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      width: 100%; padding: 10px 16px;
      background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
      color: #fff; border: none; border-radius: 12px;
      font-size: 0.8rem; font-weight: 600; cursor: pointer;
      transition: all 0.3s ease; text-decoration: none;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    }

    .btn-order:hover {
      transform: translateY(-3px); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
      color: #fff; background: linear-gradient(135deg, #2ECC71, #25D366);
    }

    .btn-order i { font-size: 0.9rem; }

    .coming-soon-overlay {
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(46, 139, 87, 0.7); backdrop-filter: blur(4px);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      z-index: 10; border-radius: 20px;
    }

    .coming-soon-text {
      color: #fff; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
    }

    .coming-soon-sub { color: rgba(255, 255, 255, 0.75); font-size: 0.72rem; font-weight: 300; }

    .coming-soon-icon {
      width: 52px; height: 52px; background: rgba(255, 255, 255, 0.12);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px; border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .coming-soon-icon i { font-size: 1.3rem; color: #fff; }

    .category-content { display: none; }
    .category-content.active { display: block; }

    /* ===== SECTION DIVIDER ===== */
    .section-divider { text-align: center; padding: 26px 16px 8px; }

    .section-divider h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 4px; }

    .section-divider p { color: var(--gray-light); font-size: 0.82rem; font-weight: 300; }

    /* ===== ADD-ON CARDS ===== */
    .addon-card {
      background: #fff; border-radius: 18px; padding: 26px 22px; cursor: pointer;
      border: 1.5px solid #EEEEEE; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative; height: 100%; margin-bottom: 12px;
    }

    .addon-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: #E0E0E0; border-radius: 18px 18px 0 0;
      transition: background 0.3s ease;
    }

    .addon-card:hover {
      transform: translateY(-12px); border-color: var(--gold-hover);
      box-shadow: 0 20px 40px var(--gold-shadow), 0 8px 12px rgba(0,0,0,0.04);
    }

    .addon-card:hover::before { background: var(--gold-gradient); }

    .addon-card:active { transform: translateY(-4px); transition-duration: 0.1s; }

    .addon-icon-wrapper {
      width: 54px; height: 54px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; transition: transform 0.3s ease;
    }

    .addon-card:hover .addon-icon-wrapper { transform: scale(1.1) rotate(-5deg); }

    .icon-express { background: linear-gradient(135deg, #FFB74D, #F57C00); }

    .icon-custom { background: linear-gradient(135deg, #FFD54F, #FF8A65, #BA68C8, #4FC3F7); }

    .addon-icon-wrapper i { font-size: 1.5rem; color: #fff; }

    .addon-badge {
      display: inline-block; background: #333; color: #fff;
      font-size: 0.62rem; font-weight: 600; padding: 3px 10px;
      border-radius: 18px; text-transform: uppercase;
      letter-spacing: 0.8px; margin-bottom: 10px;
    }

    .addon-card h3 { color: var(--gray-dark); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }

    .addon-card .desc {
      color: var(--gray-mid); font-size: 0.8rem; line-height: 1.6;
      margin-bottom: 14px; font-weight: 300;
    }

    .addon-card .desc strong { color: var(--gray-dark); font-weight: 500; }

    .note-box { background: #F5F5F5; border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; }

    .note-box p { color: var(--gray-mid); font-size: 0.75rem; margin: 0; line-height: 1.5; }

    .note-box i { color: var(--gray-dark); margin-right: 4px; }

    .addon-price { display: flex; align-items: baseline; gap: 6px; }

    .addon-price .price { font-size: 1.3rem; font-weight: 700; color: var(--gray-dark); }

    .addon-price .price-label { font-size: 0.72rem; color: var(--gray-light); font-weight: 400; }

    /* ===== OPERASIONAL CARD ===== */
    .ops-card {
      background: #fff; border-radius: 18px; padding: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); border: 1.5px solid #EEEEEE;
    }

    .ops-icon {
      width: 50px; height: 50px; background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
      border: 1px solid #DEE2E6; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    .ops-icon i { font-size: 1.4rem; color: #555555; }

    .ops-card h5 { color: var(--gray-dark); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }

    .ops-item { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }

    .ops-item:last-child { margin-bottom: 0; }

    .ops-item .text-time { color: var(--gray-dark); font-weight: 500; font-size: 0.82rem; }

    .ops-item .text-slow { color: var(--gray-mid); font-weight: 500; font-size: 0.78rem; }

    .status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 6px; }

    .status-dot.online { background: #66BB6A; animation: pulse 2s infinite; }

    .status-dot.offline { background: #BDBDBD; animation: none; }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    /* ===== FAQ SECTION (Matching Green Theme) ===== */
    .faq-section {
      padding: 40px 16px 60px;
      background: linear-gradient(to bottom, #FAFAFA, #F0F4F1);
    }

    .faq-header {
      background: var(--green-gradient); color: white;
      padding: 50px 20px 40px; margin-bottom: 36px;
      border-radius: 24px; position: relative; overflow: hidden;
    }

    .faq-header::before {
      content: ''; position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .faq-header .faq-icon { font-size: 3.5rem; opacity: 0.2; margin-bottom: 16px; }

    .faq-header h1 { font-weight: 700; font-size: 2rem; margin-bottom: 4px; }

    .faq-header p { font-size: 0.95rem; opacity: 0.9; font-weight: 300; }

    .accordion-item {
      border: none; margin-bottom: 14px; border-radius: 14px !important;
      overflow: hidden; box-shadow: 0 2px 10px rgba(46, 139, 87, 0.08); background: #fff;
    }

    .accordion-button {
      background-color: #fff; color: var(--green-dark);
      font-weight: 600; padding: 18px 22px; font-size: 0.95rem; border: none;
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--green-primary); color: white; box-shadow: none;
    }

    .accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,.125); }

    .accordion-button::after {
      background-size: 1.1rem;
      filter: brightness(0) saturate(100%) invert(35%) sepia(70%) saturate(400%) hue-rotate(120deg) brightness(90%) contrast(90%);
    }

    .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }

    .accordion-body {
      padding: 18px 22px; background-color: #fafafa;
      color: var(--gray-mid); line-height: 1.75; font-size: 0.9rem;
    }

    .highlight-box {
      background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
      border-left: 4px solid var(--green-primary);
      padding: 12px 16px; margin: 8px 0; border-radius: 8px; font-size: 0.85rem;
    }

    .highlight-box strong { color: var(--green-dark); }

    .faq-contact-box {
      text-align: center; margin-top: 40px; padding: 28px; background: #fff;
      border-radius: 20px; box-shadow: 0 4px 20px rgba(46, 139, 87, 0.08);
      border: 1px solid var(--green-border);
    }

    .faq-contact-box h4 { color: var(--green-dark); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }

    .faq-contact-box p { color: var(--gray-mid); font-size: 0.9rem; margin-bottom: 16px; }

    .btn-whatsapp-lg {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff; border: none; border-radius: 25px;
      font-size: 0.9rem; font-weight: 600; text-decoration: none;
      transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp-lg:hover {
      transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); color: #fff;
    }

    .btn-whatsapp-lg i { font-size: 1.2rem; }

   

    /* ===== FLOATING WHATSAPP ===== */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px;
      background: #25D366; border-radius: 50%; display: flex;
      align-items: center; justify-content: center;
      box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
      z-index: 1000; transition: transform 0.3s ease; text-decoration: none;
    }

    .wa-float:hover { transform: scale(1.1); }

    .wa-float i { font-size: 1.7rem; color: #fff; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 576px) {
      .hero-section { padding: 100px 16px 55px; }
      .hero-section h1 { font-size: 1.5rem; }
      .fitur-card { padding: 24px 18px 20px; }
      .addon-card { padding: 22px 18px; }
      .wa-float { bottom: 65px; right: 14px; width: 48px; height: 48px; }
      .fitur-bottom { flex-direction: column; align-items: flex-start; }
      .header-nav { display: none; }
      .phone { width: 80px; height: 150px; }
      .phone-mockup { max-width: 170px; }
      .filter-tabs { max-width: 400px; }
      .feature-box-basic { padding: 14px 16px; }
      .faq-header h1 { font-size: 1.6rem; }
      .faq-header .faq-icon { font-size: 3rem; }
      .accordion-button { padding: 16px 20px; font-size: 0.9rem; }
      .accordion-body { padding: 16px 20px; font-size: 0.88rem; }
      .btn-order, .btn-preview { font-size: 0.75rem; padding: 8px 14px; }
    }

    @media (min-width: 577px) {
      .fitur-card { max-width: 520px; margin: 0 auto; }
    }


    /*INI UNTUK FOOTERNYA*/

        /* Footer Container */
        .footer-dark {
            background-color: #1e1e1e; /* Abu-abu sangat gelap/hitam */
            color: #b0b0b0;
            padding: 60px 0 30px;
            text-align: left; /* Memaksa semua rata kiri */
        }

        /* Branding Area (Logo + Text) */
        .brand-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        /* SVG Cupid Heart & Arrow Styling */
        .logo-icon svg {
            width: 100%;
            height: 100%;
            fill: #ffffff; /* Warna logo putih */
        }

        .brand-name h3 {
            color: #ffffff;
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .brand-name span {
            color: #888;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #999;
            margin-bottom: 20px;
            max-width: 95%;
        }

        /* Headings */
        .footer-head {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Lists */
        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 12px;
        }

        .footer-list a {
            color: #aaa;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
            display: inline-block;
        }

        .footer-list a:hover {
            color: #fff;
            transform: translateX(5px);
        }

        /* Social Icons */
        .social-wrap {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .soc-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: none;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            overflow: hidden; /* Tambahkan ini agar aman */
            transition: 0.3s;
        }

        .soc-btn:hover {
            background-color: #fff;
            color: #1e1e1e;
        }

        /* Actual logo *//* Actual logo - Diperbaiki agar muat di box 36px */
#instagram-logo {
    position: relative;
    width: 60%; /* Mengikuti ukuran .soc-btn */
    height: 60%;
    border-radius: 25%; /* Membuat lekukan khas IG */
    background: radial-gradient(
        circle farthest-corner at 32% 112%,
        #ffdc80 8%,
        #fcaf4c 22%,
        #f56040 36%,
        #e1306c 46%,
        transparent 60%
    ),
    linear-gradient(
        170deg,
        #405de6 2%,
        #5b51d8 9%,
        #833ab4 17%,
        #c13584 41%,
        #e1306c 75%
    );
}

#instagram-logo:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    border: 2px solid #fff; /* Lingkaran tengah */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#instagram-logo:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    /* Dot kecil di pojok kanan atas */
    background-image: radial-gradient(
        circle at 80% 20%,
        #fff 10%,
        transparent 0
    );
    border: 2px solid #fff; /* Garis kotak luar logo */
    border-radius: 30%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
        /* Copyright */
        .copy-area {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            font-size: 13px;
            color: #666;
        }

        .copy-area strong {
            color: #fff;
        }

/* CSS Khusus WhatsApp Custom */
.wa-custom .white {
    width: 24px; /* Ukuran balon putih diperkecil */
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-custom .green-circle {
    width: 20px; /* Lingkaran hijau di dalam */
    height: 20px;
    border-radius: 50%;
    background: #3AC371;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.wa-custom .fas {
    font-size: 10px; /* Ukuran telepon diperkecil */
    color: #fff;
    transform: rotate(90deg);
}

/* Ekor Balon Chat Putih */
.wa-custom .white::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -2px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    transform: rotate(-50deg);
}

/* Ekor Balon Chat Hijau */
.wa-custom .white::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0px;
    border-width: 4px;
    border-style: solid;
    border-color: transparent #3AC371 transparent transparent;
    transform: rotate(-50deg);
    z-index: 3;
}

/* Hover Effect */
.soc-btn:hover {
    transform: scale(1.1);
    background-color: #444;
}
/* ini supaya BOOTSTRAP TETAP MEMUNCUL KAN LOGO ASLINYA */
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    font-family: "bootstrap-icons" !important;
    display: inline-block;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}