/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');


/* =========================
   START PAGE
========================= */

.start-page{
  min-height:100vh;
  background:#f7f3ee;
  color:#2b211b;
  position:relative;
  overflow-x:hidden;

  font-family:'Inter', sans-serif;
}

/* =========================
   NAVBAR
========================= */

.start-nav{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  z-index:20;

  width:min(1240px, calc(100vw - 56px));
  height:90px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  height:46px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-links a{
  text-decoration:none;
  color:#5d4b3f;
  font-weight:600;

  padding:12px 22px;
  border-radius:999px;

  background:rgba(255,255,255,0.28);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.35);

  transition:.25s ease;
}

.nav-links a:hover{
  background:rgba(255,255,255,0.45);
  color:#c7954e;
}


/* =========================
   HERO
========================= */

.start-hero{
  position:relative;

  width:100%;
  min-height:100vh;

  display:flex;
  align-items:center;

  overflow:hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(248,244,236,0.97) 0%,
      rgba(248,244,236,0.92) 28%,
      rgba(248,244,236,0.55) 52%,
      rgba(248,244,236,0.12) 72%,
      rgba(248,244,236,0.02) 100%
    ),
    url("assets/images/hero/start-hero-bg.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  background-attachment:fixed;
}

.start-hero-content{
  position:relative;
  z-index:5;

  width:min(1240px, calc(100vw - 56px));
  margin:0 auto;

  padding-top:100px;
  padding-bottom:100px;
}


/* =========================
   HERO BADGE
========================= */

.start-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 22px;

  border-radius:999px;

  background:rgba(255,255,255,0.62);
  backdrop-filter:blur(14px);

  color:#b6803c;

  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;

  box-shadow:
  0 10px 30px rgba(0,0,0,.04);
}


/* =========================
   HERO TITLE
========================= */

.start-hero h1{
  margin-top:24px;
  margin-bottom: 24px;

  max-width:700px;

  font-family:'Cormorant Garamond', serif;

  font-size:92px;
  line-height:.95;
  letter-spacing:-.05em;

  color:#2c2119;
}

.start-hero h1 span{
  color:#c58a3d;
}


/* =========================
   HERO DESCRIPTION
========================= */

.start-hero p{
  margin-top:6px;

  max-width:780px;

  font-size:24px;
  line-height:1.5;

  color:#5f5348;
}

/* =========================
   HERO FEATURES
========================= */

.hero-features{
    display:flex;
    align-items:flex-start;
    gap:42px;

    margin-top:16px !important;
    flex-wrap:wrap;
}

.hero-feature{
    display:flex;
    align-items:flex-start;
    gap:14px;

    min-width:220px;
}

.hero-feature-icon{
    width:44px;
    height:44px;

    border-radius:14px;

    background:rgba(255,255,255,.55);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    backdrop-filter:blur(10px);

    color:#c68a3d;

    flex-shrink:0;
}

.hero-feature-text strong{
    display:block;

    font-size:18px;
    font-weight:700;

    color:#2f241d;

    margin-bottom:4px;
}

.hero-feature-text span{
    font-size:15px;
    line-height:1.6;

    color:#6d6055;
}

.hero-feature-text span{
  color:#65594d;
  line-height:1.7;
}


/* =========================
   PACKAGE SECTION
========================= */

.package-section{
  position:relative;
  z-index:10;

  margin-top:-30px;
  padding-bottom:120px;
}


/* =========================
   PACKAGE GRID
========================= */

.package-grid{
  width:min(1240px, calc(100vw - 56px));
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);

  gap:30px;

  align-items:stretch;
}


/* =========================
   PACKAGE CARD
========================= */

.package-card{
  position:relative;

  background:rgba(255,255,255,0.82);

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,.7);

  border-radius:34px;

  padding:40px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.06),
    0 8px 20px rgba(199,149,78,.08);

  transition:.35s ease;
}

.package-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 30px 70px rgba(0,0,0,.08),
    0 0 0 1px rgba(199,149,78,.12);
}

.package-card.featured{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.95),
      rgba(255,249,241,.88)
    );

  border:1px solid rgba(199,149,78,.22);
}


/* =========================
   PACKAGE BADGE
========================= */

.package-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(199,149,78,.10);

  color:#b47d39;

  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}


/* =========================
   PACKAGE TITLE
========================= */

.package-card h2{
  margin-top:30px;
  margin-bottom:18px;

  font-family:'Cormorant Garamond', serif;

  font-size:52px;
  line-height:1;
  letter-spacing:-.04em;

  color:#2e221b;
}


/* =========================
   PACKAGE TEXT
========================= */

.package-card p{
  color:#67594d;

  line-height:1.9;
  font-size:17px;
}


/* =========================
   PACKAGE LIST
========================= */

.package-card ul{
  margin-top:30px;
  padding-left:20px;

  display:flex;
  flex-direction:column;
  gap:16px;
}

.package-card li{
  color:#4f4238;
  line-height:1.5;
}


/* =========================
   BUTTON
========================= */

.package-btn{
  margin-top:auto;

  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  height:58px;

  border-radius:18px;

  background:#e6d3b8;

  color:#5b493d;

  text-decoration:none;
  font-weight:700;

  transition:.25s ease;
}

