/* Import font yang mirip */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #FAF1D6;
}

:root {
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --primary: #F5F1EB;     /* coklat santai*/
    --secondary: #F2D7C9;   /* nude peach → warmth */
    --accent: #E8B4B8;      /* soft rose → feminine energy */
    --dark: #3A3A3A;        /* teks utama */
    --glass-bg: rgba(74, 63, 53, 0.45); /* Cokelat transparan sesuai gambar */
    --light: #FAFAF8;       /* background */
}

h1 {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 600;
    color: var(--dark);
}

h2 {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 500;
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

p {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

}

/*======================
pembatas antar section
========================*/
.section-divider-wrapper {
    background-color: #FAF1D6;
    padding: 60px 0;
}

.section-divider {
    width: 1000px;
    height: 2px;
    background-color: #B3A27D;
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.8;
}

/*==================
efek scroll smooth
====================*/
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 100px;
}




/*============================= 
Landing page dashboard + jadwal
===============================*/
.hero {
    width: 100%;
    min-height: 100vh;
    margin-top: -90px; /* tinggi navbar */
    padding-top: 80px;
    
    /* Menggunakan path gambar asli*/
    background: url('/image/roxana-popovici-Zp4APUiwEsM-unsplash 1.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    padding: 120px 0; /* INI KUNCI */
}

.hero-glass {
    position: relative;
    z-index: 2;
    justify-content: center;

    width: 80%;
    max-width: 1100px;
    /* Glassmorphism Cokelat Gelap (Bukan Putih) */
    background: rgba(250, 241, 214, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(25px);
    
    border-radius: 32px;
    padding: 43px 30px;
    display: flex;
    gap: 40px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.hero-left {
    flex: 1.2;
}

.hero-subtitle {
    color: #FAF1D6;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px; /* Ukuran jumbo sesuai gambar */
    color: #FAF1D6; /* Font warna krem */
    line-height: 1.1;
    margin: 25px 0;
    font-weight: 400;
}

.hero-left p {
    color: #E0D6C5; /* Warna teks p lebih soft krem */
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.btn-primary {
    background: transparent;              /* transparan */
    color: #FAF1D6;                        /* teks putih krem */
    padding: 16px 38px;
    border-radius: 40px;

    border: 2px solid #FAF1D6;             /* border putih standar */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}



.btn-primary:hover {
    background: rgba(250, 241, 214, 0.15);
    transform: translateY(-2px);
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(250, 241, 214, 0.6); /* lebih putih */
    margin-bottom: 30px;
}
.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 241, 214, 0.3);
}



.hero-stats {
    display: flex;
    gap: 60px;
}
.stat-box strong {
    display: block;
    font-size: 30px;
    color: #FAF1D6;
}

.stat-box span {
    color: #FAF1D6; /* ganti dari soft ke putih */
    font-size: 10px;
    opacity: 0.85;
}

/* GLASS ACTION BAR */
.card-glass-action {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 4px 16px;

    background: rgba(0, 0, 0, 0.35); /* gelap transparan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 15px;

    color: #fff;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* HOVER FEEDBACK */
.card-glass-action:hover {
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}
.card-glass-action .category {
    font-size: 11px;
    opacity: 0.8;
}

.card-glass-action h4 {
    font-size: 16px;
    margin: 4px 0;
    font-weight: 500;
}

.card-glass-action p {
    font-size: 12px;
    opacity: 0.75;
    margin: 0;
}
.arrow-circle {
    background: #FAF1D6;
    color: #333;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* KARTU KANAN */
.hero-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.class-card {
    position: relative;
    width: 330px;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    z-index: 10;
}

.card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.category { font-size: 12px; opacity: 0.8; }
.card-info h4 { font-size: 18px; margin: 5px 0; }
.card-info p { font-size: 13px; opacity: 0.7; margin: 0; }

.arrow-circle {
    background: #FAF1D6;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* =========================
   FORCE HERO STATS COLOR
   ========================= */

.hero .hero-stats .stat-box strong {
    color: #FAF1D6 !important;
}

.hero .hero-stats .stat-box span {
    color: #FAF1D6 !important;
    opacity: 0.85;
}

/* =====================
   HERO MOBILE — CLEAN & UX FRIENDLY
===================== */
@media (max-width: 768px) {

    /* HERO BACKGROUND */
    .hero {
        min-height: unset;          /* ⛔ MATIKAN 100vh */
        height: auto;               /* ✅ ikut konten */
        padding: 48px 0 32px;       /* ✅ JANGAN GEDE */
        display: block;             /* ⛔ MATIKAN FLEX */
        margin-top: -60px;
        background-position: center center;
    }

    /* GLASS CONTAINER */
        .hero-glass {
        width: 92%;
        margin: 0 auto;
        padding: 22px 18px;         /* 🔥 kecilkan */
        gap: 20px;

        display: flex;
        flex-direction: column;

        max-height: 70vh;           /* ✅ KUNCI */
        overflow: hidden;           /* 🔥 STOP MEMANJANG */

        border-radius: 24px;
    }

    /* LEFT CONTENT */
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .hero-left h1 {
        font-size: 28px;
        line-height: 1.25;
        margin: 14px 0;
    }

    .hero-left p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
        max-width: 100%;
    }

    /* CTA BUTTON */
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 26px;
    }

    .btn-primary {
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
    }

    /* STATS — TETAP HORIZONTAL (JANGAN KOLUMN) */
    .hero-stats {
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }

    .stat-box strong {
        font-size: 20px;
    }

    .stat-box span {
        font-size: 10px;
    }

    /* RIGHT CARD */
    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .class-card {
        width: 100%;
        max-width: 280px;
        height: 230px;
        margin: 0 auto;
        border-radius: 22px;
    }

    /* GLASS ACTION BAR */
    .card-glass-action {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .card-glass-action h4 {
        font-size: 14px;
        margin: 2px 0;
    }

    .card-glass-action p {
        font-size: 11px;
    }

    .card-glass-action .category {
        font-size: 10px;
    }

    .arrow-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}



/* =========================
   EVENT & PROMO SECTION
========================= */
/* RESET */
* {
  box-sizing: border-box;
}
:root {
    --font-ui: 'Poppins', sans-serif;
    --font-serif: 'Belgiano Serif', serif;
}

.event-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #937B57, #FAF1D6);
    font-family: var(--font-ui);
}

/* CONTAINER */
.event-preview .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-bottom: 64px;
}
/* CONTAINER */
.event-preview .container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

/* TEXT */
.event-label {
    font-family: var(--font-ui);
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #2f2f2f;
}

.event-title {
    font-family: var(--font-ui);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #111;
}

.event-desc {
    font-family: var(--font-ui);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 12px;
    line-height: 1.7;
    color: #333;
}

.event-sub {
    font-family: var(--font-ui);
    font-size: 15px;
    margin-top: 26px;
    color: #333;
}

/* TEXT */
.event-preview .container p {
  color: #2e2e2e;
  font-family: var(--font-ui);
}

/* GRID — SAMA PERSIS */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 28px;
  justify-content: center;
}

/* CARD */
.event-preview .event-card {
    font-family: var(--font-serif);
}

.event-card {
  font-family: var(--font-serif); /* BELGIANO */
  padding: 26px 28px;
  border-radius: 22px;

  /* WARNA CARD SESUAI GAMBAR */
  background: transparent;

  border: 1.5px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);

  text-align: center;
}
.event-card:hover {
    transform: translateY(-2px);
}


/* BADGE */
.badge {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: block;
  color: rgba(0,0,0,0.75);
}

/* TITLE */
.title {
  font-family: var(--font-serif); /* BELGIANO */
  font-size: 30px;
  margin-bottom: 12px;
  color: rgba(0,0,0,0.75);
}
/* PRICE */
.price {
    font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.price span {
  font-size: 12px;
  color: rgba(0,0,0,0.5);
}

/* BENEFIT LIST */
.benefit {
    font-family: var(--font-ui);
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* ITEM */
.benefit li {
    font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(0,0,0,0.6);
}

/* CHECK ICON — INI KUNCI UTAMA */
.benefit .check {
  width: 14px;
  height: 14px;
  border-radius: 50%;

  background: rgba(0,0,0,0.45);
  position: relative;
}

/* CHECK MARK */
.benefit .check::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;

  width: 4px;
  height: 7px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {

    .event-preview {
        padding: 80px 0;
    }

    .event-preview .container {
        padding: 0 20px;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        padding: 24px;
    }

}

/* =================
   PAKET & HARGA
================= */

.pricing-section {
    margin-top:-30px;
    background: #FAF1D6;
    padding: 100px 0;
    text-align: center;
}

/* HEADER */
.pricing-header {
    max-width: 620px;
    margin: 0 auto 60px;
}

.pricing-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: #937B57;
}

.pricing-header h2 {
    font-size: 32px;
    color: #2F3E36;
    margin: 12px 0;
}

.pricing-header p {
    font-size: 15px;
    color: #4A5D52;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.pricing-card {
    background: transparent;
    border: 1.5px solid #8f8a7c;
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}/* =================
   PRICING CARD
================= */
.pricing-card {
    background: transparent;
    border: 1.5px solid #8f8a7c;
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CARD HEADER */
.pricing-card h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.pricing-card .desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

/* =================
   PRICE LIST (WRAPPER)
================= */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000;
}

/* =================
   PRICE OPTION (⬅️ DIUBAH: SATU-SATUNYA ELEMEN KLIK)
================= */
.price-option {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    margin-bottom: 12px;

    border-radius: 14px;
    border: 1.2px solid #8f8a7c;
    background: transparent;

    font-size: 14px;
    color: #000;

    cursor: pointer;                     /* ✅ CLICKABLE */
    text-align: left;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}

/* ⬅️ DIPINDAHKAN dari .price-list li:hover */
.price-option:hover {
    background: rgba(147, 123, 87, 0.08);
    border-color: #937B57;
    transform: translateY(-1px);
}

/* ⬅️ STATUS AKTIF (PILIHAN USER) */
.price-option.active {
    background: rgba(147, 123, 87, 0.15);
    border-color: #937B57;
}

/* =================
   PRICE TEXT STRUCTURE
================= */

/* ⬅️ DITAMBAHKAN: container kiri */
.price-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ⬅️ DITAMBAHKAN: container kanan */
.price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-list small {
    font-size: 11px;
    color: #888;
}

.price-list del {
    font-size: 11px;
    color: #aaa;
}

/* =================
   DIVIDER & BENEFIT
================= */
.pricing-card hr {
    border: none;
    border-top: 1px solid #8f8a7c;
    margin: 20px 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.benefit-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px
}
.benefit-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: #444;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* HIGHLIGHT CARD */
.pricing-card.highlight {
    background: linear-gradient(
        to bottom,
        rgba(147,123,87,0.15),
        #FAF1D6
    );
}


/* =================
   RESPONSIVE
================= */

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 22px;
    }

    .promo-box {
        gap: 20px;
    }

    .btn-select {
        text-align: center;
    }
}


