/* ============================================================
   DATANG JIKA SEMPAT – style.css (Updated)
   ============================================================ */

   :root {
    --gold: #c9a96e;
    --gold-light: #e0c48a;
    --gold-dark: #a07840;
    --dark: #1a1a1a;
    --dark2: #111111;
    --charcoal: #2b2b2b;
    --cream: #f8f5f0;
    --text: #3a3a3a;
    --text-light: #777;
    --white: #ffffff;
    --nav-bg: rgba(245,242,237,0.97);
    --nav-bg-dark: rgba(15,12,10,0.97);
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }
  
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  @font-face {
    font-family: "EdwardianScriptItc";
    src: url("/assets/font/ITCEDSCR.TTF");
  } 
  
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
  }
  .section-heading.dark { color: var(--dark); }
  
  .section-sub {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 680px;
  }
  
  .section-title-block {
    text-align: center;
    margin-bottom: 56px;
  }
  .section-title-block .section-sub { margin: 12px auto 0; }
  
  /* ==================== NAVBAR ==================== */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    transition: box-shadow var(--transition);
  }
  #navbar.scrolled {
    background: var(--nav-bg-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  #navbar.scrolled .nav-link { color: rgba(255,255,255,0.8); }
  #navbar.scrolled .nav-link:hover,
  #navbar.scrolled .nav-link.active { color: var(--gold); }
  
  .nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  /* Logo switching */
  .logo-dark { display: block; }
  .logo-light { display: none; }
  #navbar.scrolled .logo-dark { display: none; }
  #navbar.scrolled .logo-light { display: block; }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    flex-shrink: 0;
  }
  
  .logo-icon {
    width: 150px;
    height: 56px;
    display: flex;
    align-items: center;
  }
  .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .logo-icon.large { width: 180px; height: 72px; }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    position: relative;
    transition: color var(--transition);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
  }
  .nav-link:hover::after,
  .nav-link.active::after { width: 100%; }
  
  /* Nav Actions: Login + Order buttons */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .nav-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 40px;
    border: 1.5px solid rgba(201,169,110,0.4);
    transition: all var(--transition);
  }
  .nav-login-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .nav-login-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.08);
  }
  #navbar.scrolled .nav-login-btn {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.2);
  }
  #navbar.scrolled .nav-login-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
  }
  
  .nav-order-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all var(--transition);
    white-space: nowrap;
  }
  .nav-order-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,169,110,0.4);
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 2px;
  }
  #navbar.scrolled .hamburger span { background: var(--white); }
  
  /* Mobile menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--dark2);
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(201,169,110,0.2);
  }
  .mobile-menu.open { display: flex; }
  .mob-link {
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
  }
  .mob-link:hover { color: var(--gold); }
  .mob-link-gold {
    color: var(--gold);
    border-bottom: none;
    margin-top: 4px;
  }
  
  /* ==================== HERO ==================== */
  #hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-slides {
    position: absolute;
    inset: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.45) 100%);
  }
  
  /* Hero content — right-aligned on desktop */
  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 560px;
    margin-left: auto;
    margin-right: 80px;
    padding: 0;
  }
  
  .hero-platform-tag {
    display: block;
    padding: 44px 48px;
    position: relative;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 0.7s 0.1s forwards;
  }
  
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
  .hero-title img {
    display: block;
    width: min(410px, 92%);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s 0.3s forwards;
  }
  
  @keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.6s forwards;
  }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    white-space: nowrap;
  }
  .btn-outline svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
  }
  
  .hero-dots {
    position: absolute;
    bottom: 32px; left: 60px;
    z-index: 3;
    display: flex;
    gap: 8px;
  }
  .hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
  }
  .hero-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
  }
  
  /* ==================== ABOUT ==================== */
  .section-about {
    background: var(--white);
    overflow: hidden;
  }
  
  /* Love Banner */
  .about-love-banner {
    padding: 80px 24px 48px;
    text-align: center;
  }
  .love-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
    letter-spacing: -0.01em;
  }
  .love-script {
    font-style: italic;
    color: var(--gold);
    font-family: 'EdwardianScriptItc', cursive;
    font-size: 2em;
    font-weight: 400;
  }
  .love-caps { font-style: normal; }
  .love-caps-left {margin-left: 15px;}
  .love-heading-bottom { margin-bottom: 18px; }
  .love-tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }
  
  /* Two-column about */
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /* About section dividers */
  .about-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #ddd8d0 20%, #ddd8d0 80%, transparent 100%);
    margin: 0;
  }

  /* .about-text-line {
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
  } */ 
  .about-phones {
    position: relative;
    height: 500px;
    display: block;
  }
  .phone-wrapper {
    position: absolute;
    padding-top: 0;
  }
  .phone-wrapper:first-child {
    left: 16%;
    top: 35px;
    z-index: 2;
  }
  .phone-wrapper.phone-back {
    left: 42%;
    top: 115px;
    z-index: 1;
  }
  
  .phone-frame {
    width: 180px;
    border-radius: 28px;
    border: 8px solid var(--dark);
    background: var(--dark);
    overflow: hidden;
    position: relative;
  }
  .phone-frame::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 5px;
    background: var(--dark2);
    border-radius: 3px;
    z-index: 10;
  }
  
  .phone-screen {
    position: relative;
    height: 320px;
    overflow: hidden;
  }
  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .phone-overlay-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 16px 12px 10px;
    color: var(--white);
    text-align: center;
  }
  .phone-small {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    opacity: 0.8;
  }
  .phone-overlay-text h3 {
    font-family: 'EdwardianScriptItc', cursive;
    font-size: 1.1rem;
    line-height: 1.1;
    margin: 2px 0 6px;
  }
  .phone-guest {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
    opacity: 0.7;
    margin-bottom: 6px;
  }
  .phone-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-size: 0.5rem;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.04em;
  }
  
  .zoom-hover:hover .phone-screen img { transform: scale(1.06); }
  
  .about-text { padding-right: 20px; }
  .about-text .section-heading { margin-bottom: 20px; }
  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
  }
  
  /* ==================== WHY WE'RE PERFECT (Mengapa) ==================== */
  .section-mengapa {
    background: var(--dark);
    padding: 100px 0 0;
    overflow: visible;
  }
  .section-mengapa .section-title-block {
    margin-bottom: 64px;
  }
  
  /* "Light text" modifier for dark bg */
  .light-text { color: rgba(255,255,255,0.55) !important; }
  
  /* Why We're Perfect heading */
  .why-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }
  .why-script {
    font-style: italic;
    color: var(--gold);
    font-family: 'EdwardianScriptItc', cursive;
    font-size: 1.35em;
    text-transform: none;
    font-weight: 400;
    display: inline-block;
    vertical-align: baseline;
  }
  
  /* Cards — dark variant */
  .mengapa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
  }
  .mengapa-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mengapa-icon {
    width: 52px; height: 52px;
    color: var(--gold);
  }
  .mengapa-icon svg { width: 100%; height: 100%; }
  .mengapa-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .mengapa-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }
  
  /* ==================== PHONE BRIDGE (Mengapa → Desain) ==================== */
  .phone-bridge {
    margin-top: 80px;
    position: relative;
    z-index: 5;
    overflow: visible;
  }
  .bridge-phones-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -180px; /* bridges into desain section */
  }
  .bridge-phone {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bridge-phone .phone-frame {
    width: 195px;
    border-radius: 30px;
    border-width: 7px;
  }
  .bridge-phone .phone-screen { height: 370px; }
  .bridge-phone-center .phone-frame {
    transform: scale(1.07) translateY(-20px);
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }
  .bridge-phone-url {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-top: 6px;
    padding-bottom: 4px;
  }
  
  /* ==================== FIND YOUR PERFECT DESIGN ==================== */
  .section-desain {
    background: var(--white);
    padding-top: 200px; /* space for bridge phones */
    padding-bottom: 100px;
    text-align: center;
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  
  .desain-text-area {
    position: relative;
    z-index: 2;
  }
  
  .find-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    font-weight: 300;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.04em;
  }
  .find-script {
    font-style: italic;
    color: var(--gold);
    font-family: 'EdwardianScriptItc', cursive;
    font-size: 1.4em;
    text-transform: none;
    font-weight: 400;
  }
  .section-desain .section-sub {
    margin: 0 auto 36px;
  }
  
  .btn-gold {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all var(--transition);
  }
  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
  }
  
  /* ==================== FITUR ==================== */
  .section-fitur {
    padding: 100px 0;
    background: var(--cream);
  }
  .fitur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
  }
  .fitur-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .fitur-icon {
    width: 44px; height: 44px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .fitur-icon svg { width: 100%; height: 100%; }
  .fitur-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .fitur-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* ==================== PAKET ==================== */
  .section-paket {
    padding: 100px 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(201,169,110,0.12), transparent 32%),
      var(--white);
  }
  .paket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .paket-card {
    border-radius: 28px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .paket-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.42), transparent 34%, rgba(201,169,110,0.08));
  }
  .paket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(17,17,17,0.14);
  }

  .paket-card-light {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(17,17,17,0.09);
    box-shadow: 0 16px 40px rgba(17,17,17,0.06);
    color: var(--dark);
  }
  .paket-card-light:hover {
    border-color: rgba(201,169,110,0.55);
  }
  .paket-card-light .paket-name,
  .paket-card-light .paket-features li.check,
  .paket-card-light .paket-decision-copy {
    color: var(--dark);
  }
  .paket-card-light .paket-sub-label,
  .paket-card-light .paket-audience,
  .paket-card-light .paket-save-note {
    color: #6f6f6f;
  }

  .paket-popular {
    background:
      radial-gradient(circle at 50% -10%, rgba(201,169,110,0.38), transparent 36%),
      linear-gradient(155deg, #050505 0%, #151515 48%, #24201a 100%);
    border: 1.5px solid var(--gold);
    box-shadow: 0 30px 80px rgba(0,0,0,0.30), 0 0 0 8px rgba(201,169,110,0.08);
    transform: translateY(-18px) scale(1.035);
    z-index: 3;
  }
  .paket-popular:hover {
    transform: translateY(-24px) scale(1.05);
    box-shadow: 0 38px 90px rgba(0,0,0,0.38), 0 0 0 10px rgba(201,169,110,0.12);
  }

  .popular-badge {
    position: absolute;
    top: 18px;
    right: -58px;
    background: linear-gradient(135deg, #e4c078, var(--gold));
    color: #111;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    padding: 7px 56px;
    transform: rotate(38deg);
    text-align: center;
    box-shadow: 0 10px 25px rgba(201,169,110,0.26);
    z-index: 5;
  }
  .paket-mini-badge {
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.32);
    color: #9b7540;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .paket-popular .paket-mini-badge { display: none; }
  .diamond-glow-dot {
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(201,169,110,0.25);
    filter: blur(10px);
  }

  .paket-header { margin-bottom: 22px; position: relative; z-index: 2; }
  .paket-audience {
    font-size: 0.72rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .paket-name {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 4px;
  }
  .paket-sub-label {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 12px;
  }
  .paket-anchor-price {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    color: #9b9b9b;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
  }
  .paket-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .paket-price .rp {
    font-size: 0.82rem;
    color: #a57f45;
    font-weight: 700;
  }
  .paket-price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  .paket-price .ribu {
    font-size: 1.08rem;
    color: #a57f45;
    font-weight: 700;
  }
  .paket-save-note {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.45;
  }
  .paket-popular .paket-name { color: #fff; }
  .paket-popular .paket-audience,
  .paket-popular .paket-sub-label,
  .paket-popular .paket-save-note {
    color: rgba(255,255,255,0.76);
  }
  .paket-popular .paket-anchor-price { color: rgba(255,255,255,0.5); }
  .paket-popular .paket-price .rp,
  .paket-popular .paket-price .ribu { color: var(--gold-light); }
  .paket-popular .paket-price .amount {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 0 0 22px rgba(201,169,110,0.28);
  }

  .paket-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }
  .paket-features li {
    font-size: 0.82rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .paket-features li::before {
    content: '';
    width: 16px; height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .paket-features li.check { color: var(--white); }
  .paket-features li.check::before {
    background-color: rgba(201,169,110,0.18);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%23c9a96e' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3'/%3E%3C/svg%3E");
  }
  .paket-features li.feature-highlight {
    margin-bottom: 4px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(201,169,110,0.12);
    color: var(--gold-light);
    font-weight: 700;
  }
  .paket-features li.uncheck { color: #9a9a9a; }
  .paket-features li.uncheck::before {
    background-color: rgba(17,17,17,0.05);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%23999' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='3' x2='9' y2='9'/%3E%3Cline x1='9' y1='3' x2='3' y2='9'/%3E%3C/svg%3E");
  }
  .paket-popular .paket-features li.check { color: rgba(255,255,255,0.92); }
  .paket-popular .paket-features li.uncheck { color: rgba(255,255,255,0.42); }
  .paket-popular .paket-features li.check::before { background-color: rgba(201,169,110,0.22); }
  .paket-popular .paket-features li.uncheck::before { background-color: rgba(255,255,255,0.08); }

  .paket-decision-copy {
    min-height: 58px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    position: relative;
    z-index: 2;
  }
  .paket-card-light .paket-decision-copy { color: #5f5f5f; }
  .paket-popular .paket-decision-copy {
    color: rgba(255,255,255,0.82);
    font-weight: 600;
  }

  .paket-btn {
    display: block;
    text-align: center;
    padding: 12px 18px;
    border: 1.5px solid rgba(17,17,17,0.15);
    border-radius: 999px;
    color: var(--dark);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
  }
  .paket-btn:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
  }
  .paket-btn-gold {
    background: linear-gradient(135deg, #e7c77c, var(--gold));
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 16px 34px rgba(201,169,110,0.28);
  }
  .paket-btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--dark);
  }

  /* ==================== PORTFOLIO ==================== */
  .section-portfolio {
    padding: 100px 0;
    background: var(--cream);
  }
  
  .portfolio-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .portfolio-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    flex: 1;
  }
  
  .portfolio-card {
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .portfolio-img-wrap { overflow: hidden; }
  
  .portfolio-preview {
    background: var(--cream);
    padding: 16px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
  }
  .portfolio-preview.dark { background: var(--dark); }
  .portfolio-preview.dark2 { background: #2a2422; }
  .portfolio-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
  }
  .portfolio-preview img.oval-img {
    border-radius: 50%;
    width: 140px; height: 140px;
    border: 3px solid var(--gold);
  }
  .portfolio-preview img.side-img {
    width: 55%;
    height: 150px;
    position: absolute;
    right: 0; bottom: 20px;
    border-radius: 8px 0 0 8px;
  }
  
  .portfolio-preview-header { width: 100%; }
  .portfolio-preview-header img { height: 16px; width: auto; }
  
  .portfolio-preview-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
  }
  .portfolio-preview-names.large {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    padding: 8px 0;
    align-self: flex-start;
  }
  .wedding-of {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-family: 'Jost', sans-serif;
    margin-bottom: 4px;
  }
  .wedding-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-family: 'Jost', sans-serif;
    margin-top: 4px;
  }
  
  .portfolio-preview-label {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
  }
  
  .portfolio-badge {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .portfolio-badge::before {
    content: '🌐';
    font-size: 0.65rem;
  }
  
  .slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    background: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }
  .slider-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }
  
  .slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 28px;
  }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all var(--transition);
  }
  .slider-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
  }
  
  /* ==================== FOOTER ==================== */
  .site-footer { padding: 0; }
  
  .footer-bg {
    background: var(--dark2);
    background-image: url('https://images.unsplash.com/photo-1519741347686-c1e0aadf4611?w=1200&q=30');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .footer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,12,10,0.90);
  }
  
  .footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 80px 24px 60px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-logo .logo-icon { color: var(--white); }
  
  .footer-contact h4,
  .footer-social h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 2;
  }
  
  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 4px;
  }
  .social-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
  }
  .social-icon svg { width: 18px; height: 18px; }
  .social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.1);
  }
  
  .footer-copy {
    position: relative;
    text-align: center;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }
  
  /* ==================== WA FLOAT ==================== */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform var(--transition);
  }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float:hover { transform: scale(1.1); }
  
  /* ==================== ORDER PAGE ==================== */
  .order-page {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--cream);
  }
  .order-page .container { max-width: 640px; }
  .order-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow);
  }
  .order-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .order-form p.sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0dbd3;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 40px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.4);
  }
  
  /* ==================== KATALOG PAGE ==================== */
  .katalog-page {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--white);
  }
  .katalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
  }
  .katalog-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .katalog-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .katalog-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
  }
  .katalog-item-info {
    padding: 16px 20px;
    background: var(--white);
  }
  .katalog-item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--dark);
  }
  .katalog-item-info p {
    font-size: 0.78rem;
    color: var(--text-light);
  }
  
  /* ==================== SCROLL REVEAL ==================== */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ==================== RESPONSIVE TABLET (1024px) ==================== */
  @media (max-width: 1024px) {
    .paket-grid { grid-template-columns: repeat(2, 1fr); }
    .mengapa-grid { grid-template-columns: repeat(2, 1fr); }
    .fitur-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
  
    .bridge-phones-row { gap: 16px; }
    .bridge-phone .phone-frame { width: 160px; }
    .bridge-phone .phone-screen { height: 300px; }
    .bridge-phones-row { margin-bottom: -100px; }
    .section-desain { padding-top: 160px; }
  
    .nav-order-btn { display: none; }
  }
  
  /* ==================== RESPONSIVE MOBILE (768px) ==================== */
  @media (max-width: 768px) {
    /* Navbar */
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
  
    /* Hero — full bleed on mobile */
    #hero {
      height: 100svh;
      min-height: 580px;
      align-items: center;
      justify-content: center;
    }
    .hero-slide {
      background-position: 40% center;
      background-size: cover;
    }
    .hero-overlay {
      background: rgba(0,0,0,0.35);
    }
    .hero-content {
      margin: 0 auto;
      padding: 0 20px;
      max-width: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .hero-frame-box {
      width: 100%;
      max-width: 360px;
      padding: 28px 24px;
    }
    .hero-title img {
      width: min(330px, 88vw);
    }
    .hero-dots {
      left: 20px;
      bottom: 24px;
    }
  
    /* About section */
    .about-love-banner { padding: 56px 16px 32px; }
    .love-heading { font-size: clamp(2rem, 8vw, 3.5rem); }
    .about-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 64px;
    }
    .about-phones {
      height: 320px;
      max-width: 320px;
      margin: 0 auto;
    }
    .phone-frame { width: 140px; }
    .phone-screen { height: 240px; }
    .phone-wrapper:first-child {
      left: 10px;
      top: 10px;
    }
    .phone-wrapper.phone-back {
      left: 138px;
      top: 58px;
    }
    .about-text { padding-right: 0; text-align: center; }
  
    /* Why section */
    .section-mengapa { padding: 64px 0 0; }
    .mengapa-grid { grid-template-columns: 1fr; gap: 32px; }
    .why-heading { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  
    /* Phone bridge — single phone on mobile */
    .phone-bridge { margin-top: 56px; }
    .bridge-phones-row {
      gap: 0;
      margin-bottom: -150px;
      justify-content: center;
    }
    .bridge-phone:not(.bridge-phone-center) { display: none; }
    .bridge-phone-center .phone-frame {
      transform: none;
      width: 170px;
    }
    .bridge-phone-center .phone-screen { height: 320px; }
    .section-desain { padding-top: 140px; padding-bottom: 64px; }
  
    /* Fitur */
    .fitur-grid { grid-template-columns: 1fr; gap: 28px; }
    .section-fitur { padding: 64px 0; }
  
    /* Paket */
    .paket-grid { grid-template-columns: 1fr; }
    .section-paket { padding: 64px 0; }
    .paket-popular {
      order: -1;
      transform: none;
      box-shadow: 0 24px 70px rgba(0,0,0,0.28), 0 0 0 6px rgba(201,169,110,0.10);
    }
    .paket-popular:hover { transform: translateY(-8px); }
    .paket-popular .paket-price .amount { font-size: 3.7rem; }
    .popular-badge { right: -54px; font-size: 0.54rem; }
  
    /* Katalog */
    .katalog-grid { grid-template-columns: repeat(2, 1fr); }
  
    /* Portfolio */
    .portfolio-card { width: calc(80vw); }
    .section-portfolio { padding: 64px 0; }
  
    /* Footer — center all on mobile */
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 36px;
      text-align: center;
      padding: 60px 24px 40px;
    }
    .footer-brand { grid-column: span 1; }
    .footer-logo { justify-content: center; }
    .footer-contact { text-align: center; }
    .footer-social { text-align: center; }
    .social-icons { justify-content: center; }
  
    .container { padding: 0 16px; }
  }
  
  /* ==================== RESPONSIVE SMALL (480px) ==================== */
  @media (max-width: 480px) {
    .katalog-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-outline { width: auto; min-width: 180px; justify-content: center; }
    .hero-frame-box { padding: 22px 18px; }
  
    /* Love heading smaller */
    .love-heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .love-script { font-size: 1.1em; }
  }

