/**
* Template Name: Gp
* Template URL: racketttps://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Oct 2025 (custom merge Services + Portfolio)
* Author: BootstrapMade.com + Custom
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif; /* dipakai juga untuk Services */
}

/* Global Colors */
:root {
  --background-color: #fff;
  --default-color: #444444;
  --heading-color: #ffffff;
  --accent-color: #3E1E04;
  --surface-color: #ffffff;
  --contrast-color: #312f2f;
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);
  --nav-hover-color: #ffc451;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #ffc451;
}

/* Color Presets */
.light-background { --background-color: #f9f9f9; --surface-color: #ffffff; }
.dark-background  { --background-color: #060606; --default-color: #ffffff; --heading-color: #ffffff; --surface-color: #252525; --contrast-color: #2a2727; }

/* Smooth scroll */
:root { scroll-behavior: smooth; }

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body { color: var(--default-color); background-color: var(--background-color); font-family: var(--default-font); }
a { color: var(--accent-color); text-decoration: none; transition: 0.3s; }
p { color: var(--surface-color); }
a:hover { color: color-mix(in srgb, var(--accent-color), transparent 25%); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { color: var(--heading-color); font-family: var(--heading-font); }

/* Reusable button (dipakai Services/Portfolio) */
.btn-outline-gold{
  --gold-border:#DDAB35; --gold-text:#91660C; --gold-hover:#91660C; --gold-active:#553d0f;
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 16px; font-weight:600; font-size:16px; line-height:1;
  color:var(--gold-text) !important; background:transparent !important;
  border:1.5px solid var(--gold-border) !important; text-decoration:none;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-outline-gold:hover,.btn-outline-gold:focus-visible{ background:var(--gold-hover) !important; border-color:var(--gold-hover) !important; color:#fff !important; box-shadow:0 0 0 3px rgba(145,102,12,.18); }
.btn-outline-gold:active{ background:var(--gold-active) !important; border-color:var(--gold-active) !important; color:#fff !important; }

/* PHP Email Form Messages */
.php-email-form .error-message{ display:none; background:#df1529; color:#fff; text-align:left; padding:15px; margin-bottom:24px; font-weight:600; }
.php-email-form .sent-message{ display:none; color:#fff; background:#059652; text-align:center; padding:15px; margin-bottom:24px; font-weight:600; }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo{ line-height:1; }
.header .logo img{ max-height:36px; margin-right:8px; }
.header .logo h1{ font-size:32px; margin:0; font-weight:700; color:var(--heading-color); }
.header .logo span{ color:var(--accent-color); font-size:32px; }
.header .btn-getstarted,.header .btn-getstarted:focus{
  color:var(--contrast-color); font-size:14px; padding:8px 30px; margin:0 0 0 30px; border-radius:4px; transition:.3s; border:2px solid var(--accent-color);
}
.header .btn-getstarted:hover,.header .btn-getstarted:focus:hover{ color:var(--default-color); background:var(--accent-color); }
@media (max-width:1200px){
  .header .logo{ order:1; }
  .header .btn-getstarted{ order:2; margin:0 15px 0 0; padding:6px 15px; }
  .header .navmenu{ order:3; }
}
.scrolled .header{ box-shadow:0 0 18px rgba(0,0,0,.1); }
.index-page .header{}
.index-page.scrolled .header{ --background-color: rgba(0,0,0,0.8); }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width:1200px){
  .navmenu{ padding:0; }
  .navmenu ul{ margin:0; padding:0; display:flex; list-style:none; align-items:center; }
  .navmenu li{ position:relative; }
  .navmenu a,.navmenu a:focus{
    color:var(--nav-color); padding:18px 15px; font-size:16px; font-family:var(--nav-font); font-weight:400;
    display:flex; align-items:center; justify-content:space-between; white-space:nowrap; transition:.3s;
  }
  .sitename{ letter-spacing:.01em; }
  .navmenu a i,.navmenu a:focus i{ font-size:12px; line-height:0; margin-left:5px; transition:.3s; }
  .navmenu li:last-child a{ padding-right:0; }
  .navmenu li:hover>a,.navmenu .active,.navmenu .active:focus{ color:var(--nav-hover-color); }

  .navmenu .dropdown ul{
    margin:0; padding:10px 0; background:var(--nav-dropdown-background-color);
    display:block; position:absolute; visibility:hidden; left:14px; top:130%;
    opacity:0; transition:.3s; border-radius:0; z-index:99; box-shadow:0 0 30px rgba(0,0,0,.1);
  }
  .navmenu .dropdown ul li{ min-width:200px; }
  .navmenu .dropdown ul a{ padding:10px 20px; font-size:15px; text-transform:none; color:var(--nav-dropdown-color); }
  .navmenu .dropdown ul a i{ font-size:12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a{ background-color:var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover>ul{ opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul{ top:0; left:-90%; visibility:hidden; }
  .navmenu .dropdown .dropdown:hover>ul{ opacity:1; top:0; left:-100%; visibility:visible; }
}
/* Mobile */
@media (max-width:1199px){
  .mobile-nav-toggle{ color:var(--nav-color); font-size:28px; line-height:0; margin-right:10px; cursor:pointer; transition: color .3s; }
  .navmenu{ padding:0; z-index:9997; }
  .navmenu ul{
    display:none; list-style:none; position:absolute; inset:60px 20px 20px 20px;
    padding:10px 0; margin:0; border-radius:6px; background:var(--nav-mobile-background-color);
    overflow-y:auto; transition:.3s; z-index:9998; box-shadow:0 0 30px rgba(0,0,0,.1);
  }
  .navmenu a,.navmenu a:focus{
    color:var(--nav-dropdown-color); padding:10px 20px; font-family:var(--nav-font);
    font-size:17px; font-weight:500; display:flex; align-items:center; justify-content:space-between; white-space:nowrap; transition:.3s;
  }
  .navmenu a i,.navmenu a:focus i{
    font-size:12px; line-height:0; margin-left:5px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:50%;
    transition:.3s; background:color-mix(in srgb, var(--accent-color), white 90%);
  }
  .navmenu a i:hover,.navmenu a:focus i:hover{ background:color-mix(in srgb, var(--accent-color), white 90%); }
  .navmenu a:hover,.navmenu .active,.navmenu .active:focus{ background:var(--nav-dropdown-hover-color); }
  .navmenu .active i,.navmenu .active:focus i{ transform:rotate(180deg); }
  .navmenu .dropdown ul{
    position:static; display:none; z-index:99; padding:10px 0; margin:10px 20px; background:var(--nav-dropdown-background-color);
    border:1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow:none; transition:all .5s ease-in-out;
  }
  .navmenu .dropdown ul ul{ background-color: rgba(33,37,41,0.1); }
  .navmenu .dropdown>.dropdown-active{ display:block; background-color: rgba(33,37,41,0.03); }
  .mobile-nav-active{ overflow:hidden; }
  .mobile-nav-active .mobile-nav-toggle{ color:#fff; position:absolute; font-size:32px; top:15px; right:15px; margin-right:0; z-index:9999; }
  .mobile-nav-active .navmenu{ position:fixed; overflow:hidden; inset:0; background:rgba(33,37,41,0.8); transition:.3s; }
  .mobile-nav-active .navmenu>ul{ display:block; }
}

/* ================= Footer ================= */
#footer{
  --bg:#000000; --text:#e9e9e9; --muted:#bfbfbf; --gold:#DDAB35; --gold-deep:#91660C;
  background:#000; color:var(--text); font-size:14px;
}
#footer .footer-top{ background:var(--bg); padding:48px 0 36px; }
#footer .sitename{ font-size:28px; font-weight:800; color:#fff; letter-spacing:.5px; }
#footer .about-text{ color:#dcdcdc; max-width:26rem; }
#footer .social-inline,#footer .social-links{ display:flex; gap:14px; align-items:center; }
#footer .social-inline a,#footer .social-links a{ color:var(--gold); font-size:20px; line-height:1; transition: transform .15s ease, color .15s ease; }
#footer .social-inline a:hover,#footer .social-links a:hover{ transform: translateY(-2px); color:#f1c85a; }
#footer h4{ color:#fff; font-weight:700; font-size:18px; margin:0 0 12px; }
#footer .footer-links ul{ list-style:none; padding:0; margin:0; }
#footer .footer-links li{ display:flex; gap:8px; align-items:center; padding:6px 0; }
#footer .footer-links li i{ color: var(--gold); font-size:12px; }
#footer .footer-links a,#footer .contact-list a,#footer .footer-legal a,#footer .footer-contact a,#footer .credits a{
  color:#ffffff !important; text-decoration:none; transition: color .15s ease;
}
#footer .footer-links a:hover,#footer .footer-links a:focus,#footer .footer-links a:active,
#footer .contact-list a:hover,#footer .footer-legal a:hover,#footer .footer-contact a:hover,#footer .credits a:hover{ color:var(--gold) !important; }
#footer .contact-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
#footer .contact-list li{ display:flex; gap:10px; align-items:flex-start; }
#footer .contact-list i{ color: var(--gold); margin-top:2px; }
#footer .footer-divider{ height:1px; background: rgba(255,255,255,.2); }
#footer .footer-bottom{ background:var(--bg); padding:14px 0 22px; text-align:center; }
#footer .footer-bottom .sitename{ color: var(--gold); font-weight:800; font-size:16px; }
#footer .footer-legal{ list-style:none; display:flex; gap:24px; padding:0; margin:0; }
@media (min-width:768px){ #footer .footer-about{ padding-right:24px; } }
@media (max-width:575px){ #footer .social-inline a{ font-size:16px; } #footer .footer-legal{ gap:14px; flex-wrap:wrap; justify-content:center; } }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader{ position:fixed; inset:0; z-index:999999; overflow:hidden; background:#FDFAF6; transition: all .6s ease-out; }
#preloader:before{
  content:""; position:fixed; top:calc(50% - 30px); left:calc(50% - 30px);
  border:6px solid #fff; border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius:50%; width:60px; height:60px; animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader{ 0%{ transform:rotate(0deg);} 100%{ transform:rotate(360deg);} } */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top{ position:fixed; visibility:hidden; opacity:0; right:15px; bottom:15px; z-index:99999; background:var(--accent-color); width:40px; height:40px; border-radius:4px; transition: all .4s; }
.scroll-top i{ font-size:24px; color:var(--contrast-color); line-height:0; }
.scroll-top:hover{ background: color-mix(in srgb, var(--accent-color), transparent 20%); color:var(--contrast-color); }
.scroll-top.active{ visibility:visible; opacity:1; }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width:768px){ [data-aos-delay]{ transition-delay:0 !important; } }

/*--------------------------------------------------------------
# Page Titles
--------------------------------------------------------------*/
.page-title{ color:var(--default-color); background:var(--background-color); position:relative; }
.page-title .heading{ padding:80px 0; border-top:1px solid color-mix(in srgb, var(--accent-color)); }
.page-title .heading h1{ color:var(--accent-color); font-size:38px; font-weight:700; letter-spacing:.02em; }
.page-title .heading p{ color:var(--accent-color); }
.page-title nav{ background: color-mix(in srgb, var(--accent-color), transparent 95%); padding:20px 0; }
.page-title nav ol{ display:flex; flex-wrap:wrap; list-style:none; margin:0; padding:0; font-size:16px; font-weight:400; }
.page-title nav ol li+li{ padding-left:10px; color:var(--accent-color); }
.page-title nav ol li a{ color:#444; }
.page-title nav ol li+li::before{ content:"/"; display:inline-block; padding-right:10px; color:var(--default-color); }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,.section{ color:var(--default-color); background:var(--background-color); padding:60px 0; scroll-margin-top:80px; overflow:clip; }
@media (max-width:1199px){ section,.section{ scroll-margin-top:58px; } }

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title{ padding-bottom:60px; position:relative; }
.section-title h2{ font-size:14px; font-weight:500; padding:0; line-height:1px; margin:0; letter-spacing:1.5px; text-transform:uppercase; color:#3E1E04; position:relative; }
.section-title h2::after{ content:""; width:120px; height:1px; display:inline-block; background:var(--accent-color); margin:4px 10px; }
.section-title p{ color:#3E1E04; margin:0; font-size:36px; font-weight:700; text-transform:uppercase; }

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero – Padel Style (fix white curve + racket)
--------------------------------------------------------------*/
.hero{
  width:100%;
  background:#fff;
  padding:110px 0 80px;
  display:flex;
  align-items:center;
}
.hero .container{position:relative;z-index:1;}

/* MATIKAN SHAPE LENGKUNG DI SECTION INI SAJA */
#hero.dark-background::before,
#hero.dark-background::after,
#hero.section::before,
#hero.section::after{
  content:none !important;
}

/* ------ GRID UTAMA: 2 KOLOM ------ */
.hero-wrapper{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1.8fr);
  gap:40px;
  align-items:center;
}

/* ------ KIRI: TEKS ------ */
.hero-left-kicker{font-size:14px;font-weight:600;letter-spacing:.25em;text-transform:uppercase;color:#111;margin-bottom:8px;}
.hero-title{font-size:58px;line-height:.95;font-weight:800;text-transform:uppercase;color:#111;}
.hero-title span{display:block;}
.hero-subtext{margin-top:18px;font-size:15px;line-height:1.6;color:#555;max-width:340px;}

/* ------ KARTU BOOK ONLINE ------ */
.hero-book-card{
  margin-top:30px;
  max-width:370px;
  background:#c8ff2b;
  /* tambah padding kiri agar muat raket */
  padding:22px 22px 26px 100px;
  position:relative;
  clip-path:polygon(0 0,86% 0,100% 50%,86% 100%,0 100%);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}
.hero-book-label{font-size:22px;font-weight:800;text-transform:uppercase;line-height:1.05;color:#111;}
.hero-book-text{font-size:12px;margin-top:12px;color:#222;}

.hero-book-racket{
  position:absolute;
  left:18px;
  bottom:6px;          /* ↓ turunin supaya tidak kepotong atas */
  height:110px;        /* ↓ sedikit lebih kecil agar muat semua */
  transform:rotate(-6deg);
  pointer-events:none;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.25));
  z-index:1;
}

/* badge 25% off */
.hero-discount-badge{
  position:absolute;
  left:26px;
  bottom:16px;
  width:70px;height:70px;border-radius:50%;
  border:4px solid #c8ff2b;background:#111;
  display:flex;align-items:center;justify-content:center;text-align:center;
  z-index:2;
}
.hero-discount-badge span{font-size:13px;font-weight:800;color:#c8ff2b;text-transform:uppercase;line-height:1.1;}

/* ------ KANAN: GAMBAR KOMPOSIT (tanpa radius/shadow) ------ */
.hero-right{display:flex;justify-content:flex-end;}
.hero-visual{position:relative;width:100%;max-width:560px;}
.hero-visual-frame{border-radius:0;overflow:hidden;box-shadow:none;}
.hero-visual-frame img{width:100%;height:auto;display:block;}

/* ================== RESPONSIVE ================== */
@media (max-width:1199.98px){
  .hero{padding-top:90px;}
  .hero-title{font-size:48px;}
}
@media (max-width:991.98px){
  .hero-wrapper{grid-template-columns:1fr;row-gap:40px;}
  .hero-right{order:1;justify-content:center;}
  .hero-left{order:2;}
}
@media (max-width:767.98px){
  .hero{padding:80px 0 60px;}
  .hero-title{font-size:36px;}
  .hero-subtext{font-size:14px;max-width:100%;}
  .hero-book-card{margin-top:24px;padding:18px 18px 22px 86px;max-width:100%;}
  .hero-book-racket{height:96px;bottom:18px;}
  .hero-visual{max-width:100%;}
}

/* --------------------------------------------------------------
# Padel Plans
--------------------------------------------------------------*/
.padel-plans{
  --neon:#c8ff2b;
  --dark:#050b1c;
  --ink:#050505;
  --muted:#555;
  margin-top:0;
  background:var(--neon);
  padding-top:clamp(40px,7vw,80px);
  padding-bottom:clamp(40px,7vw,80px);
}

/* seluruh isi section center */
.padel-plans .container{
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
}

.padel-plans .plans-inner{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:60px;
  align-items:center;
}

/* ----------------- KANAN: KARTU PACKAGE ----------------- */
.padel-plans .plans-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* kartu utama (Mahal Package) */
.padel-plans .plans-main-card{
  position:relative;
  max-width:420px;
  background:var(--dark);
  color:#fff;
  padding:24px 28px 26px;
  border-radius:18px;
  clip-path:polygon(0 0,92% 0,100% 18%,100% 100%,0 100%);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.padel-plans .plans-main-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.padel-plans .plans-main-title{
  font-size:22px;
  font-weight:700;
  margin:0 0 14px;
}
.padel-plans .plans-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}
.padel-plans .plans-pill{
  font-size:11px;
  font-weight:600;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
}
.padel-plans .plans-main-bottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.padel-plans .plans-main-btn{
  border:none;
  outline:none;
  cursor:pointer;
  padding:10px 18px;
  border-radius:999px;
  background:var(--neon);
  color:#000;
  font-size:13px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition:transform .18s ease,box-shadow .18s ease;
}
.padel-plans .plans-main-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(0,0,0,.4);
}
.padel-plans .plans-main-price{text-align:right;}
.padel-plans .plans-main-price .amount{
  display:block;
  font-size:34px;
  font-weight:800;
  line-height:1;
}
.padel-plans .plans-main-price .unit{
  font-size:11px;
  opacity:.85;
}

/* ACCORDION */
.padel-plans .plans-accordion{
  max-width:360px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
  overflow:hidden;
}
.padel-plans .plans-accordion + .plans-accordion{margin-top:12px;}
.padel-plans .plans-acc-header{
  width:100%;
  border:0;
  background:transparent;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.padel-plans .plans-acc-title{
  font-size:16px;
  font-weight:700;
  color:var(--ink);
}
.padel-plans .plans-acc-icon{
  font-size:20px;
  font-weight:700;
  line-height:1;
  color:#000;
}
.padel-plans .plans-acc-icon .icon-minus{display:none;}
.padel-plans .plans-acc-body{
  padding:0 18px 14px;
  font-size:13px;
  line-height:1.6;
  color:#333;
  border-top:1px solid rgba(0,0,0,.06);
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.padel-plans .plans-acc-body p{margin:10px 0 6px;}
.padel-plans .plans-acc-body ul{
  padding-left:18px;
  margin:0;
}
.padel-plans .plans-acc-body li{margin-bottom:4px;}
.padel-plans .plans-accordion.is-open .plans-acc-icon .icon-plus{display:none;}
.padel-plans .plans-accordion.is-open .plans-acc-icon .icon-minus{display:inline-block;}

/* ----------------- KIRI: TEKS & LAPANGAN ----------------- */
.padel-plans .plans-right{color:#000;}
.padel-plans .plans-eyebrow{
  font-size:14px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#000;
}
.padel-plans .plans-title{
  font-size:30px;
  line-height:1.3;
  font-weight:800;
  margin:0 0 10px;
  max-width:380px;
  color:#000;
}
.padel-plans .plans-lead{
  font-size:14px;
  line-height:1.6;
  color:#000;
  margin-bottom:24px;
  max-width:360px;
}

/* lapangan + label ukuran */
.padel-plans .court-wrapper{
  position:relative;
  display:block;
  margin:24px auto 40px;     /* center di kolom kiri */
  width:max-content;
}

/* lapangan */
.padel-plans .court-card{
  background:transparent;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
.padel-plans .court-card img{
  display:block;
  width:420px;
  max-width:100%;
  height:auto;
  border-radius:24px;
}

/* ===== HORIZONTAL: 12 Meter ===== */
.padel-plans .court-label-horizontal{
  position:absolute;
  left:50%;
  bottom:-32px;
  transform:translateX(-50%);
  font-size:11px;
  font-weight:600;
  color:#000;
  text-align:center;
}
.padel-plans .court-label-horizontal::before{
  content:"";
  position:absolute;
  left:50%;
  top:-7px;
  transform:translateX(-50%);
  width:220px;
  border-top:2px dashed #000;
}

/* ===== VERTIKAL: 30 Meter (tulisan di kiri garis, tapi tidak keluar layar) ===== */
.padel-plans .court-label-vertical{
  position:absolute;
  left:0;                     /* nempel di sisi kiri lapangan */
  top:50%;
  transform:translateY(-50%);
  height:210px;
  width:0;                    /* supaya garis tepat di pinggir */
}

/* garis vertikal putus-putus */
.padel-plans .court-label-vertical::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  border-left:2px dashed #000;
}

/* teks 30 Meter miring & berada di sebelah kiri garis */
.padel-plans .court-label-vertical span{
  position:absolute;
  top:50%;
  left:-6px;                  /* sedikit ke kiri dari garis */
  transform:translate(-100%, -50%) rotate(-90deg);
  transform-origin:center;
  font-size:11px;
  font-weight:600;
  color:#000;
  white-space:nowrap;
}

/* --------- RESPONSIVE --------- */
@media (max-width:991.98px){
  .padel-plans .plans-inner{
    grid-template-columns:1fr;
    gap:32px;
  }

  .padel-plans .plans-title{
    font-size:26px;
    max-width:none;
  }

  .padel-plans .court-card img{
    width:360px;
  }

  .padel-plans .court-label-horizontal::before{
    width:190px;
  }

  .padel-plans .court-label-vertical{
    height:190px;
  }
}

@media (max-width:575.98px){
  .padel-plans{
    padding-top:36px;
    padding-bottom:48px;
  }

  .padel-plans .plans-title{font-size:22px;}

  .padel-plans .plans-main-card,
  .padel-plans .plans-accordion{
    max-width:100%;
  }

  .padel-plans .court-card img{
    width:260px;
  }

  .padel-plans .court-label-horizontal{
    bottom:-30px;
  }
  .padel-plans .court-label-horizontal::before{
    width:150px;
  }

  .padel-plans .court-label-vertical{
    height:150px;
  }
}

/*--------------------------------------------------------------
booking page styles
--------------------------------------------------------------*/
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --bg-page-padel: #f4f4f4;
  --ink-main: #222;
  --ink-muted: #9ca3af;
  --border-subtle: #e5e7eb;
  --paper: #fff;
  --accent-green: #22c55e;
  --accent-green-soft: #ecfdf3;
  --accent-green-dark: #15803d;
  --accent-red: #ef4444;
  --accent-red-soft: #fef2f2;
  --month-text: #355219;
  --month-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  --month-border: rgba(148, 163, 184, 0.3);
  --month-arrow: #7b341e;
  --container-width: 1160px;
  --content-width: 980px;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.35);
  --shadow-card: 0 16px 35px rgba(15, 23, 42, 0.18);
}

/* PAGE */
.padel-page {
  padding: 60px 0 110px;
  background: var(--bg-page-padel);
  font-family: var(--ff-padel);
  color: var(--ink-main);
}

.padel-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.padel-hero {
  position: relative;
  width: 100%;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  background: #111;
  min-height: 260px;
  box-shadow: var(--shadow-soft);
  margin: 0 0 80px 0;
}

.padel-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/1405355/pexels-photo-1405355.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02) brightness(0.95);
}

.padel-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0));
  pointer-events: none;
}

/* HERO CARD */
.padel-hero-card {
  position: relative;
  max-width: var(--content-width);
  margin: -180px auto 24px;
  padding: 22px 24px 20px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid #f3f4f6;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
  gap: 18px 30px;
  align-items: center;
}

.phc-left { display:flex; flex-direction:column; gap:6px; }

.phc-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #125c08, #62c155, #116e33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phc-sub {
  margin:0;
  font-size:12px;
  color:var(--ink-muted);
  max-width:320px;
  line-height:1.6;
}

.phc-month-row {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin-top:14px;
}

.phc-select-wrap { position:relative; display:inline-block; }

.phc-select {
  appearance:none;
  display:block;
  width:240px;
  padding:12px 40px 12px 18px;
  border-radius:10px;
  border:1px solid var(--month-border);
  background:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  color:var(--month-text);
  box-shadow:var(--month-shadow);
  transition: box-shadow .15s, transform .1s, border-color .15s;
}

.phc-select:hover {
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15, 23, 42, .16);
  border-color:rgba(148,163,184,.6);
}

.phc-select:focus {
  outline:none;
  border-color:var(--accent-green-dark);
  box-shadow:0 0 0 2px rgba(34,197,94,.35);
}

.phc-chevron {
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%) rotate(45deg);
  width:10px;
  height:10px;
  border-right:2px solid var(--month-arrow);
  border-bottom:2px solid var(--month-arrow);
  pointer-events:none;
}

.phc-right { display:flex; justify-content:flex-end; min-width:0; }

.phc-date-row {
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
}

.phc-arrow {
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(132,204,22,.6);
  background:#fff;
  color:var(--accent-green-dark);
  font-size:18px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .15s, transform .1s, box-shadow .15s;
  flex:0 0 auto;
}

.phc-arrow:hover {
  background:#ecfdf3;
  box-shadow:0 0 0 2px rgba(132,204,22,.2);
  transform:translateY(-1px);
}

.phc-arrow.is-disabled,
.phc-arrow:disabled {
  opacity:.4;
  cursor:default;
  box-shadow:none;
  background:#fff;
  transform:none;
}

.phc-date-list {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(80px,1fr);
  gap:6px;
  flex:1;
  min-width:0;
}

.phc-date {
  border-radius:10px;
  border:1px solid transparent;
  padding:6px 4px 7px;
  background:#f5f5f5;
  text-align:center;
  cursor:pointer;
  display:grid;
  gap:2px;
  transition:background .15s,border-color .15s,transform .1s;
}

.phc-date .num { font-size:13px; font-weight:600; color:#4b5563; }
.phc-date .day { font-size:11px; color:#9ca3af; }

.phc-date:hover {
  background:#e5f3d6;
  transform:translateY(-1px);
}

.phc-date.is-active {
  background:#e3f3cc;
  border-color:var(--accent-green);
}

.phc-date.is-active .num,
.phc-date.is-active .day {
  color:var(--accent-green-dark);
  font-weight:700;
}

/* SLOT CARD */
.padel-slots-card {
  max-width:var(--content-width);
  margin:0 auto;
  background:var(--paper);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:24px 24px 26px;
  border:1px solid #eef0f4;
}

.psc-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.psc-title { margin:0 0 4px; font-size:18px; font-weight:700; }
.psc-sub { margin:0; font-size:13px; color:var(--ink-muted); }
.psc-sub-date { font-weight:700; color:var(--accent-green-dark); }

.psc-badge {
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--border-subtle);
  background:#f9fafb;
  font-size:11px;
  font-weight:600;
  color:#4b5563;
  white-space:nowrap;
}

.psc-grid-shell {
  display:flex;
  align-items:stretch;
  gap:8px;
  width:100%;
}

.psc-grid-wrapper {
  width:100%;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-behavior:smooth;
}

.psc-grid {
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-height:100%;
}

.day-column {
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:140px;
  flex:1 0 140px;
}

.day-column-header {
  border-radius:var(--radius-md);
  border:1px solid rgba(34,197,94,.7);
  background:#ffffff;
  padding:6px 10px;
  text-align:center;
}

.day-name {
  font-size:12px;
  font-weight:600;
  color:#16a34a;
  margin-bottom:2px;
}

.day-date {
  font-size:14px;
  font-weight:700;
  color:#15803d;
}

.slot-card {
  position:relative;
  border-radius:var(--radius-md);
  border:1px solid #e5e7eb;
  background:#fff;
  padding:10px 12px 8px;
  text-align:left;
  cursor:pointer;
  transition:border-color .15s,box-shadow .15s,transform .1s,background .15s;
  display:grid;
  gap:3px;
}

.slot-card:hover:not(:disabled):not(.is-booked) {
  border-color:rgba(34,197,94,.7);
  box-shadow:0 8px 18px rgba(15,23,42,.12);
  transform:translateY(-1px);
}

.slot-label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#9ca3af;
  margin:0 0 2px;
}

.slot-time {
  margin:0;
  font-weight:600;
  font-size:13px;
  color:#111827;
}

.slot-price {
  margin:2px 0 0;
  font-size:12px;
  color:#4b5563;
  font-weight:500;
}

.slot-status {
  margin:2px 0 0;
  font-size:12px;
  color:#9ca3af;
  font-weight:500;
}

.slot-card.is-selected {
  border-color:var(--accent-green);
  background:var(--accent-green-soft);
  box-shadow:0 10px 24px rgba(34,197,94,.35);
}

.slot-card.is-selected::after {
  content:"";
  position:absolute;
  top:8px; right:8px;
  width:10px; height:10px;
  border-radius:999px;
  background:var(--accent-green-dark);
  box-shadow:0 0 0 3px #bbf7d0;
}

.slot-card.is-selected .slot-time,
.slot-card.is-selected .slot-price {
  color:var(--accent-green-dark);
  font-weight:700;
}

/* BOOKED */
.slot-card.is-booked {
  background:var(--accent-red-soft);
  border-color:var(--accent-red);
  cursor:not-allowed;
}
.slot-card.is-booked {
  background: #e5e5e5 !important;
  cursor: not-allowed;
  border-color: #d4d4d4 !important;
}

.slot-card.is-booked .slot-label,
.slot-card.is-booked .slot-time,
.slot-card.is-booked .slot-price,
.slot-card.is-booked .slot-status {
  color: #9b9b9b !important;
}

.slot-status {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.slot-card.is-booked .slot-time {
  color:var(--accent-red);
  font-weight:600;
}

.slot-card.is-booked .slot-label { color:#fecaca; }
.slot-card.is-booked .slot-status { color:#b91c1c; font-weight:600; }

.psc-scroll-btn {
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.7);
  background:#fff;
  color:#111827;
  width:32px;
  height:32px;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,.18);
  transition:background .15s,transform .1s,box-shadow .15s,opacity .15s;
  flex:0 0 auto;
}

.psc-scroll-btn:hover:not(.is-disabled) {
  background:#ecfdf3;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(34,197,94,.35);
}

.psc-scroll-btn.is-disabled,
.psc-scroll-btn:disabled {
  opacity:.4;
  cursor:default;
  box-shadow:none;
  transform:none;
}

.psc-scroll-btn.is-hidden { display:none !important; }

.psc-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-top:18px;
  flex-wrap:wrap;
}

.psc-legend {
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  font-size:11px;
  color:#6b7280;
}

.legend-item { display:inline-flex; align-items:center; gap:6px; }
.legend-dot { width:10px; height:10px; border-radius:50%; }
.legend-available { background:#9ca3af; }
.legend-selected  { background:#22c55e; }
.legend-booked    { background:#ef4444; }

.psc-next-btn {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 30px;
  border-radius:999px;
  border:1px solid #cbd5e1;
  background:linear-gradient(90deg,#f8fff7 0%, #e7ffe9 40%, #6ad46e 100%);
  color:#0f172a;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 20px 45px rgba(74, 222, 128, 0.45);
  transition:transform .1s, box-shadow .15s, filter .12s;
  white-space:nowrap;
}

.psc-next-btn:hover {
  transform:translateY(-1px);
  box-shadow:0 26px 60px rgba(74, 222, 128, 0.55);
  filter:brightness(1.02);
}

.psc-next-btn:active {
  transform:translateY(0);
  box-shadow:0 14px 30px rgba(22,163,74,.45);
  filter:brightness(.99);
}

.psc-next-icon {
  font-size:15px;
  line-height:1;
  display:inline-block;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .padel-hero-card {
    grid-template-columns:minmax(0,1fr);
    padding:18px 18px 16px;
    max-width:100%;
    margin:-120px auto 20px;
  }
  .phc-right { justify-content:flex-start; margin-top:10px; }
  .padel-slots-card { max-width:100%; }
}

@media (max-width: 640px) {
  .padel-page { padding-top:52px; }
  .padel-hero { margin-bottom:60px; }
  .padel-hero-card { margin:-110px auto 16px; }

  .psc-head { flex-direction:column; align-items:flex-start; }
  .psc-badge { align-self:flex-start; }

  .phc-date-row { gap:6px; }
  .phc-arrow { width:28px; height:28px; font-size:16px; }

  .phc-date-list {
    grid-auto-flow:unset;
    grid-auto-columns:unset;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:4px;
  }

  .phc-date { padding:4px 2px 5px; }
  .phc-date .num { font-size:12px; }
  .phc-date .day { font-size:10px; }
  .phc-select { width:100%; }

  .psc-bottom { align-items:flex-start; }
  .psc-next-btn { margin-left:auto; }

  .psc-grid-shell { position:relative; }
  .psc-scroll-btn {
    display:flex;
    position:sticky;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
  }
  .psc-scroll-prev { left:0; }
  .psc-scroll-next { right:0; }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide img{ opacity:.5; transition:.3s; filter:grayscale(100); }
.clients .swiper-slide img:hover{ filter:none; opacity:1; }
.clients .swiper-wrapper{ height:auto; }
.clients .swiper-pagination{ margin-top:20px; position:relative; }
.clients .swiper-pagination .swiper-pagination-bullet{ width:12px; height:12px; opacity:1; background: color-mix(in srgb, var(--default-color), transparent 80%); }
.clients .swiper-pagination .swiper-pagination-bullet-active{ background:var(--accent-color); }
/* --------------------------------------------------------------
# Services – Train Smarter, Play harder
--------------------------------------------------------------*/
.padel-services{
  background:#fff;
  padding-top:clamp(40px,6vw,80px);
  padding-bottom:clamp(40px,6vw,80px);
}

/* ========== ROW ATAS ========== */
.padel-services .ps-row-top{
  display:grid;
  grid-template-columns:minmax(0,0.5fr) minmax(0,0.5fr);
  align-items:center;          /* biar teks & gambar sejajar tengah */
  gap:40px;
  margin-bottom:38px;
}

/* kiri: title */
.padel-services .ps-left{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:24px;
}

.padel-services .ps-title{
  font-size:42px;
  line-height:1.15;
  font-weight:800;
  color:#000;
  margin:0;
}

.padel-services .ps-pill{
  width:110px;
  height:22px;
  border-radius:999px;
  background:#050b1c;
}

/* kanan: gambar 1 */
.padel-services .ps-top-image{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

/* gambar 1 & 2 SENGAJA SAMA UKURAN */
.padel-services .ps-img-1,
.padel-services .ps-img-2{
  display:block;
  width:100%;
  max-width:540px;   /* samakan ukuran kedua gambar */
  height:auto;
}

/* ========== ROW BAWAH ========== */
.padel-services .ps-row-bottom{
  display:grid;
  grid-template-columns:minmax(0,0.55fr) minmax(0,0.45fr);
  gap:40px;
  align-items:center;
}

/* kiri: gambar 2 */
.padel-services .ps-bottom-image{
  align-self:flex-start;
}

/* kanan: slider step */
.padel-services .ps-bottom-steps{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:16px;
}

/* tombol panah */
.padel-services .ps-steps-nav-btn{
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  background:#050b1c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
  font-size:18px;
}

.padel-services .ps-steps-nav-btn.is-disabled,
.padel-services .ps-steps-nav-btn:disabled{
  opacity:0.35;
  cursor:default;
}

/* viewport untuk langkah-langkah */
.padel-services .ps-steps-viewport{
  overflow:hidden;
  flex:1;
}

/* track yang digeser ke kiri-kanan */
.padel-services .ps-steps-track{
  display:flex;
  transition:transform .5s ease;
}

/* tiap step: 2 buah per layar (50% - 2 kolom) */
.padel-services .ps-step{
  flex:0 0 50%;
  display:flex;
  align-items:flex-start;
  gap:12px;
  max-width:none;
  padding-right:18px;
  box-sizing:border-box;
}

.padel-services .ps-step-circle{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  flex-shrink:0;
}

.padel-services .ps-step-content h4{
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:4px 0 6px;
  color:#000;
}

.padel-services .ps-step-content p{
  font-size:12px;
  line-height:1.6;
  color:#555;
  margin:0;
}

/* ========== RESPONSIVE ========== */
@media (max-width:991.98px){
  .padel-services .ps-row-top{
    grid-template-columns:1fr;
    gap:24px;
  }

  .padel-services .ps-top-image{
    justify-content:flex-start;
  }

  .padel-services .ps-row-bottom{
    grid-template-columns:1fr;
    gap:24px;
  }
}

@media (max-width:575.98px){
  .padel-services{
    padding-top:32px;
    padding-bottom:40px;
  }

  .padel-services .ps-title{
    font-size:32px;
  }

  /* di HP tetap slider, tapi jarak sedikit lebih rapat */
  .padel-services .ps-bottom-steps{
    gap:12px;
  }
}

/*--------------------------------------------------------------
form styles
--------------------------------------------------------------*/

    :root {
    --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;

      /* Background: netral + hint hijau padel */
      --bg-page-padel: linear-gradient(180deg, #f5f7fb 0%, #f7fff9 35%, #e6f9ee 100%);

      --paper: #ffffff;
      --ink-main: #111827;
      --ink-muted: #6b7280;

      /* Palet hijau padel: rumput + hijau tua (lebih adem, kurang kuning) */
      --green-lime-soft: #edfdda;
      --green-lime: #9ad021;
      --green-court: #63b43b;
      --green-deep: #1f5f3b;
      --green-line: #7fbf43;

      --border-subtle: rgba(148, 163, 184, 0.32);
      --shadow-soft: 0 22px 70px rgba(15, 23, 42, 0.18);
      --shadow-card: 0 18px 55px rgba(15, 23, 42, 0.12);

      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 12px;
    }

    .padel-form-page {
      min-height: 100vh;
      background: var(--bg-page-padel);
      font-family: var(--ff-padel);
      padding: 110px 0 80px;
      color: var(--ink-main);
    }

    .pf-shell {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* ========== HERO ========== */
    .pf-hero {
      width: 100%;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background:
        linear-gradient(115deg, #2d6d28 0%, var(--green-court) 45%, var(--green-lime) 75%, #e9ffd9 100%);
      padding: 26px 32px 26px;
      color: #f9fafb;
      isolation: isolate;
    }

    /* pola garis lapangan tipis */
    .pf-hero::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        repeating-linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.12) 0,
          rgba(255, 255, 255, 0.12) 2px,
          transparent 2px,
          transparent 22px
        );
      opacity: 0.45;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0;
    }

    .pf-hero-glow {
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.4) 0, transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(203, 255, 149, 0.5) 0, transparent 55%);
      opacity: 0.7;
      pointer-events: none;
      mix-blend-mode: screen;
      z-index: 0;
    }

    .pf-hero-inner {
      position: relative;
      z-index: 2; /* di atas bola & glow */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    /* ========== BOLA PADEL ANIMASI ========== */
    .pf-hero-ball-wrap {
      position: absolute;
      right: 10%;
      bottom: -30px;
      width: 120px;
      height: 120px;
      pointer-events: none;
      z-index: 1;
      animation: pf-ball-path 4.5s ease-in-out infinite;
    }

    .pf-hero-ball {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 30%, #fffff0 0, #fef08a 22%, transparent 60%),
        radial-gradient(circle at 70% 70%, #facc15 0, #a3e635 40%, #4d7c0f 100%);
      box-shadow:
        0 12px 26px rgba(22, 101, 52, 0.55),
        inset 0 0 0 4px rgba(250, 250, 250, 0.9);
      position: relative;
    }

    .pf-hero-ball::after {
      content: "";
      position: absolute;
      inset: 18%;
      border-radius: 999px;
      border: 3px solid rgba(255, 255, 255, 0.7);
      border-left-color: transparent;
      border-right-color: transparent;
      transform: rotate(-18deg);
    }

    .pf-hero-ball-shadow {
      position: absolute;
      left: 50%;
      bottom: -22px;
      width: 80%;
      height: 18px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: radial-gradient(circle, rgba(15, 23, 42, 0.5) 0, transparent 70%);
      opacity: 0.55;
      filter: blur(2px);
    }

    @keyframes pf-ball-path {
      0%   { transform: translate(0, 0) rotate(0deg); }
      30%  { transform: translate(-300px, -90px) rotate(-150deg); }
      55%  { transform: translate(-30px, -150px) rotate(-260deg); }
      80%  { transform: translate(60px, -20px) rotate(-340deg); }
      100% { transform: translate(0, 0) rotate(-360deg); }
    }

    /* hero left text */
    .pf-hero-left {
      max-width: 60%;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .pf-hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      background: #f9fafb;
      border: 1px solid rgba(209, 213, 219, 0.9);
      color: #111827;
    }

    .pf-hero-title {
      font-size: 28px;
      line-height: 1.3;
      font-weight: 800;
      margin: 4px 0 0;
      color: #fefce8;
      text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    }

    .pf-hero-sub {
      margin: 6px 0 0;
      font-size: 13px;
      max-width: 460px;
      color: #e5f2ff;
      opacity: 0.98;
    }

    .pf-hero-progress {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 420px;
    }

    .pf-hero-progress-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: #e5e7eb;
    }

    .pf-hero-step {
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fef9c3;
    }

    .pf-hero-step-label {
      color: #e5e7eb;
      opacity: 0.95;
    }

    .pf-hero-progress-bar {
      width: 100%;
      height: 7px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.55);
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .pf-hero-progress-fill {
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, #fefce8, #f7fee7, #e4ffd2);
      box-shadow: 0 0 0 1px rgba(250, 250, 210, 0.7);
      border-radius: inherit;
    }

    /* ========== BADGE KANAN ========== */
    .pf-hero-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: flex-end;
      justify-content: center;
    }

    .pf-hero-badge {
      background: rgba(15, 23, 42, 0.9);
      border-radius: 999px;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(229, 231, 235, 0.7);
      backdrop-filter: blur(12px);
      min-width: 260px;
    }

    .pf-hero-badge-main {
      transform: translateY(-4px);
    }

    .pf-hero-badge-trainer {
      background: rgba(15, 23, 42, 0.88);
    }

    .pf-hero-badge-circle {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
    }

    .pf-hero-badge-circle-main {
      background: conic-gradient(from 160deg, #faffc8, #9ad021, #ffffff, #faffc8);
    }

    .pf-hero-badge-circle-main::after {
      content: "";
      width: 22px;
      height: 22px;
      border-radius: inherit;
      background: #0f172a;
      opacity: 0.95;
    }

    /* Icon orang padel */
    .pf-hero-badge-circle-trainer {
      background: radial-gradient(circle at 30% 20%, #fefce8 0, #fde68a 22%, #9ad021 70%, #15803d 100%);
      box-shadow: 0 4px 10px rgba(22, 101, 52, 0.6);
    }

    .pf-hero-badge-figure {
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-block;
    }

    .pf-hero-badge-figure::before {
      /* kepala */
      content: "";
      position: absolute;
      top: 0;
      left: 6px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #fefce8;
    }

    .pf-hero-badge-figure::after {
      /* badan + raket */
      content: "";
      position: absolute;
      left: 3px;
      top: 6px;
      width: 12px;
      height: 10px;
      border-radius: 8px;
      border-left: 2px solid #fefce8;     /* badan & kaki */
      border-bottom: 2px solid #fefce8;
      box-shadow:
        6px -2px 0 -4px #fefce8,          /* lengan ke raket */
        11px -4px 0 -3px #fefce8;         /* bola / raket bulat */
      transform: rotate(-18deg);
    }

    .pf-hero-badge-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .pf-hero-badge-label {
      font-size: 13px;
      font-weight: 600;
      color: #f9fafb;
    }

    .pf-hero-badge-desc {
      font-size: 11px;
      color: #e5e7eb;
      opacity: 0.95;
      white-space: nowrap;
    }

    /* ========== CARD FORM ========== */
    .pf-container {
      width: 100%;
      margin: 0;
    }

    .pf-card {
      width: 100%;
      background: var(--paper);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      padding: 26px 32px 26px;
      border: 1px solid var(--border-subtle);
      backdrop-filter: blur(10px);
    }

    .pf-header {
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .pf-header-main {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .pf-title {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: var(--ink-main);
    }

    .pf-subtitle {
      margin: 0;
      font-size: 12px;
      color: var(--ink-muted);
    }

    .pf-progress {
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: #e5e7eb;
      overflow: hidden;
      position: relative;
    }

    .pf-progress::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(154, 208, 33, 0.18), transparent 45%, rgba(154, 208, 33, 0.18));
      opacity: 0.7;
    }

    .pf-progress-fill {
      width: 50%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green-lime), #c5f763);
      box-shadow: 0 0 0 1px rgba(180, 238, 86, 0.7);
    }

    .pf-section-head {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }

    .pf-section-title {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink-main);
    }

    .pf-section-caption {
      margin: 2px 0 0;
      font-size: 11px;
      color: var(--ink-muted);
    }

    .pf-section-line {
      height: 1px;
      background: linear-gradient(90deg, var(--green-line), rgba(125, 189, 27, 0));
      flex: 1;
      margin-top: 10px;
      opacity: 0.7;
    }

    /* SLOT SUMMARY */
    .pf-slot-summary {
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(34,197,94,0.35);
      background:#f0fdf4;
      margin-bottom:14px;
      font-size:12px;
    }
    .pf-slot-summary-left {
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .pf-slot-chip {
      padding:3px 10px;
      border-radius:999px;
      background:#bbf7d0;
      color:#166534;
      font-size:11px;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .pf-slot-main {
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .pf-slot-title {
      font-weight:600;
      color:#166534;
    }
    .pf-slot-time {
      color:#4b5563;
      font-size:11px;
    }
    .pf-slot-change-link {
      font-size:11px;
      color:#0f766e;
      text-decoration:underline;
      white-space:nowrap;
    }

    /* ALERT */
    .pf-alert {
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 12px;
      margin-bottom: 10px;
    }
    .pf-alert-error {
      background:#fee2e2;
      color:#b91c1c;
      border:1px solid #fecaca;
    }
    .pf-alert-success {
      background:#dcfce7;
      color:#166534;
      border:1px solid #bbf7d0;
    }

    /* ========== FORM GRID ========== */
    .pf-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .pf-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px 22px;
    }

    .pf-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .pf-field-span2 {
      grid-column: span 2;
    }

    .pf-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-muted);
    }

    .pf-input {
      border-radius: var(--radius-md);
      border: 1.8px solid rgba(148, 163, 184, 0.7);
      padding: 10px 14px;
      font-size: 13px;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, transform 0.08s ease;
      font-family: var(--ff-padel);
      color: var(--ink-main);
      background: rgba(255, 255, 255, 0.98);
    }

    .pf-input::placeholder {
      color: #9ca3af;
      font-size: 12px;
    }

    .pf-input:focus {
      border-color: var(--green-court);
      box-shadow: 0 0 0 1px rgba(99, 180, 59, 0.35), 0 10px 22px rgba(76, 175, 80, 0.2);
      background: #ffffff;
      transform: translateY(-1px);
    }

    .pf-input.is-invalid {
      border-color:#ef4444;
      box-shadow:0 0 0 1px rgba(248,113,113,0.6);
    }

    .pf-select {
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
      background-position:
        calc(100% - 16px) 50%,
        calc(100% - 11px) 50%;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    /* ========== BUTTONS ========== */
    .pf-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-top: 6px;
    }

    .pf-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: var(--ff-padel);
      transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .pf-btn-ghost {
      background: #ffffff;
      color: #111827;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 6px 20px rgba(148, 163, 184, 0.35);
    }

    .pf-btn-ghost:hover {
      transform: translateY(-1px);
      background: linear-gradient(90deg, #ffffff, #f9fafb);
      box-shadow: 0 10px 26px rgba(148, 163, 184, 0.4);
    }

    /* >>> GRADASI HIJAU + PUTIH UNTUK BUTTON LANJUTKAN <<< */
    .pf-btn-primary {
      background: linear-gradient(120deg, #ffffff, #e8ffe8, var(--green-court));
      color: #0f172a;
      box-shadow: 0 14px 35px rgba(68, 148, 54, 0.45);
      border: 1px solid rgba(148, 163, 184, 0.8);
    }

    .pf-btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(47, 111, 35, 0.75);
      background: linear-gradient(120deg, #ffffff, #f5fff5, var(--green-lime));
    }

    .pf-btn-icon-left,
    .pf-btn-icon-right {
      font-size: 12px;
      line-height: 1;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1200px) {
      .pf-shell {
        max-width: 1120px;
        padding: 0 32px;
      }
    }

    @media (max-width: 1024px) {
      .pf-hero-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .pf-hero-left {
        max-width: 100%;
      }

      .pf-hero-right {
        width: 100%;
        align-items: flex-start;
      }

      .pf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pf-field-span2 {
        grid-column: span 2;
      }

      .pf-slot-summary {
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media (max-width: 900px) {
      .pf-card {
        padding: 22px 20px 22px;
      }
    }

    /* HP */
    @media (max-width: 640px) {
      .padel-form-page {
        padding: 90px 0 40px;
      }

      .pf-shell {
        padding: 0 16px;
        gap: 18px;
      }

      .pf-hero {
        padding: 18px 18px 20px;
      }

      .pf-hero-title {
        font-size: 20px;
      }

      .pf-hero-sub {
        font-size: 12px;
      }

      /* sembunyikan bola di layar kecil biar nggak ganggu layout */
      .pf-hero-ball-wrap {
        display: none;
      }

      .pf-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .pf-field-span2 {
        grid-column: span 1;
      }

      .pf-actions {
        flex-direction: column-reverse;
        align-items: stretch;
      }

      .pf-btn {
        justify-content: center;
        width: 100%;
      }

      .pf-hero-badge-desc {
        white-space: normal;
      }

      .pf-hero-right {
        align-items: flex-start;
      }
    }
/*--------------------------------------------------------------
detail order styles
--------------------------------------------------------------*/
:root {
      --ff-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --bg-page: #f3f7f5;
      --text-main: #111827;
      --text-muted: #6b7280;
      --paper: #ffffff;

      --green: #16a34a;
      --green-light: #22c55e;
      --green-soft: #ecfdf3;

      --border: #e5e7eb;
      --radius-lg: 28px;
      --radius-md: 16px;
    }

    body {
      font-family: var(--ff-main);
    }

    .dp-page {
      background: radial-gradient(circle at top, #e0f7e9 0, #f3f7f5 45%, #f3f7f5 100%);
      padding: 80px 0 110px;
      color: var(--text-main);
    }

    .dp-shell {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* HERO */
    .dp-hero {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 32px;
      min-height: 230px;
      background: #020617;
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.55);
    }

    .dp-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.pexels.com/photos/1405355/pexels-photo-1405355.jpeg?auto=compress&cs=tinysrgb&w=1600');
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      filter: saturate(1.25) contrast(1.05);
    }

    .dp-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        rgba(15, 23, 42, 0.96) 0%,
        rgba(15, 23, 42, 0.88) 38%,
        rgba(15, 23, 42, 0.4) 70%,
        rgba(15, 23, 42, 0) 100%
      );
    }

    .dp-hero-inner {
      position: relative;
      z-index: 2;
      padding: 28px 40px 32px;
      display: flex;
      align-items: center;
      height: 100%;
    }

    .dp-hero-content {
      background: rgba(15, 23, 42, 0.8);
      border-radius: 20px;
      padding: 16px 22px 18px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      backdrop-filter: blur(10px);
      max-width: 430px;
      color: #f9fafb;
    }

    .dp-hero-label {
      display: inline-flex;
      align-items: center;
      padding: 4px 16px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: #f9fafb;
      color: #111827;
      margin-bottom: 10px;
    }

    .dp-hero-title {
      margin: 0 0 4px;
      font-size: 24px;
      font-weight: 800;
    }

    .dp-hero-sub {
      margin: 0;
      font-size: 13px;
      color: #e5e7eb;
    }

    /* ALERT */
    .dp-alert {
      padding: 8px 10px;
      border-radius: 10px;
      font-size: 12px;
      margin-bottom: 6px;
    }
    .dp-alert-error {
      background:#fee2e2;
      color:#b91c1c;
      border:1px solid #fecaca;
    }
    .dp-alert-success {
      background:#dcfce7;
      color:#166534;
      border:1px solid #bbf7d0;
    }

    /* MAIN CARD */
    .dp-main-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 20px 18px 22px;
      border: 1px solid var(--border);
      box-shadow: 0 16px 40px rgba(148, 163, 184, 0.35);
    }

    .dp-main-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
      gap: 18px;
    }

    .dp-col-left,
    .dp-col-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* GENERIC CARD */
    .dp-card {
      background: var(--paper);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      padding: 16px 18px 16px;
      box-shadow: 0 8px 24px rgba(148, 163, 184, 0.25);
    }

    .dp-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .dp-card-title,
    .dp-summary-title{
      margin: 0;
      font-size: 15px;
      font-weight: 700;
      background: linear-gradient(90deg, #083118, #336b48, #2a9b54);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .dp-card-tag {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(34, 197, 94, 0.35);
      background: var(--green-soft);
      color: #15803d;
      font-size: 11px;
      font-weight: 600;
      white-space: nowrap;
    }

    .dp-row-2col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 20px;
      margin-bottom: 4px;
    }

    .dp-field {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .dp-field-label {
      font-size: 11px;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .dp-field-value {
      font-size: 13px;
      font-weight: 600;
    }

    .dp-facility-chips {
      margin: 10px 0 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .dp-chip {
      border-radius: 999px;
      padding: 4px 9px;
      font-size: 11px;
      background: #f3f4f6;
      color: #4b5563;
    }

    .dp-card-note {
      margin: 4px 0 0;
      font-size: 11px;
      color: var(--text-muted);
    }

    /* PRICING CARD */
    .dp-card-pricing {
      position: sticky;
      top: 80px;
    }

    .dp-summary-head {
      margin-bottom: 12px;
    }

    .dp-summary-label {
      display: inline-flex;
      align-items: center;
      padding: 4px 14px;
      border-radius: 999px;
      border: 1px solid rgba(34, 197, 94, 0.35);
      background: var(--green-soft);
      color: #15803d;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .dp-summary-sub {
      margin: 0;
      font-size: 12px;
      color: var(--text-muted);
    }

    .dp-summary-meta {
      margin: 10px 0 10px;
      border-radius: 12px;
      background: #f9fafb;
      border: 1px solid var(--border);
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .dp-meta-row {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
    }

    .dp-meta-label {
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 10px;
    }

    .dp-meta-value {
      font-weight: 600;
      font-size: 12px;
    }

    /* DATA PEMESAN */
    .dp-customer-box {
      margin: 6px 0 10px;
      border-radius: 12px;
      border:1px solid #d1fae5;
      background:#ecfdf3;
      padding:8px 10px;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .dp-cust-title {
      font-size:11px;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:.14em;
      color:#047857;
    }
    .dp-cust-rows {
      display:flex;
      flex-direction:column;
      gap:4px;
      font-size:12px;
    }
    .dp-cust-row {
      display:flex;
      justify-content:space-between;
      gap:6px;
    }
    .dp-cust-row span:first-child {
      color:#6b7280;
    }
    .dp-cust-row span:last-child {
      font-weight:600;
      color:#111827;
      text-align:right;
    }

    /* PRICE LINES */
    .dp-price-section-title {
      margin: 4px 0 6px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #9ca3af;
    }

    .dp-price-lines {
      border-radius: 12px;
      background: #f9fafb;
      border: 1px solid var(--border);
      padding: 10px 12px;
      margin-bottom: 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .dp-price-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .dp-price-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #4b5563;
    }

    .dp-price-caption {
      margin: 0;
      font-size: 11px;
      color: #9ca3af;
    }

    .dp-price-row-total span:last-child {
      font-weight: 700;
      color: #15803d;
    }

    .dp-payment-method {
      margin-top: 6px;
      margin-bottom: 8px;
    }

    .dp-payment-title {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #9ca3af;
      margin-bottom: 4px;
    }

    .dp-payment-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #f3f4f6;
      font-size: 12px;
      color: #374151;
    }

    .dp-payment-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #16a34a;
      box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.35);
    }

    .dp-payment-note {
      margin: 6px 0 0;
      font-size: 11px;
      color: var(--text-muted);
    }

    .dp-pricing-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 8px 0;
    }

    .dp-pay-form {
      margin:0;
    }

    /* BUTTONS */
    .dp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease;
      white-space: nowrap;
    }

    .dp-btn-outline {
      background: #ffffff;
      color: #111827;
      border: 1px solid var(--border);
      box-shadow: 0 6px 20px rgba(148, 163, 184, 0.26);
    }

    .dp-btn-outline:hover {
      transform: translateY(-1px);
      background: #f9fafb;
      box-shadow: 0 10px 26px rgba(148, 163, 184, 0.36);
    }

    .dp-btn-primary {
      background: linear-gradient(90deg, #ffffff 0%, #22c55e 45%, #16a34a 100%);
      color: #ffffff;
      border: 1px solid #15803d;
      box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }

    .dp-btn-primary:hover {
      transform: translateY(-1px);
      background: linear-gradient(90deg, #f9fafb 0%, #22c55e 50%, #15803d 100%);
      box-shadow: 0 20px 48px rgba(21, 128, 61, 0.8);
      filter: brightness(1.03);
    }

    .dp-btn-icon {
      font-size: 13px;
      line-height: 1;
    }

    .dp-price-footnote {
      margin: 2px 0 0;
      font-size: 11px;
      color: #9ca3af;
    }

    .dp-btn-disabled {
      opacity: 0.45;
      cursor: not-allowed;
      box-shadow: none !important;
      filter: grayscale(0.1);
    }

    /* T&C CARD */
    .dp-tnc-card {
      padding: 16px 16px 14px;
    }

    .tnc-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 8px;
    }

    .tnc-title {
      margin: 0;
      font-size: 15px;
      font-weight: 700;
      background: linear-gradient(90deg, #083118, #6edc98, #459c65);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .tnc-subtitle {
      margin: 4px 0 0;
      font-size: 12px;
      color: var(--text-muted);
      max-width: 420px;
    }

    .tnc-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(34, 197, 94, 0.25);
      background: radial-gradient(circle at 0 0, #dcfce7, #f9fafb);
      font-size: 11px;
      font-weight: 600;
      color: #166534;
      white-space: nowrap;
    }

    .tnc-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    .tnc-body {
      margin-top: 2px;
      border-radius: 14px;
      background: var(--green-soft);
      border: 1px solid var(--border);
      padding: 8px 10px;
    }

    .tnc-scroll {
      max-height: 260px;
      overflow-y: auto;
      padding-right: 6px;
      background: var(--green-soft);
    }

    .tnc-address {
      font-size: 12px;
      margin: 0 0 8px;
    }

    .tnc-compact-list {
      margin: 0 0 10px 18px;
      padding: 0;
      font-size: 12px;
      line-height: 1.6;
    }

    .tnc-compact-list li + li {
      margin-top: 4px;
    }

    .tnc-download-wrapper {
      margin-top: 4px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .tnc-download-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid #16a34a;
      background: #ffffff;
      color: #166534;
      box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
    }

    .tnc-download-btn:hover {
      background: #dcfce7;
    }

    .tnc-download-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    .dp-tnc-confirm {
      margin-top: 10px;
    }

    .dp-tnc-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 11px;
      color: #4b5563;
    }

    .dp-tnc-checkbox input[type="checkbox"] {
      margin-top: 2px;
      width: 14px;
      height: 14px;
      cursor: pointer;
    }

    .dp-tnc-checkbox span {
      cursor: pointer;
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .dp-main-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .dp-col-left { order: 1; }
      .dp-col-right { order: 2; }

      .dp-card-pricing {
        position: static;
      }

      .dp-hero-inner {
        padding: 22px 20px 26px;
      }
    }

    @media (max-width: 640px) {
      .dp-page {
        padding-top: 70px;
        padding-bottom: 70px;
      }

      .dp-hero-inner {
        padding: 20px 18px 24px;
      }

      .dp-hero-content {
        padding: 14px 16px 16px;
      }

      .dp-main-card {
        padding: 16px 12px 18px;
      }

      .dp-card {
        padding: 14px 14px 14px;
      }

      .tnc-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .tnc-badge {
        align-self: flex-start;
      }
    }

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action{ padding:80px 0; position:relative; clip-path: inset(0); }
.call-to-action img{ position:fixed; top:0; left:0; display:block; width:100%; height:100%; object-fit:cover; z-index:1; }
.call-to-action:before{ content:""; background: color-mix(in srgb, var(--background-color), transparent 50%); position:absolute; inset:0; z-index:2; }
.call-to-action .container{ position:relative; z-index:3; }
.call-to-action h3{ font-size:28px; font-weight:700; color:var(--default-color); }
.call-to-action p{ color:var(--default-color); }
.call-to-action .cta-btn{
  font-family:var(--heading-font); font-weight:500; font-size:16px; letter-spacing:1px;
  display:inline-block; padding:12px 40px; border-radius:5px; transition:.5s; margin:10px;
  border:2px solid var(--default-color); color:var(--default-color);
}
.call-to-action .cta-btn:hover{ background:var(--accent-color); color:var(--background-color); border:2px solid var(--accent-color); }
.custom-btn{ background:#3E1E04; color:#fff; border-radius:30px; font-weight:600; border:none; transition: background-color .3s ease, color .3s ease; }
.custom-btn:hover{ background:#d16d1c; color:#fff; }
/* --------------------------------------------------------------
# Testimonials – Wulf Padel
--------------------------------------------------------------*/
.padel-testimonials{
  background:#f5f5f5; /* abu-abu muda */
  padding-top:clamp(40px,6vw,80px);
  padding-bottom:clamp(40px,6vw,80px);
}

.padel-testimonials .pt-inner{
  display:grid;
  grid-template-columns:minmax(0,0.45fr) minmax(0,0.55fr);
  gap:50px;
  align-items:center; /* teks kiri sejajar dengan kartu hijau */
}

/* ========== LEFT COPY ========== */
.padel-testimonials .pt-left{
  max-width:440px;
}

.padel-testimonials .pt-eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#98d624; /* hijau seperti desain */
  margin-bottom:10px;
}

.padel-testimonials .pt-title{
  font-size:34px;
  line-height:1.25;
  font-weight:800;
  color:#111111;
  margin:0 0 16px;
}

.padel-testimonials .pt-lead{
  font-size:13px;
  line-height:1.7;
  color:#666666;
  margin:0 0 22px;
}

.padel-testimonials .pt-rating-block{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.padel-testimonials .pt-stars-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.padel-testimonials .pt-stars i{
  color:#f9c53c;
  margin-right:2px;
  font-size:14px;
}

.padel-testimonials .pt-rating-text{
  font-size:13px;
  font-weight:600;
  color:#222222;
}

.padel-testimonials .pt-users-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.padel-testimonials .pt-avatars{
  display:flex;
  align-items:center;
}

.padel-testimonials .pt-avatar{
  width:30px;
  height:30px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid #ffffff;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  margin-left:-10px;
}
.padel-testimonials .pt-avatar:first-child{margin-left:0;}

.padel-testimonials .pt-users-text{
  font-size:13px;
  color:#555555;
}

/* ========== RIGHT COLUMN – 3 SLOT KARTU FIXED ========== */
.padel-testimonials .pt-right{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.padel-testimonials .pt-card{
  background:#ffffff;
  border-radius:18px;
  padding:18px 22px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.padel-testimonials .pt-card-center{
  position:relative;
  z-index:1;
}

/* hijau hanya di slot tengah, tidak ikut pindah */
.padel-testimonials .pt-card-center::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:18px;
  background:#c8ff2b;
  z-index:-1;
}

.padel-testimonials .pt-quote{
  font-size:13px;
  line-height:1.7;
  color:#333333;
  margin:0 0 14px;
}

.padel-testimonials .pt-card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.padel-testimonials .pt-user{
  display:flex;
  align-items:center;
  gap:10px;
}

.padel-testimonials .pt-card-avatar{
  width:40px;
  height:40px;
  border-radius:999px;
  object-fit:cover;
}

.padel-testimonials .pt-card-name{
  font-size:14px;
  font-weight:700;
  color:#111111;
  margin-bottom:4px;
}

.padel-testimonials .pt-card-stars i{
  color:#f9c53c;
  margin-right:2px;
  font-size:13px;
}

/* Animasi scroll jelas di kartu HIJAU (konten naik dari bawah) */
.padel-testimonials .pt-card-anim{
  animation:ptScrollUp 0.6s ease;
}

@keyframes ptScrollUp{
  0%{
    transform:translateY(40px);
    opacity:0;
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width:991.98px){
  .padel-testimonials .pt-inner{
    grid-template-columns:1fr;
    gap:32px;
    align-items:flex-start;
  }

  .padel-testimonials .pt-left{
    max-width:none;
  }

  .padel-testimonials .pt-right{
    max-width:520px;
  }
}

@media (max-width:575.98px){
  .padel-testimonials{
    padding-top:32px;
    padding-bottom:40px;
  }

  .padel-testimonials .pt-title{
    font-size:28px;
  }

  .padel-testimonials .pt-card{
    padding:16px 18px;
  }
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats .stats-item{ padding:10px; }
.stats .stats-item i{ font-size:44px; color:var(--accent-color); line-height:0; margin-right:15px; }
.stats .stats-item .purecounter{ color:var(--heading-color); font-size:40px; display:block; font-weight:700; line-height:40px; }
.stats .stats-item p{ color: color-mix(in srgb, var(--default-color), transparent 40%); padding:15px 0 0 0; margin:0; font-family:var(--heading-font); font-size:14px; }
/* --------------------------------------------------------------
# Facility – Experience More Just Padel
--------------------------------------------------------------*/
.facility-section{
  background:#efefef;              /* abu muda */
  border-top:8px solid #111111;
  border-bottom:8px solid #111111;
  padding-top:60px;
  padding-bottom:70px;
}

.facility-inner{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* ---------- HEADER ---------- */
.facility-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:18px;
}

.facility-title{
  font-size:36px;
  line-height:1.15;
  font-weight:800;
  color:#111111;
  margin:0;
}

/* nav panah kanan atas */
.facility-nav{
  display:flex;
  gap:10px;
  align-items:center;
}
.fac-nav-btn{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fac-nav-prev{
  background:#dedede;
  color:#111111;
}
.fac-nav-next{
  background:#ffffff;
  color:#111111;
}
.fac-nav-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}

/* ---------- CARD WRAPPER ---------- */
.facility-cards{
  display:flex;
  align-items:flex-start;
  gap:32px;
}

/* ---------- KARTU BESAR ---------- */
.facility-main-card{
  background:#111111;
  color:#ffffff;
  border-radius:28px;
  padding:32px 34px 30px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:30px;
  align-items:center;
  min-height:360px;
  flex:1 1 60%;
}

.fac-main-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.fac-main-image-wrap{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  max-width:380px;
  aspect-ratio:1/1;
}

/* label putih di atas foto */
.fac-pill{
  position:absolute;
  left:18px;
  top:16px;
  padding:4px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#111111;
  font-size:12px;
  font-weight:600;
  z-index:2;
}

.fac-main-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* sisi kanan kartu hitam */
.fac-main-right{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  height:100%;
}

/* 2 ikon bulat (kamera & arrow) */
.fac-main-icon-row{
  display:flex;
  justify-content:flex-end;
  gap:12px;
}

.fac-main-icon-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:transparent;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  cursor:pointer;
  transition:background .15s ease, transform .15s ease;
}
.fac-main-icon-btn:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.fac-main-text h3{
  font-size:20px;
  font-weight:700;
  margin:0 0 8px;
}
.fac-main-text p{
  font-size:12px;
  line-height:1.7;
  color:#e6e6e6;
  margin:0;
}

/* ---------- KARTU KECIL (SEJAJAR) ---------- */
.facility-small-list{
  display:flex;
  flex-direction:row;      /* dua kartu sejajar */
  gap:18px;
  flex:0 0 auto;
}

.facility-small-card{
  border-radius:26px;
  overflow:hidden;
  flex:0 0 160px;          /* lebar tiap kartu, mirip screenshot */
}

.facility-small-image-wrap{
  position:relative;
  border-radius:inherit;
  overflow:hidden;
  aspect-ratio:3/4;
}

.facility-small-image-wrap img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* pill outline putih di atas kartu kecil */
.fac-pill-outline{
  position:absolute;
  left:50%;
  top:18px;
  transform:translateX(-50%);
  width:90px;
  height:26px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.9);
}

/* teks "Facility" bawah kiri kartu kecil */
.facility-small-title{
  position:absolute;
  left:14px;
  bottom:16px;
  font-size:16px;
  font-weight:600;
  color:#ffffff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1199.98px){
  .facility-main-card{
    min-height:320px;
  }
}

@media (max-width:991.98px){
  .facility-header{
    flex-direction:column;
    gap:16px;
  }
  .facility-nav{
    align-self:flex-start;
  }
  .facility-cards{
    gap:24px;
  }
}

/* HP – kartu besar di atas, dua kartu kecil tetap sejajar di bawah */
@media (max-width:767.98px){
  .facility-section{
    padding-top:40px;
    padding-bottom:50px;
  }
  .facility-title{
    font-size:30px;
  }

  .facility-cards{
    flex-direction:column;
    align-items:stretch;
  }

  .facility-main-card{
    padding:20px 18px;
    min-height:0;
    flex:1 1 auto;
  }

  .facility-small-list{
    justify-content:flex-start;
    flex-wrap:nowrap;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .team-member{ background:var(--surface-color); overflow:hidden; border-radius:5px; box-shadow:0 2px 15px rgba(0,0,0,.1); height:100%; }
.team .team-member .member-img{ position:relative; overflow:hidden; }
.team .team-member .social{ position:absolute; left:0; bottom:30px; right:0; opacity:0; transition:ease-in-out .3s; text-align:center; }
.team .team-member .social a{
  background: color-mix(in srgb, var(--contrast-color), transparent 25%); color: color-mix(in srgb, #ffffff, transparent 20%);
  margin:0 3px; border-radius:4px; width:36px; height:36px; transition:ease-in-out .3s; display:inline-flex; justify-content:center; align-items:center;
}
.team .team-member .social a:hover{ color:var(--contrast-color); background:var(--accent-color); }
.team .team-member .social i{ font-size:18px; line-height:0; }
.team .team-member .member-info{ padding:25px 15px; }
.team .team-member .member-info h4{ font-weight:700; margin-bottom:5px; font-size:18px; color:var(--contrast-color); }
.team .team-member .member-info span{ display:block; font-size:13px; font-weight:400; color: color-mix(in srgb, var(--default-color), transparent 40%); }
.team .team-member:hover .social{ opacity:1; bottom:15px; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-item i{ color:#fff; background:var(--accent-color); font-size:20px; width:44px; height:44px; display:flex; justify-content:center; align-items:center; border-radius:4px; transition: all .3s ease-in-out; margin-right:15px; }
.contact .info-item h3{ padding:0; font-size:18px; font-weight:700; margin-bottom:5px; color:#3E1E04; }
.contact .info-item p{ padding:0; margin-bottom:0; font-size:14px; color:#3E1E04; }

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details .service-box{ background:var(--surface-color); padding:20px; box-shadow:0 2px 20px rgba(0,0,0,.1); }
.service-details .service-box+.service-box{ margin-top:30px; }
.service-details .service-box h4{ font-size:20px; font-weight:700; border-bottom:2px solid color-mix(in srgb, var(--default-color), transparent 92%); padding-bottom:15px; margin-bottom:15px; }
.service-details .services-list{ background:var(--surface-color); }
.service-details .services-list a{
  color: color-mix(in srgb, var(--default-color), transparent 20%); background: color-mix(in srgb, var(--default-color), transparent 96%);
  display:flex; align-items:center; padding:12px 15px; margin-top:15px; transition:.3s;
}
.service-details .services-list a:first-child{ margin-top:0; }
.service-details .services-list a i{ font-size:16px; margin-right:8px; color:var(--accent-color); }
.service-details .services-list a.active{ color:var(--contrast-color); background:var(--accent-color); }
.service-details .services-list a.active i{ color:var(--contrast-color); }
.service-details .services-list a:hover{ background: color-mix(in srgb, var(--accent-color), transparent 95%); color:var(--accent-color); }
.service-details .download-catalog a{ color:var(--default-color); display:flex; align-items:center; padding:10px 0; transition:.3s; border-top:1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.service-details .download-catalog a:first-child{ border-top:0; padding-top:0; }
.service-details .download-catalog a:last-child{ padding-bottom:0; }
.service-details .download-catalog a i{ font-size:24px; margin-right:8px; color:var(--accent-color); }
.service-details .download-catalog a:hover{ color:var(--accent-color); }
.service-details .help-box{ background:var(--accent-color); color:var(--contrast-color); margin-top:30px; padding:30px 15px; }
.service-details .help-box .help-icon{ font-size:48px; }
.service-details .help-box h4,.service-details .help-box a{ color:var(--contrast-color); }
.service-details .services-img{ margin-bottom:20px; }
.service-details h3{ font-size:26px; font-weight:700; }
.service-details p{ font-size:15px; }
.service-details ul{ list-style:none; padding:0; font-size:15px; }
.service-details ul li{ padding:5px 0; display:flex; align-items:center; }
.service-details ul i{ font-size:20px; margin-right:8px; color:var(--accent-color); }

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section{}