/*===============
About Preview
================*/
.hero-stats {
    margin-top: -10px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.hero-stats strong {
    font-size: 28px;
    color: #333;
}

.hero-stats span {
    display: block;
    font-size: 13px;
    color: #777;
}

.btn-secondary {
    margin-left: auto;
    padding: 12px 28px;
    background: #6F8F7A;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

/*================
ABOUT SECTION
==================*/

.about-preview {
    padding: 100px 0;
    background: #FAF1D6;
}

.about-layout {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}
.about-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 32px;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #333;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
    max-width: 520px;
}

/* IMAGE */
.about-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
/* RESPONSIVE MOBILE*/
@media (max-width: 768px) {

    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
        align-items: start;        /* ✅ penting */
    }

}
@media (max-width: 768px) {

    .about-title {
        font-size: 26px;
        line-height: 1.3;
        text-align: left;          /* dashboard-style */
    }

    .about-desc {
        font-size: 14px;
        line-height: 1.7;

        max-width: 100%;           /* ✅ HAPUS BATAS */
    }

}
@media (max-width: 768px) {

    .about-card img {
        height: 240px;             /* ✅ lebih proporsional */
        border-radius: 20px;
    }

}
@media (max-width: 768px) {

    .about-preview {
        padding: 60px 0;           /* dashboard ≠ landing */
    }

}