/* ============================================================
     OVERRIDES & FIXES – Added
     ============================================================ */
  
  /* --- 1. NAVBAR: Default dark, scrolled = transparent dark --- */
  #navbar {
    background: var(--dark2) !important;
    border-bottom: 1px solid rgba(201,169,110,0.12) !important;
  }
  #navbar.scrolled {
    background: rgba(0,0,0,0.75) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25) !important;
    border-bottom-color: rgba(201,169,110,0.08) !important;
  }
  
  /* Logo: always show white, hide dark */
  #navbar .logo-dark { display: none !important; }
  #navbar .logo-light { display: block !important; }
  
  /* Nav links always white/gold on dark navbar */
  #navbar .nav-link { color: rgba(255,255,255,0.8) !important; }
  #navbar .nav-link:hover,
  #navbar .nav-link.active { color: var(--gold) !important; }
  
  /* Login button adjusted for dark navbar */
  #navbar .nav-login-btn {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.2) !important;
  }
  #navbar .nav-login-btn:hover {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    background: rgba(201,169,110,0.1) !important;
  }
  
  /* Hamburger white on dark navbar */
  #navbar .hamburger span { background: var(--white) !important; }
  
  /* --- 2. HERO IMAGE SPLIT: Desktop image and Mobile image use different classes --- */
  .hero-slide-mobile {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banners/Banner-Mobile.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  @media (min-width: 769px) {
    .hero-slide-desktop {
      display: block;
    }

    .hero-slide-mobile {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    #hero {
      height: 100svh;
      min-height: 580px;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #050505 !important;
    }

    .hero-slide-desktop {
      display: none !important;
    }

    .hero-slide-mobile {
      display: block !important;
      background-size: cover !important;
      background-position: center center !important;
      background-repeat: no-repeat !important;
    }
  }

  @media (max-width: 480px) {
    .hero-slide-mobile {
      background-size: cover !important;
      background-position: center center !important;
    }
  }
  
  /* --- 3. HERO CONTENT: Shift 0.5cm (~19px) to the left on desktop --- */
  @media (min-width: 769px) {
    .hero-content {
      margin-right: 99px !important;
    }
  }
/* ============================================================
   FIX ABOUT PHONES MOBILE CENTER
   Menjaga dua mockup phone tetap berada di tengah pada mobile.
   ============================================================ */
@media (max-width: 768px) {
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
  }

  .about-phones {
    position: relative !important;
    width: min(320px, calc(100vw - 40px)) !important;
    max-width: 320px !important;
    height: 320px !important;
    margin: 0 auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    overflow: visible !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .about-phones .phone-wrapper {
    position: absolute !important;
    padding-top: 0 !important;
  }

  .about-phones .phone-wrapper:first-child {
    left: 50% !important;
    top: 10px !important;
    transform: translateX(-82%) !important;
    z-index: 2 !important;
  }

  .about-phones .phone-wrapper.phone-back {
    left: 50% !important;
    top: 58px !important;
    transform: translateX(-2%) !important;
    z-index: 1 !important;
  }

  .about-phones .phone-frame {
    width: 140px !important;
  }

  .about-phones .phone-screen {
    height: 240px !important;
  }
}

@media (max-width: 380px) {
  .about-phones {
    width: min(292px, calc(100vw - 32px)) !important;
    height: 300px !important;
  }

  .about-phones .phone-frame {
    width: 128px !important;
  }

  .about-phones .phone-screen {
    height: 220px !important;
  }

  .about-phones .phone-wrapper:first-child {
    transform: translateX(-84%) !important;
  }

  .about-phones .phone-wrapper.phone-back {
    top: 54px !important;
    transform: translateX(-4%) !important;
  }
}

/* ============================================================
   SECTION SPACING BALANCE - DESKTOP & MOBILE
   Menyamakan ruang atas-bawah section agar tidak mepet antar section.
   Fokus utama: about-text tidak menempel ke section WHY di mobile.
   ============================================================ */
:root {
  --section-space-desktop: 100px;
  --section-space-tablet: 80px;
  --section-space-mobile: 72px;
}

@media (min-width: 769px) {
  .section-about .about-inner {
    padding-top: var(--section-space-desktop) !important;
    padding-bottom: var(--section-space-desktop) !important;
  }

  .section-mengapa {
    padding-top: var(--section-space-desktop) !important;
  }

  .section-desain,
  .section-fitur,
  .section-paket,
  .section-portfolio {
    padding-top: var(--section-space-desktop) !important;
    padding-bottom: var(--section-space-desktop) !important;
  }
}

@media (max-width: 768px) {
  .about-love-banner {
    padding-top: var(--section-space-mobile) !important;
    padding-bottom: 40px !important;
  }

  .section-about .about-inner {
    padding-top: var(--section-space-mobile) !important;
    padding-bottom: var(--section-space-mobile) !important;
  }

  .section-about .about-text {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .section-about .about-text p:last-child {
    margin-bottom: 0 !important;
  }

  .section-mengapa {
    padding-top: var(--section-space-mobile) !important;
  }

  .section-mengapa .section-title-block {
    margin-bottom: 48px !important;
  }

  .section-desain,
  .section-fitur,
  .section-paket,
  .section-portfolio {
    padding-top: var(--section-space-mobile) !important;
    padding-bottom: var(--section-space-mobile) !important;
  }
}

@media (max-width: 480px) {
  .section-about .about-inner {
    padding-top: 64px !important;
    padding-bottom: 76px !important;
  }

  .section-mengapa {
    padding-top: 76px !important;
  }

  .section-desain,
  .section-fitur,
  .section-paket,
  .section-portfolio {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
}

/* ============================================================
   FIX PHONE BRIDGE CENTER BETWEEN WHY & DESIGN
   Mengembalikan jarak khusus untuk bridge-phone agar mockup phone
   berada tepat di tengah pertemuan section gelap dan section putih.
   ============================================================ */
@media (min-width: 1025px) {
  .section-mengapa {
    padding-top: 100px !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .phone-bridge {
    margin-top: 80px !important;
    position: relative !important;
    z-index: 5 !important;
    overflow: visible !important;
  }

  .bridge-phones-row {
    margin-bottom: -185px !important;
    align-items: flex-end !important;
  }

  .section-desain {
    padding-top: 225px !important;
    padding-bottom: 100px !important;
    overflow: visible !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section-mengapa {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .phone-bridge {
    margin-top: 70px !important;
    overflow: visible !important;
  }

  .bridge-phones-row {
    margin-bottom: -150px !important;
    align-items: flex-end !important;
  }

  .section-desain {
    padding-top: 195px !important;
    padding-bottom: 80px !important;
    overflow: visible !important;
  }
}

@media (max-width: 768px) {
  .section-mengapa {
    padding-top: 72px !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .phone-bridge {
    margin-top: 56px !important;
    overflow: visible !important;
  }

  .bridge-phones-row {
    margin-bottom: -160px !important;
    justify-content: center !important;
    align-items: flex-end !important;
  }

  .bridge-phone:not(.bridge-phone-center) {
    display: none !important;
  }

  .bridge-phone-center .phone-frame {
    width: 170px !important;
    transform: none !important;
  }

  .bridge-phone-center .phone-screen {
    height: 320px !important;
  }

  .section-desain {
    padding-top: 205px !important;
    padding-bottom: 72px !important;
    overflow: visible !important;
  }
}

@media (max-width: 480px) {
  .section-mengapa {
    padding-top: 76px !important;
    padding-bottom: 0 !important;
  }

  .bridge-phones-row {
    margin-bottom: -160px !important;
  }

  .section-desain {
    padding-top: 205px !important;
    padding-bottom: 76px !important;
  }
}

/* =========================================================
   CATALOG PAGE - POPUP CATEGORY DESIGN
   Revisi: Floral, Minimalis, Nusantara, Birthday
   ========================================================= */
body.modal-open {
  overflow: hidden;
}

.catalog-page {
  background: var(--white);
}

.catalog-hero {
  padding: 130px 24px 64px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 134, 74, 0.10), transparent 38%), var(--white);
  text-align: center;
  border-bottom: 1px solid #ede9e2;
}

.catalog-hero .ch-tag,
.catalog-modal-header .ch-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.catalog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-hero h1 em,
.catalog-cta h2 em {
  font-family: 'EdwardianScriptItc', cursive;
  font-style: italic;
  font-size: 1.2em;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
}

.catalog-hero p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 590px;
  margin: 0 auto;
  line-height: 1.7;
}

.catalog-category-section {
  padding: 76px 0 84px;
  background: #fbfaf7;
}

.catalog-section-heading {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.catalog-section-heading .section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.catalog-section-heading h2 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.08;
}

.catalog-section-heading p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.catalog-jumps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.jump-btn {
  min-height: 128px;
  padding: 22px 18px;
  border: 1px solid #e8dfd3;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.06);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.jump-btn:hover,
.jump-btn.active {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 20px 52px rgba(20, 20, 20, 0.16);
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.catalog-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.catalog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(8px);
}

.catalog-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(86vh, 860px);
  overflow-y: auto;
  border-radius: 32px;
  background: #fffdf9;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  padding: 38px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.catalog-modal.show .catalog-modal-dialog {
  transform: translateY(0) scale(1);
}

.catalog-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5ddd2;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.25s ease;
}

.catalog-modal-close:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.catalog-modal-close svg {
  width: 19px;
  height: 19px;
}

.catalog-modal-header {
  margin: -22px auto 28px;
  max-width: 620px;
  text-align: center;
}

.catalog-modal-header h2 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.catalog-modal-header p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-light);
  line-height: 1.7;
}

.catalog-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.design-card {
  min-width: 0;
  cursor: pointer;
}

.design-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  background: #f0ece6;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.09);
}