.package-btn:hover{
  transform:translateY(-2px);

  background:#ead9bf;
}

.package-btn.dark{
  background:#6d5546;
  color:white;
}

.package-btn.dark:hover{
  background:#1f1814;
}


/* =========================
   FOOTER CTA
========================= */

.start-footer-cta{
  width:min(900px, calc(100vw - 56px));
  margin:80px auto 0;

  text-align:center;
}

.start-footer-cta p{
  color:#a46c28;

  font-weight:800;
  font-size: 24px;
  margin-bottom:20px;
}

.start-footer-cta h2{
  font-family:'Cormorant Garamond', serif;

  font-size:56px;
  line-height:1.1;
  letter-spacing:-.04em;

  margin-bottom:36px;

  color:#4b3829;
}

.footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:60px;
  padding:0 36px;

  border-radius:999px;

  background:#2f241d;
  color:white;

  text-decoration:none;
  font-weight:700;

  transition:.25s ease;
}

.footer-btn:hover{
  transform:translateY(-2px);

  background:#1f1814;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .start-hero h1{
    font-size:72px;
  }

  .package-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .start-nav{
    width:calc(100vw - 32px);
  }

  .start-hero-content{
    width:calc(100vw - 32px);
    padding-top:120px;
  }

  .start-hero h1{
    font-size:56px;
  }

  .start-hero p{
    font-size:18px;
  }

  .hero-features{
    flex-direction:column;
  }

}

@media(max-width:640px){

  .start-nav{
    height:auto;

    padding-top:22px;

    flex-direction:column;
    gap:18px;
  }

  .start-hero{
    background-attachment:scroll;
  }

  .start-hero h1{
    font-size:46px;
  }

  .package-card{
    padding:30px;
  }

  .package-card h2{
    font-size:42px;
  }

  .start-footer-cta h2{
    font-size:42px;
  }

}

/* =========================
   FINAL FIXES
========================= */

.start-star{
  display:inline-block;

  margin-left:8px;

  color:#d4a04f;

  transform:
    scaleX(.58)
    rotate(45deg);

  font-size:.75em;

  position:relative;
  top:-2px;
}

.package-section{
  position:relative;
  z-index:10;

  margin-top:-50px;

  background:transparent !important;
}

.package-grid{
  background:transparent !important;

  width:min(1240px, calc(100vw - 56px));

  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);

  gap:30px;
}

.package-card{
  min-height:100%;
}

.start-footer-cta{
  padding-bottom:80px;
}


/* =========================
   HERO MOBILE
========================= */

@media(max-width:768px){

  .start-hero{
    background-position:72% center;
  }

  .start-hero h1{
    max-width:100%;
  }

  .hero-features{
    margin-top:42px;
  }

}


/* =========================
   MOBILE PACKAGE
========================= */

@media(max-width:980px){

  .package-section{
    margin-top:-40px;
  }

  .package-grid{
    grid-template-columns:1fr;
  }

}

.start-page{
  background:transparent !important;
  position:relative;
}

.start-page::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;

  background-image:
    linear-gradient(
      90deg,
      rgba(227, 212, 191, 0.97) 0%,
      rgba(248,244,238,.90) 32%,
      rgba(253, 252, 250, 0.3) 58%,
      rgba(248,244,238,.05) 100%
    ),
    url("assets/images/hero/start-hero-bg.jpeg");

  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}

.start-hero{
  background:none !important;
}

.package-section,
.package-grid,
.start-footer-cta{
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
}

.package-card{
  background:rgba(255,255,255,.72) !important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.hero-features{
    display:flex !important;
    flex-direction:row !important;
    align-items:flex-start;
    gap:42px;

    margin-top:52px;

    flex-wrap:wrap;
}

.hero-feature{
    display:flex;
    align-items:flex-start;
    gap:14px;

    min-width:220px;
}

.hero-feature-icon{
    width:44px;
    height:44px;

    border-radius:14px;

    background:rgba(255,255,255,.55);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    backdrop-filter:blur(10px);

    color:#c68a3d;

    flex-shrink:0;
}

.hero-feature-text strong{
    display:block;

    font-size:18px;
    font-weight:700;

    color:#2f241d;

    margin-bottom:4px;
}

.hero-feature-text span{
    font-size:15px;
    line-height:1.5;

    color:#27221d;
}

/* FIX HERO FEATURES - 3 COLUMNS */
.hero-features{
  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:22px !important;
  max-width:980px !important;
  margin-top:42px !important;
}

.hero-feature{
  display:flex !important;
  align-items:flex-start !important;
  gap:12px !important;
  min-width:0 !important;
}

.hero-feature-icon{
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  border-radius:12px !important;
  font-size:15px !important;
}

.hero-feature-text strong{
  font-size:15px !important;
  margin-bottom:3px !important;
}

.hero-feature-text span{
  font-size:13px !important;
  line-height:1.45 !important;
}

/* mobile tetap turun satu-satu */
@media(max-width:700px){
  .hero-features{
    grid-template-columns:1fr !important;
  }
}

.package-card{
  display:flex;
  flex-direction:column;
}

.package-btn{
  margin-top:auto;
}