/* =================
   FASILITAS PREVIEW
=================== */
.fasilitas-preview {
    padding: 100px 0;
    background: #FAF1D6;
    text-align: center;
}

.fasilitas-preview .container {
    max-width: 1728px;
    margin: 0 auto;
}

/* LABEL */
.section-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B7A4A;
    margin-bottom: 12px;
}

/* TITLE */
.fasilitas-preview h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 64px;
    color: #2F3E36;
}

/* GRID */
.fasilitas-grid {
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.fasilitas-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.fasilitas-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* OVERLAY TEXT */
.fasilitas-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.70),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.05)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
}

/* TITLE OVER IMAGE */
.fasilitas-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* DESCRIPTION */
.fasilitas-text p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 95%;
}

/* HOVER EFFECT */
.fasilitas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.fasilitas-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fasilitas-grid {
        grid-template-columns: 1fr;
    }

    .fasilitas-preview h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {

    .fasilitas-preview {
        padding: 70px 0;
    }

    .fasilitas-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 24px;
    }

}


/* =================
   COACH PREVIEW
================= */

.coach-preview {
    padding: 120px 0;
    background: #FAF1D6;
    text-align: center;
}

/* container */
.coach-preview .container {
    max-width: 1200px;
    margin: auto;
}
.coach-name {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2F3E36;
    text-align: center;
    background: #FAF1D6;
}
/* label kecil: "Coach" */
.coach-preview h2 {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2px;
    font-weight: 500;
    margin-top: -10px;
}