.design-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-card:hover .design-card-img img {
  transform: scale(1.045);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.design-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.card-overlay-btn {
  opacity: 0;
  transform: translateY(12px);
  padding: 11px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.design-card:hover .card-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.card-overlay-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.design-card-info {
  padding: 14px 4px 4px;
}

.design-card-name {
  margin-bottom: 5px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.design-card-preview {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c9864a;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.design-card-preview:hover {
  gap: 9px;
}

.design-card-preview svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.catalog-cta {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}

.catalog-cta h2 {
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
}

.catalog-cta p {
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .catalog-jumps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-hero {
    padding: 112px 20px 52px;
  }

  .catalog-category-section {
    padding: 56px 0 64px;
  }

  .catalog-jumps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jump-btn {
    min-height: 86px;
    border-radius: 22px;
  }

  .catalog-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .catalog-modal-dialog {
    max-height: 88vh;
    border-radius: 26px 26px 0 0;
    padding: 24px 16px 28px;
  }

  .catalog-modal-header {
    margin-top: -12px;
    margin-bottom: 22px;
  }

  .catalog-modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* =========================================================
   CATALOG PAGE - INLINE DESIGN LIST
   Revisi: klik tema menampilkan list desain di halaman, bukan popup.
   ========================================================= */
body.modal-open {
  overflow: auto;
}

.catalog-design-section {
  padding: 0 0 86px;
  background: #fbfaf7;
}

.catalog-design-header {
  max-width: 650px;
  margin: 0 auto 30px;
  text-align: center;
}

.catalog-design-header .ch-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.catalog-design-header h2 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.catalog-design-header p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-light);
  line-height: 1.7;
}

.catalog-design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-modal {
  display: none !important;
}

@media (max-width: 900px) {
  .catalog-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-design-section {
    padding: 0 0 64px;
  }

  .catalog-design-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================================
   UPDATE: HERO SINGLE BACKGROUND, ABOUT MOCKUP3, ICON ASSETS,
   BUTTON ARROWS, AND PORTFOLIO COUNTER
   ============================================================ */
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-dots,
.hero-dot {
  display: none !important;
}

.about-mockup {
  position: relative;
  width: min(520px, 100%);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.about-mockup img {
  width: min(520px, 100%);
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-mockup:hover img {
  transform: scale(1.035);
}

.mengapa-icon img,
.fitur-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mengapa-icon img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(560%) hue-rotate(4deg) brightness(92%) contrast(88%);
}

.fitur-icon img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(560%) hue-rotate(4deg) brightness(92%) contrast(88%);
}

.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-with-arrow span,
.portfolio-heading-link span {
  line-height: 1;
  transition: transform var(--transition);
}

.btn-with-arrow:hover span,
.portfolio-heading-link:hover span {
  transform: translateX(4px);
}

.portfolio-heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.portfolio-heading-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

.count-up {
  display: inline-block;
  min-width: 3.1ch;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero-background {
    background-image: url('../images/banners/Banner-Desktop.png') !important;
    background-position: center center;
  }

  .about-mockup {
    width: min(360px, calc(100vw - 40px));
    height: auto;
    min-height: 280px;
    margin: 0 auto;
  }

  .about-mockup img {
    width: 100%;
    max-height: 360px;
  }

  .portfolio-heading {
    gap: 10px;
  }

  .portfolio-heading-link {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   UPDATE CATALOG PAGE - HERO + DESIGN MENJADI 1 SECTION COMPACT
   ============================================================ */
.catalog-hero-with-design {
  padding: 116px 24px 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 134, 74, 0.13), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #fbfaf7 100%);
  border-bottom: 1px solid #ede9e2;
}

.catalog-hero-container {
  max-width: 1120px;
}

.catalog-hero-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.catalog-hero-with-design .catalog-hero-head h1 {
  margin-bottom: 14px;
}

.catalog-hero-category {
  max-width: 760px;
  margin: 0 auto 38px;
}

.catalog-section-heading.compact {
  margin-bottom: 18px;
}

.catalog-section-heading.compact .section-kicker {
  margin-bottom: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.catalog-section-heading.compact h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.catalog-hero-with-design .catalog-jumps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.catalog-hero-with-design .jump-btn {
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.055);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-hero-with-design .jump-btn:hover,
.catalog-hero-with-design .jump-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.14);
}


.catalog-hero-with-design .catalog-design-header {
  max-width: 640px;
  margin: 0 auto 22px;
  text-align: center;
}

.catalog-hero-with-design .catalog-design-header .ch-tag {
  margin-bottom: 9px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.catalog-hero-with-design .catalog-design-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.catalog-hero-with-design .catalog-design-header p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.catalog-hero-with-design .catalog-design-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.catalog-hero-with-design .design-card-img {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.085);
}

.catalog-hero-with-design .design-card-info {
  padding: 10px 2px 0;
}

.catalog-hero-with-design .design-card-name {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.catalog-hero-with-design .design-card-preview {
  font-size: 0.74rem;
}

.catalog-hero-with-design .card-overlay-btn {
  padding: 9px 18px;
  font-size: 0.68rem;
}

.catalog-hero-with-design + .catalog-cta {
  margin-top: 0;
}

@media (max-width: 900px) {
  .catalog-hero-with-design {
    padding: 108px 20px 64px;
  }

  .catalog-hero-with-design .catalog-jumps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .catalog-hero-with-design .catalog-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-hero-with-design {
    padding: 96px 16px 54px;
  }

  .catalog-hero-head {
    margin-bottom: 26px;
  }

  .catalog-hero-category {
    margin-bottom: 28px;
  }

  .catalog-hero-with-design .catalog-jumps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-hero-with-design .jump-btn {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .catalog-hero-with-design .catalog-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .catalog-hero-with-design .design-card-img {
    border-radius: 14px;
  }

  .catalog-hero-with-design .design-card-name {
    font-size: 0.82rem;
  }

  .catalog-hero-with-design .design-card-preview {
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  .catalog-hero-with-design .catalog-design-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  #hero .hero-background {
    background-image: url('../images/banners/Banner-Mobile.png') !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #050505 !important;
  }
}