/* headline utama */
.coach-preview p {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin-bottom: 64px;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.coach-card {
    overflow: hidden;
    border-radius: 24px;
}

.coach-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* hover halus */
.coach-card:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {

    .coach-preview {
        padding: 80px 0;
    }

    .coach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .coach-card img {
        height: 300px;
    }

}






/*=========
FAQ SECTION
==========*/

.faq-preview {
    background-color: #FAF1D6; /* Background luar putih */
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    margin-up: -10px;
}
.faq-preview .container {
    background: transparent;
}

.faq-preview .container {
    background-color: #FAF1D6;
}
.faq-preview .container {
    padding: 0 20px;
}


.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header p {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #333;
}
.faq-header h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #B3A27D; /* Warna cokelat muda sesuai gambar */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Animasi Hover */
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
    background-color: rgba(255, 255, 255, 0.1); /* Sedikit kontras dalam folder */
}

/* Ketika FAQ Aktif/Diklik */
.faq-item.active .faq-answer {
    max-height: 200px; /* Atur sesuai kebutuhan */
    padding-bottom: 25px;
}

@media (max-width: 768px) {

    .faq-preview {
        padding: 60px 0;
    }

    .faq-list {
        padding: 0 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 14px;
    }

}

/* CTA SECTION */
.cta {
    background-color: #937B57; /* Warna cokelat gelap bawah */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta h2 {
    color: #FFFBEF;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 10px;
}

.cta p {
    color: #FFFBEF;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {

    .cta h2 {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 14px;
    }

}


.btn-primary {
    background-color: #FAF1D6; /* Kode warna request Anda */
    color: #4A3F35;
    padding: 15px 50px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/*======================
pembatas bawah section
========================*/
.section-bawah {
    background-color: #FAF1D6;
    padding: 30px 0;
}

/*==============
navbar menu atas
================*/
.navbar {
    width: 100%;
    margin-top: -10px;
    position: relative; /* ikut scroll */
    background-color: #FFFBEF;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    pointer-events: auto;
}

.navbar-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 50px;
}
.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #3A3A3A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f7f6f2;
}
.user-menu {
    position: relative;
}
.nav-menu li button.btn-login {
    background: transparent;
    
    border-radius: 9px;
    border: 1.5px solid #937B57;
    padding: 7px 26px;
    font-size: 14px;
    cursor: pointer;
    color: #3A3A3A;
}
.btn-login:hover{
    transform: scale(1.05);
}
.nav-menu li {
    display: flex;
    align-items: center;
}


.user-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}


.user-menu:hover .user-dropdown {
    display: block;
}

/* HAMBURGER BUTTON */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #3A3A3A;
}
@media (max-width: 768px) {
    .navbar-container {
        position: relative;
    }
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;

        width: 100%;
        background: #FFFBEF;

        flex-direction: column;
        gap: 0;

        display: none;
        padding: 20px 0;

        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 14px 24px;
    }

    .nav-menu a {
        font-size: 16px;
    }

}


/*============
footer bawah
==============*/
.footer {
    background-color: #3C3B39; /* sage green */
    color: #f7f6f2;
    padding: 40px 60px 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    font-size: 20px;
    margin-bottom: 9px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: #f0efe9;
}
.footer h3 {
    font-size: 15px;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    font-size: 14px;
    margin-bottom: 12px;
}
.footer a {
    color: #f7f6f2;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 0.8;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 10px;
    color: #eae9e2;
}

@media (max-width: 768px) {

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/*=============
SIDE BAR LOGIN
==============*/
