/* =========================================================
   DR IZZI DENTAL CLINIC LANDING PAGE CSS
   Tema: Light Turquoise + Light Orange + White + Black
   Susunan CSS dilabel ikut section supaya senang edit.
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLE / WARNA UTAMA
   ========================================================= */
:root{
  --white:#ffffff;
  --black:#111827;
  --text:#1f2933;
  --text-soft:#5f6f74;

  --turquoise:#39cfc4;
  --turquoise-main:#17b8ad;
  --turquoise-dark:#087c75;
  --turquoise-soft:#e8fbf9;
  --turquoise-pale:#f3fffd;

  --orange:#ff9b54;
  --orange-main:#f58232;
  --orange-soft:#fff0e4;

  --line:rgba(8,124,117,0.15);
  --shadow:0 22px 55px rgba(14,110,101,0.13);
  --shadow-card:0 16px 36px rgba(17,24,39,0.09);

  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:18px;
  --radius-sm:12px;

  --font-display:'Sora',sans-serif;
  --font-body:'Inter',sans-serif;
}

/* =========================================================
   02. RESET ASAS
   ========================================================= */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  background:var(--white);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img,
svg{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font-family:inherit;
}

h1,
h2,
h3{
  margin:0;
  font-family:var(--font-display);
  letter-spacing:-0.02em;
}

h4,
p,
ul{
  margin:0;
}

ul{
  padding:0;
  list-style:none;
}

:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:3px;
}

/* =========================================================
   03. GLOBAL LAYOUT
   ========================================================= */
.wrap{
  width:min(1140px, calc(100% - 40px));
  margin:0 auto;
}

.section{
  position:relative;
  padding:92px 0;
}

.section:nth-of-type(even){
  background:linear-gradient(180deg, var(--turquoise-pale), var(--white));
}

.section-head{
  max-width:680px;
  margin-bottom:46px;
}

.section-head.center,
.center{
  text-align:center;
  margin-inline:auto;
}

.section-head h2{
  margin-top:14px;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.15;
  color:var(--black);
}

.section-head p{
  margin-top:14px;
  color:var(--text-soft);
  font-size:17px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--turquoise-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:26px;
  height:3px;
  border-radius:99px;
  background:var(--orange-main);
}

/* =========================================================
   04. BUTTON STYLE
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:14px 26px;
  border:2px solid transparent;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
  transition:0.22s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--orange), var(--orange-main));
  color:var(--white);
  box-shadow:0 14px 30px rgba(245,130,50,0.28);
}

.btn-secondary{
  background:linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color:var(--white);
  box-shadow:0 14px 30px rgba(23,184,173,0.26);
}

.btn-ghost{
  background:var(--white);
  color:var(--turquoise-dark);
  border-color:rgba(8,124,117,0.18);
}

.btn-block{
  width:100%;
}

.btn svg{
  width:18px;
  height:18px;
  flex-shrink:0;
}

/* =========================================================
   05. HEADER / NAVIGATION
   ========================================================= */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;

  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  min-width:150px;
}

.brand-logo{
  width:150px;
  height:auto;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  font-size:14px;
  font-weight:800;
}

.nav-links a{
  color:var(--text-soft);
  transition:0.2s ease;
}

.nav-links a:hover{
  color:var(--orange-main);
}

.nav-cta{
  display:flex;
  align-items:center;
}


/* =========================================================
   05. HERO  poster
   ========================================================= */


.poster-hero{
    width:100%;
    padding-top:0.1px;   /* ikut tinggi navbar */
    background:#fff;
}

.poster-hero picture{
    display:block;
}

.poster-hero img{
    display:block;
    width:100%;
    height:auto;
}

/* =========================================================
   06. HERO / MAIN PAGE
   Soft background klinik + classy trust card
   ========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.62),
      rgba(232,251,249,0.55)
    ),
    url('mainpage.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

@media (max-width:768px){

.hero{
    background-image:url('mainpage.png');
}

}

.hero::before{
  content:"";
  position:absolute;
  top:-130px;
  right:-130px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(57,207,196,0.22);
  filter:blur(8px);
}

.hero::after{
  content:"";
  position:absolute;
  bottom:40px;
  left:-120px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,155,84,0.18);
  filter:blur(6px);
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:830px;
  margin:0 auto;
  padding:0 20px 46px;
  text-align:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:22px;
  padding:9px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.88);
  color:var(--text-soft);
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 28px rgba(8,124,117,0.08);
}

.hero-badge .star{
  color:var(--orange-main);
}

.hero h1{
  color:var(--black);
  font-size:clamp(36px, 6vw, 64px);
  line-height:1.08;
}

.hero h1 em{
  display:block;
  margin-top:10px;
  color:var(--turquoise-dark);
  font-style:normal;
  font-size:clamp(24px, 3.6vw, 39px);
}

.hero-sub{
  max-width:620px;
  margin:22px auto 0;
  color:var(--text-soft);
  font-size:18px;
}

.hero-cta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.hero-stats{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-top:42px;
}

.hero-stat{
  min-width:150px;
  padding:16px 22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,0.82);
  box-shadow:0 14px 32px rgba(8,124,117,0.08);
  text-align:center;
}

.hero-stat strong{
  display:block;
  color:var(--orange-main);
  font-family:var(--font-display);
  font-size:28px;
}

.hero-stat span{
  display:block;
  margin-top:2px;
  color:var(--text-soft);
  font-size:13px;
  font-weight:700;
}

.hero-trust{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:20px;
  align-items:end;
  padding-bottom:42px;
}

.hero-photo{
  min-height:270px;
  border:10px solid rgba(255,255,255,0.8);
  border-radius:34px;
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
}

.hero-photo-main{
  background-image:url('mainpage.png');
}

.hero-mini-card{
  padding:26px;
  border-radius:28px;
  background:linear-gradient(135deg, var(--turquoise-dark), var(--turquoise-main));
  color:var(--white);
  box-shadow:var(--shadow);
}

.hero-mini-card strong{
  display:block;
  font-family:var(--font-display);
  font-size:22px;
  line-height:1.2;
}

.hero-mini-card span{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,0.86);
  font-size:14px;
}

/* =========================================================
   07. MARQUEE BENEFIT
   ========================================================= */
.marquee{
  position:relative;
  z-index:2;
  overflow:hidden;
  white-space:nowrap;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--turquoise-dark);
  padding:15px 0;
}

.marquee-track{
  display:inline-flex;
  gap:44px;
  animation:marquee 24s linear infinite;
}

.marquee-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  font-size:14px;
  font-weight:800;
}

.marquee-item::before{
  content:"●";
  color:var(--orange);
  font-size:9px;
}

@keyframes marquee{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}
/* =========================================================
   08. SYMPTOM POSTER SECTION
   ========================================================= */

.symptom-poster{
    background:linear-gradient(180deg,#f2fffd,#ffffff);
}

.symptom-poster-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* ================= CARD ================= */

.poster-chip{

    position:relative;

    min-height:330px;

    padding:60px 34px 34px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(20,184,166,.18);

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 45px rgba(8,124,117,.08),
    inset 0 1px 0 rgba(255,255,255,.95);

    transition:.35s ease;

    cursor:pointer;

}

/* ================= TOP LINE ================= */

.poster-chip::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
    90deg,
    #ff8a1d,
    #16b6aa);

}

/* ================= DECORATION ================= */

.poster-chip::after{

    content:"";

    position:absolute;

    top:-85px;
    left:-85px;

    width:170px;
    height:170px;

    border-radius:50%;

    background:rgba(20,184,166,.12);

}

/* ================= TITLE ================= */

.poster-chip h3{

    position:relative;
    z-index:5;

    max-width:320px;

    margin:0 auto 18px;

    color:#07192f;

    font-size:30px;

    font-weight:900;

    line-height:1.12;

    letter-spacing:-1px;

}

/* ================= DESCRIPTION ================= */

.poster-chip p{

    position:relative;
    z-index:5;

    max-width:300px;

    margin:0 auto 32px;

    color:#5b6c76;

    font-size:17px;

    line-height:1.6;

}

/* ================= BUTTON ================= */

.poster-cta{

    position:relative;
    z-index:10;

    display:flex;

    align-items:center;
    justify-content:center;

    width:195px;
    height:54px;

    margin-top:auto;
    margin-left:auto;
    margin-right:auto;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    #18b4aa,
    #0b8f87) !important;

    color:#fff !important;

    font-size:16px;

    font-weight:900;

    line-height:1;

    white-space:nowrap;

    box-shadow:
    0 14px 30px rgba(15,159,148,.25);

    transition:.3s;

}

/* ================= HOVER ================= */

.poster-chip:hover{

    transform:
    translateY(-10px);

    border-color:#16b6aa;

    box-shadow:
    0 28px 60px rgba(8,124,117,.18);

}

.poster-chip:hover .poster-cta{

    background:linear-gradient(
    135deg,
    #ff9a32,
    #ff7b00) !important;

    transform:translateY(-2px);

}

/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

.symptom-poster-grid{

grid-template-columns:repeat(2,1fr);

}

.poster-chip{

min-height:310px;

}

}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

.symptom-poster{

padding:72px 0;

}

.symptom-head h2{

font-size:30px;
line-height:1.15;

}

.symptom-head p{

font-size:15px;

}

.symptom-poster-grid{

grid-template-columns:1fr;

gap:18px;

}

.poster-chip{

min-height:auto;

padding:48px 24px 30px;

border-radius:24px;

}

.poster-chip::before{

height:4px;

}

.poster-chip::after{

width:135px;
height:135px;

top:-65px;
left:-65px;

}

.poster-chip h3{

max-width:280px;

margin-bottom:14px;

font-size:23px;

line-height:1.18;

letter-spacing:-.5px;

}

.poster-chip p{

max-width:270px;

margin-bottom:24px;

font-size:15px;

line-height:1.55;

}

.poster-cta{

width:175px;

height:48px;

margin:0 auto;

font-size:14px;

}

}
/* =========================================================
   09. CHECKLIST / REAL TALK SECTION
   ========================================================= */
.checklist{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:680px;
}

.checklist li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  font-size:16px;
}

.checklist .check{
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  flex-shrink:0;
  border-radius:50%;
  background:linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color:var(--white);
  font-size:13px;
  font-weight:900;
}

.checklist-note{
  max-width:690px;
  margin-top:30px;
  padding:20px 24px;
  border-left:6px solid var(--orange-main);
  border-radius:20px;
  background:var(--orange-soft);
  color:var(--black);
  font-weight:800;
}

/* =========================================================
   10. PROBLEM ESCALATION SECTION
   ========================================================= */
.escalation-row{
  display:flex;
  align-items:stretch;
  gap:8px;
  margin-top:42px;
  overflow-x:auto;
  padding-bottom:12px;
}

.escalation-step{
  min-width:170px;
  flex:1;
  padding:22px 16px;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  text-align:center;
}

.escalation-step .num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin:0 auto 14px;
  border-radius:50%;
  background:var(--turquoise-soft);
  color:var(--turquoise-dark);
  font-family:var(--font-display);
  font-weight:900;
}

.escalation-step.final{
  background:var(--orange-soft);
  border-color:rgba(245,130,50,0.25);
}

.escalation-step.final .num{
  background:var(--orange-main);
  color:var(--white);
}

.escalation-step h4{
  color:var(--black);
  font-size:15px;
}

.escalation-step p{
  margin-top:6px;
  color:var(--text-soft);
  font-size:13px;
}

.escalation-arrow{
  display:flex;
  align-items:center;
  color:var(--orange-main);
  font-size:22px;
  font-weight:900;
}

/* =========================================================
   11. COMPARE LIST SECTION
   ========================================================= */
.compare-list{
  display:grid;
  gap:14px;
  max-width:720px;
}

.compare-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px 22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}

.compare-row .mark{
  font-weight:900;
}

.compare-row.bad .mark{
  color:#e24b4b;
}

.compare-row.good{
  background:var(--turquoise-soft);
  border-color:rgba(23,184,173,0.24);
}

.compare-row.good .mark{
  color:var(--turquoise-dark);
}

/* =========================================================
   12. RAWATAN / SERVICES SECTION
   Cards ada gambar supaya nampak trust, premium dan tak kosong
   ========================================================= */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.service-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:430px;
  padding:0;
  border:1px solid var(--line);
  border-radius:30px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  transition:0.25s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(23,184,173,0.35);
  box-shadow:0 28px 58px rgba(8,124,117,0.18);
}

.service-image-wrap{
  position:relative;
  width:100%;
  height:210px;
  overflow:hidden;
  background:var(--turquoise-soft);
}

.service-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:0.45s ease;
}

.service-card:hover .service-image{
  transform:scale(1.06);
}

.service-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.02),
    rgba(8,124,117,0.20)
  );
  pointer-events:none;
}
.service-tag{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:3;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 18px;
  border-radius:999px;

  background:linear-gradient(135deg,var(--turquoise-main),var(--turquoise-dark));
  color:#fff;

  font-size:13px;
  font-weight:900;
  line-height:1;
  box-shadow:0 14px 28px rgba(8,124,117,.28);
  transition:.25s ease;
}

.service-tag::after{
  content:"→";
  font-weight:900;
}

.service-tag:hover{
  transform:translateY(-3px) scale(1.03);
  background:linear-gradient(135deg,var(--orange),var(--orange-main));
  box-shadow:0 18px 34px rgba(245,130,50,.30);
}

.service-tag i{
  font-size:15px;
}

.service-content{
  position:relative;
  flex:1;
  padding:30px 28px 32px;
}

.service-card .ico{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  margin:0 0 18px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--orange-soft), #fff7f0);
  color:var(--orange-main);
  box-shadow:0 12px 24px rgba(245,130,50,0.10);
}

.service-card .ico svg{
  width:24px;
  height:26px;
  color:var(--orange-main);
  fill:var(--orange-main);
}

.service-card h3{
  color:var(--black);
  font-size:20px;
  line-height:1.25;
}

.service-card p{
  margin-top:12px;
  color:var(--text-soft);
  font-size:15px;
}

/* Responsive card rawatan */
@media(max-width:900px){

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

}

@media(max-width:600px){

  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .service-image-wrap{
    height:185px;
  }

  .service-content{
    padding:26px 24px 28px;
    text-align:center;
  }

  .service-card .ico{
    margin-inline:auto;
  }

}


/* =========================================================
   13. WHY US SECTION
   ========================================================= */
.why-section{
  position:relative;
  overflow:hidden;
  margin:0 24px;
  padding:76px 0;
  border-radius:40px;
  background:
    radial-gradient(circle at top right, rgba(255,155,84,0.28), transparent 36%),
    linear-gradient(135deg, var(--turquoise-dark), #13aaa1);
  color:var(--white);
}

.why-section .wrap{
  width:min(1120px, calc(100% - 48px));
}

.why-section .eyebrow{
  color:var(--orange-soft);
}

.why-section .eyebrow::before{
  background:var(--orange);
}

.why-section h2{
  color:var(--white);
}

.why-section .section-head p{
  color:rgba(255,255,255,0.82);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.why-card{
  min-height:170px;
  padding:25px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:24px;
  background:rgba(255,255,255,0.11);
  backdrop-filter:blur(12px);
}

.why-card h3{
  color:var(--white);
  font-size:17px;
}

.why-card p{
  margin-top:9px;
  color:rgba(255,255,255,0.76);
  font-size:14px;
}

/* =========================================================
   14. DOCTOR SECTION
   ========================================================= */
.doctor-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.doctor-card{
  display:flex;
  align-items:center;
  gap:22px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(135deg, var(--white), var(--turquoise-pale));
  box-shadow:var(--shadow-card);
}

.doctor-photo{
  width:132px;
  height:132px;
  flex-shrink:0;
  border:7px solid var(--white);
  border-radius:26px;
  object-fit:cover;
  background:var(--turquoise-soft);
  box-shadow:0 12px 26px rgba(8,124,117,0.14);
}

.doctor-card h3{
  color:var(--black);
  font-size:20px;
}

.doctor-card .role{
  margin-top:4px;
  color:var(--orange-main);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

.doctor-card p{
  margin-top:10px;
  color:var(--text-soft);
  font-size:14.5px;
}

/* =========================================================
   15. GALLERY SECTION
   ========================================================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.gallery-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}

.gallery-card img{
  width:100%;
  height:245px;
  object-fit:cover;
}

.gallery-card .cap{
  padding:16px 18px;
  color:var(--text-soft);
  font-size:14px;
  font-weight:800;
}

/* =========================================================
   16. STEP VISUAL + BOOKING FORM
   ========================================================= */
.steps-visual{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
  margin:50px 0 18px;
}

.tooth-step{
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:center;
  max-width:230px;
  text-align:center;
}

.tooth-shell{
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  border:2px solid var(--line);
  border-radius:22px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}

.tooth-shell svg{
  width:25px;
  height:29px;
  fill:#a7b7b5;
}

.tooth-step[data-state="active"] .tooth-shell{
  border-color:var(--orange-main);
  background:var(--orange-main);
}

.tooth-step[data-state="active"] .tooth-shell svg,
.tooth-step[data-state="done"] .tooth-shell svg{
  fill:var(--white);
}

.tooth-step[data-state="done"] .tooth-shell{
  border-color:var(--turquoise-dark);
  background:var(--turquoise-dark);
}

.tooth-step .label{
  margin-top:12px;
  color:var(--black);
  font-weight:900;
  font-size:14px;
}

.tooth-step .sub{
  margin-top:2px;
  color:var(--text-soft);
  font-size:12px;
}

.tooth-connector{
  width:70px;
  height:2px;
  margin-top:34px;
  background:var(--line);
}

.booking-section{
  background:linear-gradient(180deg, var(--turquoise-pale), var(--white));
}

.booking-card{
  max-width:680px;
  margin:0 auto;
  padding:38px;
  border:1px solid var(--line);
  border-radius:32px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.form-panel{
  display:none;
}

.form-panel.is-active{
  display:block;
}

.field{
  margin-bottom:18px;
}

.field label{
  display:block;
  margin-bottom:7px;
  color:var(--black);
  font-size:14px;
  font-weight:800;
}

.field input,
.field select{
  width:100%;
  padding:14px 16px;
  border:1.5px solid var(--line);
  border-radius:14px;
  background:var(--turquoise-pale);
  color:var(--black);
  font-family:inherit;
  font-size:15px;
}

.field input:focus,
.field select:focus{
  border-color:var(--turquoise-main);
  outline:none;
  background:var(--white);
}

.slot-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.slot{
  padding:12px 6px;
  border:1.5px solid var(--line);
  border-radius:14px;
  background:var(--white);
  color:var(--black);
  font-size:13.5px;
  font-weight:800;
  cursor:pointer;
}

.slot.selected,
.slot:hover{
  border-color:var(--turquoise-dark);
  background:var(--turquoise-dark);
  color:var(--white);
}

.form-actions{
  display:flex;
  gap:12px;
  margin-top:26px;
}

.form-actions .btn{
  flex:1;
}

.summary-box{
  padding:20px;
  border-radius:20px;
  background:var(--turquoise-pale);
  font-size:14.5px;
}

.summary-box div{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:8px 0;
  border-bottom:1px solid var(--line);
}

.summary-box div:last-child{
  border-bottom:none;
}

.summary-box span:first-child{
  color:var(--text-soft);
}

.summary-box span:last-child{
  color:var(--black);
  font-weight:900;
  text-align:right;
}

.note-line{
  margin-top:16px;
  color:var(--text-soft);
  font-size:13px;
  text-align:center;
}

/* MOBILE STEP VISUAL - MUAT 3 STEP SEBARIS */
@media (max-width: 600px){

  .steps-visual{
    display:grid;
    grid-template-columns:1fr 34px 1fr 34px 1fr;
    align-items:start;
    width:100%;
    margin:32px auto 18px;
    padding:0 4px;
  }

  .tooth-step{
    width:100%;
    max-width:none;
    min-width:0;
  }

  .tooth-shell{
    width:66px;
    height:66px;
    border-radius:20px;
  }

  .tooth-shell svg{
    width:22px;
    height:26px;
  }

  .tooth-connector{
    width:26px;
    height:2px;
    margin-top:33px;
    background:var(--line);
  }

  .tooth-step .label{
    font-size:13px;
    line-height:1.35;
    margin-top:10px;
  }

  .tooth-step .sub{
    font-size:12px;
    line-height:1.45;
    max-width:90px;
  }
}

/* =========================================================
   17. STATS STRIP
   ========================================================= */

.stats-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.stat-card{
  padding:28px 14px;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  text-align:center;
}

.stat-card strong{
  display:inline-flex;
  align-items:baseline;
  justify-content:center;
  gap:2px;

  color:var(--turquoise-dark);
  font-family:var(--font-display);
  font-size:32px;
  line-height:1;
  white-space:nowrap;
}

.stat-card strong .counter{
  display:inline;
  margin-top:0;
  color:inherit;
  font-size:inherit;
  font-weight:inherit;
}

.stat-card > span{
  display:block;
  margin-top:10px;
  color:var(--text-soft);
  font-size:13px;
  font-weight:800;
}

/* =========================================================
   18. TESTIMONIAL SECTION
   ========================================================= */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.testi-card{
  padding:26px;
  border:1px solid var(--line);
  border-radius:28px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}

.testi-card .stars{
  margin-bottom:12px;
  color:var(--orange-main);
  font-size:14px;
}

.testi-card p{
  color:var(--text);
  font-size:14.5px;
}

.testi-card .who{
  margin-top:16px;
  color:var(--turquoise-dark);
  font-size:13.5px;
  font-weight:900;
}

/* =========================================================
   19. TRUST BADGES
   ========================================================= */
.badge-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  color:var(--black);
  font-size:13.5px;
  font-weight:900;
}

.badge-pill svg{
  width:14px;
  height:14px;
  fill:var(--turquoise-dark);
}

/* =========================================================
   20. GUARANTEE SECTION
   ========================================================= */
.guarantee-list{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:680px;
}

.guarantee-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px;
  border-radius:20px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}

.guarantee-list .check{
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--orange-main);
  color:var(--white);
  font-weight:900;
}

/* =========================================================
   21. PAKEJ / PRICING SECTION
   Design pakej diubah lebih premium & jelas
   ========================================================= */
.promo-banner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:40px;
  padding:17px 24px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--turquoise-dark), var(--turquoise-main));
  color:var(--white);
  font-size:14px;
  font-weight:900;
  text-align:center;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.price-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:32px;
  border:1px solid var(--line);
  border-radius:32px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  transition:0.22s ease;
}

.price-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:8px;
  background:linear-gradient(90deg, var(--turquoise), var(--orange));
}

.price-card:hover{
  transform:translateY(-6px);
}

.price-card.hot{
  border:2px solid var(--orange-main);
  box-shadow:0 24px 58px rgba(245,130,50,0.18);
}

.price-card.hot::after{
  content:"Popular";
  position:absolute;
  top:18px;
  right:18px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--orange-main);
  color:var(--white);
  font-size:11px;
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.price-card h3{
  padding-right:82px;
  color:var(--black);
  font-size:20px;
}

.price-card .price{
  margin-top:18px;
  color:var(--turquoise-dark);
  font-family:var(--font-display);
  font-size:34px;
  font-weight:900;
}

.price-card .price small{
  color:var(--text-soft);
  font-size:13px;
  font-weight:800;
}

.price-card .desc{
  margin-top:8px;
  color:var(--text-soft);
  font-size:14px;
}

.price-card ul{
  display:flex;
  flex-grow:1;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
}

.price-card li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:var(--text);
  font-size:14px;
}

.price-card li::before{
  content:"✓";
  color:var(--turquoise-dark);
  font-weight:900;
}

.price-card .btn{
  margin-top:24px;
}

.price-note{
  margin-top:28px;
  color:var(--text-soft);
  font-size:13px;
  text-align:center;
}

/* =========================================================
   22. PAYMENT REASSURANCE SECTION
   ========================================================= */
.payment-block{
  display:flex;
  align-items:center;
  gap:24px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(135deg, var(--white), var(--orange-soft));
  box-shadow:var(--shadow-card);
}

.payment-block .ico-big{
  display:flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  flex-shrink:0;
  border-radius:20px;
  background:var(--turquoise-dark);
}

.payment-block .ico-big svg{
  width:28px;
  height:28px;
  fill:var(--white);
}

.payment-block .text{
  flex:1;
}

.payment-block h3{
  color:var(--black);
  font-size:20px;
}

.payment-block p{
  margin-top:7px;
  color:var(--text-soft);
  font-size:14.5px;
}

/* =========================================================
   23. FAQ SECTION
   ========================================================= */
.faq-item{
  padding:20px 0;
  border-bottom:1px solid var(--line);
}

.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--black);
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}

.faq-q .plus{
  color:var(--orange-main);
  font-size:24px;
  transition:0.2s ease;
}

.faq-item.open .faq-q .plus{
  transform:rotate(45deg);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.25s ease;
}

.faq-a p{
  padding-top:12px;
  color:var(--text-soft);
  font-size:15px;
}

/* =========================================================
   24. CTA BANNER
   ========================================================= */
.cta-banner{
  margin:0 24px;
  padding:64px 36px;
  border-radius:40px;
  background:
    radial-gradient(circle at top left, rgba(57,207,196,0.32), transparent 35%),
    linear-gradient(135deg, var(--orange-main), #ffad6d);
  color:var(--white);
  text-align:center;
}

.cta-banner h2{
  color:var(--white);
  font-size:clamp(26px, 4vw, 38px);
}

.cta-banner p{
  max-width:620px;
  margin:12px auto 0;
  color:rgba(255,255,255,0.88);
}

.cta-banner .btn-primary{
  background:var(--white);
  color:var(--orange-main);
}

.cta-banner .btn-ghost{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.5);
}

/* =========================================================
   25. FOOTER
   Kecil macam contoh, tapi guna light turquoise bukan kelabu.
   ========================================================= */
footer{
  padding:42px 0 18px;
  background:linear-gradient(135deg, #dffaf7, #f4fffd);
  color:var(--text-soft);
  font-size:13px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 0.8fr 1fr;
  gap:30px;
  padding-bottom:22px;
}

.footer-grid .brand-logo{
  width:138px;
}

.footer-grid h4{
  margin-bottom:10px;
  color:var(--black);
  font-size:13px;
  font-weight:900;
}

.footer-grid li{
  margin-bottom:7px;
}

.footer-grid a{
  color:var(--turquoise-dark);
  font-weight:800;
}

.footer-grid a:hover{
  color:var(--orange-main);
}

.footer-disclaimer{
  padding-top:16px;
  border-top:1px solid var(--line);
  color:var(--text-soft);
  font-size:11.5px;
  line-height:1.55;
}

.footer-bottom{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color:var(--text-soft);
  font-size:11.5px;
  text-align:center;
}

/* =========================================================
   26. RESPONSIVE TABLET
   ========================================================= */
@media (max-width:980px){
  .nav-links{
    gap:14px;
    font-size:13px;
  }

  .hero-trust{
    grid-template-columns:1fr;
  }

  .chip-grid,
  .service-grid,
  .gallery-grid,
  .pricing-grid,
  .testi-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .why-grid,
  .stats-strip{
    grid-template-columns:repeat(2, 1fr);
  }

  .doctor-grid{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   27. RESPONSIVE MOBILE
   ========================================================= */
@media (max-width:760px){
  .wrap{
    width:min(100% - 28px, 1140px);
  }

  .section{
    padding:70px 0;
  }

  .section-head{
    margin-inline:auto;
    margin-bottom:34px;
    text-align:center;
  }

  .eyebrow{
    justify-content:center;
  }

  .nav{
    padding:12px 0;
  }

  .brand-logo{
    width:125px;
  }

  .nav-links{
    display:none;
  }

  .nav-cta .btn{
    min-height:42px;
    padding:10px 16px;
    font-size:13px;
  }

  .hero{
    padding:62px 0 0;
  }

  .hero h1{
    font-size:clamp(29px, 8vw, 38px);
    line-height:1.2;
  }

  .hero h1 em{
    font-size:clamp(21px, 6vw, 27px);
  }

  .hero-sub{
    font-size:15px;
  }

  .hero-badge{
    flex-wrap:wrap;
    justify-content:center;
    font-size:11px;
    text-align:center;
  }

  .hero-cta .btn{
    width:100%;
  }

  .hero-stat{
    min-width:130px;
    flex:1;
  }

  .hero-photo{
    min-height:210px;
    border-width:7px;
    border-radius:26px;
  }

  .hero-mini-card{
    text-align:center;
  }

  .chip-grid,
  .service-grid,
  .gallery-grid,
  .pricing-grid,
  .testi-grid,
  .why-grid,
  .stats-strip{
    grid-template-columns:1fr;
  }

  .chip{
    text-align:left;
  }

  .checklist,
  .compare-list,
  .guarantee-list{
    margin-inline:auto;
  }

  .checklist li,
  .compare-row,
  .guarantee-list li{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .checklist-note{
    margin-inline:auto;
    text-align:center;
  }

  .why-section,
  .cta-banner{
    margin:0 14px;
    border-radius:28px;
  }

  .doctor-card{
    flex-direction:column;
    text-align:center;
  }

  .doctor-photo{
    width:150px;
    height:150px;
  }

  .steps-visual{
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:10px;
  }

  .tooth-step{
    min-width:115px;
  }

  .tooth-connector{
    min-width:30px;
    width:30px;
  }

  .booking-card{
    padding:24px;
    border-radius:26px;
  }

  .slot-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .form-actions{
    flex-direction:column;
  }

  .payment-block{
    flex-direction:column;
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
  }

  .footer-grid .brand{
    justify-content:center;
  }
}

/* =========================================================
   28. ACCESSIBILITY / REDUCE MOTION
   ========================================================= */
@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:0.001ms !important;
    scroll-behavior:auto !important;
    transition-duration:0.001ms !important;
  }
}


/* =========================================================
   99. FINAL RESPONSIVE POLISH / KEMAS KINI LATEST
   Fungsi:
   - Saiz desktop dan mobile lebih normal
   - Semua tajuk section center
   - Padding kiri kanan lebih selesa
   - Hero mobile tidak terlalu besar
   - Section tidak nampak kosong/plain
   ========================================================= */

/* ---------- 99.1 Global spacing & typography ---------- */
:root{
  --bg-soft:#eafbf8;
}

body{
  padding-top:82px;
}

.wrap{
  width:min(1180px, calc(100% - 48px));
}

.section{
  padding:78px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-head .eyebrow{
  justify-content:center;
}

.section-head h2{
  font-size:clamp(28px, 3.4vw, 42px);
  font-weight:800;
  line-height:1.18;
}

.section-head p{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
  font-size:16px;
  line-height:1.75;
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.14em;
}

/* ---------- 99.2 Header desktop & mobile normal size ---------- */
header{
  min-height:82px;
  box-shadow:0 8px 26px rgba(8,124,117,0.06);
}

.nav{
  min-height:82px;
  padding:10px 0;
}

.brand-logo{
  width:145px;
  max-height:62px;
  object-fit:contain;
}

.nav-links{
  gap:28px;
}

.nav-links a{
  font-size:14px;
}

.nav .btn{
  min-height:46px;
  padding:12px 24px;
  font-size:14px;
}

/* ---------- 99.3 Hero desktop polish ---------- */
.hero{
  min-height:calc(100vh - 82px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:70px 0 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.70),
      rgba(232,251,249,0.62)
    ),
    url('mainpage.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-inner{
  max-width:780px;
  padding:0 20px 36px;
}

.hero-badge{
  margin-bottom:18px;
  font-size:12px;
}

.hero h1{
  font-size:clamp(34px, 4.8vw, 56px);
  line-height:1.08;
  font-weight:800;
}

.hero h1 em{
  font-size:clamp(22px, 3.2vw, 34px);
  line-height:1.15;
  font-weight:800;
}

.hero-sub{
  max-width:640px;
  margin-top:20px;
  font-size:16.5px;
  line-height:1.75;
}

.hero-cta{
  margin-top:28px;
}

.hero-cta .btn{
  min-width:220px;
}

.hero-stats{
  margin-top:32px;
}

.hero-stat{
  min-width:135px;
  padding:14px 18px;
}

.hero-stat strong{
  font-size:25px;
}

.hero-trust{
  grid-template-columns:minmax(0, 1fr) 300px;
  max-width:860px;
  padding-bottom:34px;
}

.hero-photo{
  min-height:220px;
  border-width:8px;
  border-radius:28px;
}

.hero-mini-card{
  padding:22px;
  border-radius:24px;
}

.hero-mini-card strong{
  font-size:19px;
}

.hero-mini-card span{
  font-size:13.5px;
}

/* ---------- 99.4 Section backgrounds supaya tak kosong ---------- */
.symptoms,
.booking-section{
  background:
    radial-gradient(circle at top left, rgba(255,155,84,0.13), transparent 28%),
    radial-gradient(circle at bottom right, rgba(57,207,196,0.18), transparent 32%),
    linear-gradient(180deg, #f2fffd, #ffffff);
}

.section:not(.symptoms):not(.booking-section)::before{
  content:"";
  position:absolute;
  inset:auto 7% 28px auto;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(57,207,196,0.08);
  filter:blur(2px);
  pointer-events:none;
}

.checklist,
.compare-list,
.guarantee-list{
  margin-left:auto;
  margin-right:auto;
}

/* ---------- 99.5 Symptom chips better balance ---------- */
.symptom-head h2{
  font-size:clamp(30px, 3.8vw, 46px);
}

.symptom-head p{
  font-size:16.5px;
}

.chip-grid{
  gap:18px;
}

.chip{
  min-height:100px;
  padding:22px;
}

.chip .tooth-ico{
  width:52px;
  height:52px;
  border-radius:18px;
  font-size:23px;
}

.chip-label{
  font-size:16px;
}

/* ---------- 99.6 Service cards compact and premium ---------- */
.service-grid{
  gap:22px;
}

.service-card{
  min-height:auto;
  border-radius:26px;
}

.service-image-wrap{
  height:205px;
}

.service-image{
  height:205px;
}

.service-content{
  padding:24px;
}

.service-card .ico{
  margin:0 0 14px;
}

.service-card h3{
  font-size:18px;
}

.service-card p{
  font-size:14.5px;
  line-height:1.65;
}

/* ---------- 99.7 Why, Doctor, Gallery, Pricing center polish ---------- */
.why-section .section-head,
.why-section .section-head p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.why-card,
.doctor-card,
.testi-card,
.price-card,
.gallery-card{
  transition:0.25s ease;
}

.why-card:hover,
.doctor-card:hover,
.testi-card:hover,
.price-card:hover,
.gallery-card:hover{
  transform:translateY(-5px);
}

.doctor-card{
  align-items:center;
}

.doctor-photo{
  object-fit:cover;
}

/* ---------- 99.8 Tablet responsive ---------- */
@media(max-width:900px){

  body{
    padding-top:76px;
  }

  header,
  .nav{
    min-height:76px;
  }

  .brand-logo{
    width:132px;
  }

  .nav-links{
    display:none;
  }

  .section{
    padding:66px 0;
  }

  .wrap{
    width:min(100% - 34px, 760px);
  }

  .hero{
    min-height:auto;
    padding:54px 0 0;
    background-position:center top;
  }

  .hero h1{
    font-size:clamp(30px, 7vw, 44px);
  }

  .hero h1 em{
    font-size:clamp(21px, 5vw, 30px);
  }

  .hero-trust{
    grid-template-columns:1fr;
    max-width:640px;
  }

  .hero-photo{
    min-height:220px;
  }

  .hero-mini-card{
    text-align:center;
  }

  .chip-grid,
  .service-grid,
  .pricing-grid,
  .testi-grid,
  .doctor-grid,
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* ---------- 99.9 Mobile responsive normal size ---------- */
@media(max-width:600px){

  body{
    padding-top:74px;
  }

  header,
  .nav{
    min-height:74px;
  }

  .nav{
    gap:10px;
  }

  .brand-logo{
    width:118px;
    max-height:54px;
  }

  .nav .btn{
    min-height:42px;
    padding:10px 16px;
    font-size:13px;
  }

  .nav .btn svg{
    width:16px;
    height:16px;
  }

  .wrap{
    width:calc(100% - 28px);
  }

  .section{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:30px;
  }

  .section-head h2{
    font-size:28px;
    line-height:1.2;
  }

  .section-head p{
    font-size:14.5px;
    line-height:1.7;
  }

  .eyebrow{
    font-size:10.5px;
    letter-spacing:0.12em;
  }

  .hero{
    min-height:auto;
    padding:44px 0 0;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.50),
        rgba(232,251,249,0.58)
      ),
      url('mainpage.png');
    background-size:cover;
    background-position:center top;
  }

  .hero-inner{
    padding:0 10px 30px;
  }

  .hero-badge{
    padding:7px 13px;
    font-size:11px;
    margin-bottom:16px;
  }

  .hero h1{
    font-size:30px;
    line-height:1.16;
    max-width:330px;
    margin:0 auto;
  }

  .hero h1 em{
    font-size:22px;
    line-height:1.18;
    max-width:310px;
    margin:10px auto 0;
  }

  .hero-sub{
    max-width:330px;
    margin-top:18px;
    font-size:14.5px;
    line-height:1.7;
  }

  .hero-cta{
    width:100%;
    gap:12px;
    margin-top:26px;
  }

  .hero-cta .btn{
    width:100%;
    max-width:340px;
    min-height:52px;
    font-size:14.5px;
  }

  .hero-stats{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
    max-width:340px;
    margin:28px auto 0;
  }

  .hero-stat{
    min-width:0;
    padding:14px 10px;
    border-radius:18px;
  }

  .hero-stat strong{
    font-size:24px;
  }

  .hero-stat span{
    font-size:12px;
  }

  .hero-trust{
    display:none;
  }

  .marquee{
    padding:12px 0;
  }

  .marquee-item{
    font-size:12.5px;
  }

  .chip-grid,
  .service-grid,
  .pricing-grid,
  .testi-grid,
  .doctor-grid,
  .gallery-grid,
  .why-grid,
  .stats-strip{
    grid-template-columns:1fr;
  }

  .chip{
    min-height:84px;
    padding:17px;
    border-radius:20px;
  }

  .chip .tooth-ico{
    width:46px;
    height:46px;
    border-radius:15px;
    font-size:20px;
  }

  .chip-label{
    font-size:14.5px;
    padding-right:16px;
  }

  .checklist li,
  .guarantee-list li,
  .compare-row{
    text-align:left;
    font-size:14.5px;
  }

  .checklist-note{
    padding:17px 18px;
    font-size:14px;
  }

  .escalation-row{
    display:grid;
    grid-template-columns:1fr;
    overflow:visible;
    gap:12px;
  }

  .escalation-arrow{
    display:none;
  }

  .service-image-wrap,
  .service-image{
    height:190px;
  }

  .service-content{
    padding:22px;
  }

  .why-section,
  .cta-banner{
    margin:0 14px;
    border-radius:28px;
  }

  footer{
    text-align:center;
  }
}

/* ---------- 99.10 Small mobile fix ---------- */
@media(max-width:380px){

  .hero h1{
    font-size:27px;
  }

  .hero h1 em{
    font-size:20px;
  }

  .hero-sub{
    font-size:13.8px;
  }

  .brand-logo{
    width:106px;
  }

  .nav .btn{
    padding:9px 13px;
    font-size:12.5px;
  }
}


/* =========================================================
   100. GEMPak MOBILE LATEST OVERRIDE
   Fungsi: Design lebih premium, font normal, mobile muat cantik
   ========================================================= */

/* ---------- 100.1 Global spacing & tajuk section center ---------- */
:root{
  --page-pad-desktop:44px;
  --page-pad-tablet:28px;
  --page-pad-mobile:18px;
}

body{
  padding-top:82px;
}

.wrap{
  width:min(1120px, calc(100% - var(--page-pad-desktop)));
}

.section{
  padding:78px 0;
}

.section-head{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:38px;
  text-align:center;
}

.section-head .eyebrow{
  justify-content:center;
}

.section-head h2{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(27px, 3.1vw, 42px);
  line-height:1.16;
  font-weight:800;
}

.section-head p{
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  font-size:16px;
  line-height:1.65;
}

.eyebrow{
  font-size:11.5px;
  letter-spacing:0.13em;
}

/* ---------- 100.2 Header lebih kemas ---------- */
header{
  box-shadow:0 10px 28px rgba(8,124,117,0.06);
}

.nav{
  min-height:82px;
}

.brand-logo{
  width:142px;
}

.nav-links a{
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--orange-main), var(--turquoise-main));
  transform:scaleX(0);
  transition:0.2s ease;
}

.nav-links a:hover::after{
  transform:scaleX(1);
}

/* ---------- 100.3 Hero lebih balance, tak terlalu besar ---------- */
.hero{
  padding:76px 0 0;
  min-height:auto;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.58), rgba(232,251,249,0.48)),
    url('mainpage.png');
  background-size:cover;
  background-position:center;
}

.hero-inner{
  max-width:760px;
  padding:0 18px 36px;
}

.hero h1{
  font-size:clamp(34px, 4.8vw, 58px);
  line-height:1.05;
}

.hero h1 em{
  font-size:clamp(22px, 3vw, 34px);
  line-height:1.12;
}

.hero-sub{
  max-width:590px;
  font-size:16.5px;
  line-height:1.65;
}

.hero-cta{
  margin-top:28px;
}

.hero-stats{
  margin-top:34px;
}

.hero-stat{
  min-width:132px;
  padding:14px 18px;
}

.hero-stat strong{
  font-size:25px;
}

.hero-trust{
  grid-template-columns:1fr 300px;
  max-width:920px;
}

.hero-photo{
  min-height:230px;
  border-width:8px;
  background-image:url('mainpage.png');
  opacity:0.95;
}

.hero-mini-card{
  padding:24px;
}

/* ---------- 100.4 Section background lebih hidup tapi tak serabut ---------- */
.symptoms,
.booking-section{
  background:
    radial-gradient(circle at 14% 12%, rgba(255,155,84,0.14), transparent 25%),
    radial-gradient(circle at 86% 88%, rgba(57,207,196,0.20), transparent 30%),
    linear-gradient(180deg, #effffb 0%, #ffffff 100%);
}

.section:not(.symptoms):not(.booking-section):not(.why-section){
  background:
    radial-gradient(circle at 92% 12%, rgba(57,207,196,0.10), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

/* ===================== SYMPTOM POSTER ===================== */

.poster-chip{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;      /* Semua content center */
    text-align: center;
    justify-content: flex-start;

    min-height: 215px;
    padding: 34px 28px 24px;
    overflow: hidden;
}

.poster-chip h3{
    margin-bottom: 14px;
    line-height: 1.2;
}

.poster-chip p{
    margin: 0;
    max-width: 260px;
    line-height: 1.6;
}

/* Button */
.poster-cta{
    margin-top: auto;          /* Tolak ke bawah */
    align-self: center;        /* Tengah */

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 185px;
    height: 50px;
    border-radius: 999px;

    background: linear-gradient(90deg,#1fb7b0,#12988f);
    color: #fff;
    font-weight: 700;
}

/* ---------- 100.6 Checklist / compare jadi card tengah ---------- */
.checklist,
.compare-list,
.guarantee-list{
  margin-left:auto;
  margin-right:auto;
}

.checklist li{
  padding:15px 18px;
  border:1px solid rgba(8,124,117,0.12);
  border-radius:18px;
  background:rgba(255,255,255,0.92);
  box-shadow:0 12px 26px rgba(8,124,117,0.06);
}

.checklist-note{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  border-left:0;
  border-top:5px solid var(--orange-main);
}

.compare-row{
  border-radius:18px;
}

/* ---------- 100.7 Rawatan cards lebih premium ---------- */
.service-grid{
  gap:22px;
}

.service-card{
  border-radius:28px;
  min-height:auto;
  background:var(--white);
}

.service-image-wrap,
.service-image{
  height:200px;
}

.service-content{
  padding:24px;
}

.service-content h3,
.service-card h3{
  font-size:18px;
}

.service-content p,
.service-card p{
  font-size:14.5px;
}

.service-tag{
  font-size:11px;
  padding:7px 11px;
}

/* ---------- 100.8 Booking form design baru + ayat ringkas ---------- */
.booking-section{
  padding-top:74px;
}

.booking-section .section-head h2{
  font-size:clamp(28px, 3.4vw, 42px);
}

.steps-visual{
  max-width:640px;
  margin:34px auto 26px;
  padding:18px;
  border:1px solid rgba(8,124,117,0.13);
  border-radius:28px;
  background:rgba(255,255,255,0.66);
  backdrop-filter:blur(12px);
  box-shadow:0 20px 42px rgba(8,124,117,0.08);
}

.tooth-step .tooth-shell{
  width:58px;
  height:58px;
  border-radius:18px;
}

.tooth-step .label{
  font-size:13.5px;
}

.tooth-step .sub{
  font-size:12px;
}

.tooth-connector{
  flex:0 0 44px;
  margin-top:29px;
  background:linear-gradient(90deg, rgba(245,130,50,0.25), rgba(23,184,173,0.25));
}

.booking-card{
  max-width:600px;
  border:1px solid rgba(8,124,117,0.14);
  border-radius:30px;
  box-shadow:0 28px 70px rgba(8,124,117,0.14);
}

.field label{
  font-size:14px;
}

.field input,
.field select{
  min-height:52px;
  font-size:14.5px;
}

.slot{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ---------- 100.9 Footer compact ---------- */
.site-footer{
  font-size:13.5px;
}

/* ---------- 100.10 Tablet ---------- */
@media(max-width:900px){
  body{
    padding-top:78px;
  }

  .wrap{
    width:min(100% - var(--page-pad-tablet), 720px);
  }

  .section{
    padding:66px 0;
  }

  .hero{
    padding-top:58px;
    background-position:center top;
  }

  .hero-trust{
    grid-template-columns:1fr;
    max-width:620px;
  }

  .hero-mini-card{
    text-align:center;
  }

  .service-grid,
  .pricing-grid,
  .testi-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* ---------- 100.11 Mobile fit kemas ---------- */
@media(max-width:600px){
  body{
    padding-top:74px;
  }

  .wrap{
    width:calc(100% - var(--page-pad-mobile));
  }

  .section{
    padding:52px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2{
    font-size:clamp(24px, 7vw, 31px);
    line-height:1.18;
  }

  .section-head p{
    font-size:14.5px;
    line-height:1.6;
  }

  .eyebrow{
    font-size:10.5px;
    letter-spacing:0.1em;
  }

  .nav{
    min-height:74px;
    gap:10px;
    padding:10px 0;
  }

  .brand{
    min-width:auto;
  }

  .brand-logo{
    width:122px;
  }

  .nav-links{
    display:none;
  }

  .nav-cta .btn{
    min-height:42px;
    padding:10px 15px;
    font-size:13px;
  }

  .hero{
    padding-top:36px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.48), rgba(232,251,249,0.48)),
      url('mainpage.png');
    background-size:cover;
    background-position:center top;
  }

  .hero-inner{
    padding:0 10px 28px;
  }

  .hero-badge{
    max-width:94%;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:16px;
    padding:8px 12px;
    font-size:11px;
  }

  .hero h1{
    font-size:clamp(27px, 8vw, 34px);
    line-height:1.12;
  }

  .hero h1 em{
    font-size:clamp(20px, 6vw, 25px);
    line-height:1.16;
  }

  .hero-sub{
    margin-top:16px;
    font-size:14px;
    line-height:1.58;
    color:#415259;
  }

  .hero-cta{
    gap:12px;
    margin-top:24px;
  }

  .hero-cta .btn{
    width:100%;
    min-height:52px;
    font-size:14px;
  }

  .hero-stats{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:8px;
    margin-top:26px;
  }

  .hero-stat{
    min-width:0;
    padding:13px 7px;
    border-radius:18px;
  }

  .hero-stat strong{
    font-size:22px;
  }

  .hero-stat span{
    font-size:10.5px;
  }

  .hero-trust{
    padding-bottom:28px;
    gap:14px;
  }

  .hero-photo{
    min-height:180px;
    border-width:6px;
    border-radius:24px;
    background-size:cover;
    background-position:center;
  }

  .hero-mini-card{
    padding:18px;
    border-radius:22px;
  }

  .hero-mini-card strong{
    font-size:18px;
  }

  .hero-mini-card span{
    font-size:13px;
  }

  .chip-grid,
  .service-grid,
  .pricing-grid,
  .testi-grid,
  .doctor-grid,
  .why-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .chip{
    min-height:84px;
    padding:16px;
    border-radius:22px;
  }

  .chip::after{
    right:16px;
    font-size:20px;
  }

  .chip .tooth-ico{
    width:46px;
    height:46px;
    border-radius:16px;
    font-size:20px;
  }

  .chip-label{
    font-size:14.2px;
    padding-right:18px;
  }

  .checklist li,
  .compare-row{
    text-align:left;
    padding:14px;
  }

  .service-image-wrap,
  .service-image{
    height:178px;
  }

  .steps-visual{
    width:100%;
    gap:0;
    margin:26px auto 22px;
    padding:14px 10px;
    border-radius:24px;
  }

  .tooth-step{
    max-width:none;
    min-width:0;
  }

  .tooth-step .tooth-shell{
    width:46px;
    height:46px;
    border-radius:15px;
  }

  .tooth-step .tooth-shell svg{
    width:18px;
    height:21px;
  }

  .tooth-step .label{
    margin-top:8px;
    font-size:11.5px;
    line-height:1.2;
  }

  .tooth-step .sub{
    font-size:10.5px;
    line-height:1.25;
  }

  .tooth-connector{
    flex:0 0 16px;
    margin-top:23px;
  }

  .booking-card{
    padding:22px 18px;
    border-radius:24px;
  }

  .form-actions{
    flex-direction:column;
  }

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

@media(max-width:380px){
  .brand-logo{
    width:108px;
  }

  .nav-cta .btn{
    padding:9px 12px;
    font-size:12px;
  }

  .hero h1{
    font-size:27px;
  }

  .hero h1 em{
    font-size:20px;
  }

  .hero-stats{
    gap:6px;
  }

  .hero-stat strong{
    font-size:20px;
  }

  .hero-stat span{
    font-size:10px;
  }
}


/* =========================================================
   FOOTER DESIGN
   ========================================================= */

.footer{
  background:linear-gradient(135deg, #18b8ad, #087c75);
  color:white;
  padding:64px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:70px;
  align-items:flex-start;
}

.footer-logo{
  width:210px;
  margin-bottom:34px;
}

.footer h3{
  font-size:22px;
  color:white;
  margin-bottom:20px;
  font-weight:800;
}

.footer p,
.footer a{
  display:block;
  color:rgba(255,255,255,0.9);
  font-size:16px;
  font-weight:600;
  margin-bottom:18px;
}

.footer a:hover{
  color:#ff9b54;
}

.footer-email{
  color:#ff9b54 !important;
  font-weight:800 !important;
}

.footer-btn{
  display:inline-flex !important;
  width:max-content;
  margin-top:16px;
  padding:16px 28px;
  border-radius:10px;
  background:#ff7a18;
  color:white !important;
  font-weight:800 !important;
}

.footer-social{
  margin-top:20px;
  color:white;
  font-weight:800;
  letter-spacing:4px;
}

.footer-bottom{
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.2);
  text-align:center;
  color:rgba(255,255,255,0.85);
  font-size:14px;
  font-weight:600;
}

/* MOBILE FOOTER */
@media(max-width:768px){

  .footer{
    padding:48px 0 24px;
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .footer-logo{
    width:190px;
    margin:0 auto 28px;
  }

  .footer-btn{
    margin-left:auto;
    margin-right:auto;
  }

}

/* =========================================================
   99. FULL UPDATE OVERRIDE - DR IZZI PREMIUM VERSION
   ========================================================= */

body{
  padding-top:82px;
}

.section-head,
.section-head.center,
.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.eyebrow{
  justify-content:center;
}

.nav-links{
  display:flex !important;
}

.nav-cta .btn,
#navWa{
  background:linear-gradient(135deg,#ff9b54,#f58232) !important;
  color:#ffffff !important;
  border:0 !important;
  box-shadow:0 14px 30px rgba(245,130,50,.24);
}

@media(max-width:760px){
  body{
    padding-top:78px;
  }

  .nav{
    gap:8px;
  }

  .brand-logo{
    width:112px;
  }

  .nav-links{
    display:flex !important;
    gap:8px;
    font-size:11px;
  }

  .nav-links a{
    padding:6px 0;
    font-size:11px;
  }

  .nav-cta .btn{
    min-height:34px;
    padding:8px 10px;
    font-size:0;
  }

  .nav-cta .btn svg{
    width:17px;
    height:17px;
  }
}

/* ---------- symptom poster ---------- */
.symptom-poster{
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(255,155,84,.20), transparent 30%),
    radial-gradient(circle at bottom right, rgba(23,184,173,.24), transparent 32%),
    linear-gradient(180deg,#f3fffd,#ffffff);
}

.symptom-poster-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.poster-chip{
  position:relative;
  min-height:225px;
  padding:28px;
  border:1px solid rgba(8,124,117,.16);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(232,251,249,.78));
  box-shadow:0 22px 48px rgba(8,124,117,.10);
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:.28s ease;
}

.poster-chip::before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-60px;
  top:-60px;
  border-radius:50%;
  background:rgba(255,155,84,.18);
}

.poster-chip:hover{
  transform:translateY(-8px);
  border-color:rgba(245,130,50,.45);
  box-shadow:0 30px 60px rgba(245,130,50,.16);
}

.poster-number{
  position:absolute;
  right:26px;
  top:22px;
  color:rgba(8,124,117,.14);
  font-family:var(--font-display);
  font-size:44px;
  font-weight:900;
}

.poster-icon{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  margin-bottom:22px;
  border-radius:22px;
  background:linear-gradient(135deg,#fff5ec,#fff0e4);
  border:1px solid rgba(245,130,50,.15);
  box-shadow:0 10px 25px rgba(245,130,50,.08);
}

.poster-icon i{
  color:#f58232;
  font-size:28px;
}

.poster-chip h3{
  position:relative;
  z-index:2;
  max-width:285px;
  color:#111827;
  font-size:19px;
  line-height:1.28;
}

.poster-chip p{
  position:relative;
  z-index:2;
  max-width:280px;
  margin-top:10px;
  color:#5f6f74;
  font-size:14px;
  line-height:1.55;
}

.poster-cta{
  position:absolute;
  left:28px;
  bottom:24px;
  color:#087c75;
  font-size:14px;
  font-weight:900;
}

.poster-cta::after{
  content:" →";
}

@media(max-width:900px){
  .symptom-poster-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .symptom-head h2{
    font-size:28px;
  }

  .symptom-head p{
    font-size:14px;
  }

  .symptom-poster-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .poster-chip{
    min-height:185px;
    padding:24px;
    border-radius:24px;
  }

  .poster-icon{
    width:54px;
    height:54px;
    margin-bottom:18px;
    border-radius:18px;
  }

  .poster-icon i{
    font-size:23px;
  }

  .poster-number{
    font-size:34px;
  }

  .poster-chip h3{
    font-size:18px;
  }

  .poster-chip p{
    font-size:13px;
  }
}

/* ---------- problem & solution ---------- */
.problem-solution{
  background:linear-gradient(135deg,#ffffff,#e8fbf9);
}

.problem-wrap,
.solution-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:38px;
  align-items:center;
}

.problem-copy h2,
.main-solution h2{
  margin-top:14px;
  color:#111827;
  font-size:clamp(30px,4vw,46px);
  line-height:1.15;
}

.problem-copy p,
.main-solution p{
  margin-top:14px;
  color:#5f6f74;
  font-size:16px;
}

.problem-card-stack{
  display:grid;
  gap:14px;
}

.problem-card{
  padding:18px 22px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(8,124,117,.14);
  box-shadow:0 18px 40px rgba(8,124,117,.09);
  color:#111827;
  font-weight:800;
}

.problem-card span{
  display:inline-flex;
  width:36px;
  height:36px;
  align-items:center;
  justify-content:center;
  margin-right:12px;
  border-radius:50%;
  background:#fff0e4;
  color:#f58232;
  font-weight:900;
}

.escalation-modern{
  background:linear-gradient(180deg,#f3fffd,#ffffff);
}

.escalation-modern-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.escalation-modern-card{
  padding:24px;
  border-radius:26px;
  background:#ffffff;
  border:1px solid rgba(8,124,117,.14);
  box-shadow:0 18px 40px rgba(8,124,117,.09);
  text-align:center;
}

.escalation-modern-card.is-hot{
  background:linear-gradient(135deg,#fff0e4,#ffffff);
  border-color:rgba(245,130,50,.25);
}

.step-badge{
  display:flex;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  border-radius:50%;
  background:linear-gradient(135deg,#39cfc4,#087c75);
  color:#ffffff;
  font-weight:900;
}

.escalation-modern-card.is-hot .step-badge{
  background:linear-gradient(135deg,#ff9b54,#f58232);
}

.escalation-modern-card h3{
  color:#111827;
  font-size:17px;
}

.escalation-modern-card p{
  margin-top:8px;
  color:#5f6f74;
  font-size:14px;
}

.solution-section{
  background:linear-gradient(135deg,#087c75,#17b8ad);
  color:#ffffff;
}

.main-solution{
  padding:36px;
  border-radius:32px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
}

.main-solution h2,
.main-solution p,
.solution-section .eyebrow{
  color:#ffffff;
}

.solution-mini-wrap{
  display:grid;
  gap:16px;
}

.solution-mini{
  display:grid;
  grid-template-columns:54px 1fr;
  column-gap:14px;
  align-items:center;
  padding:20px;
  border-radius:24px;
  background:#ffffff;
  color:#111827;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.solution-mini i{
  grid-row:span 2;
  display:flex;
  width:54px;
  height:54px;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#fff0e4;
  color:#f58232;
  font-size:22px;
}

.solution-mini strong{
  font-size:16px;
}

.solution-mini span{
  color:#5f6f74;
  font-size:13px;
}

@media(max-width:900px){
  .problem-wrap,
  .solution-grid{
    grid-template-columns:1fr;
  }

  .problem-copy{
    text-align:center;
  }

  .escalation-modern-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .escalation-modern-grid{
    grid-template-columns:1fr;
  }
}

/* ---------- doctor polish ---------- */
.doctor-section{
  background:linear-gradient(180deg,#ffffff,#f3fffd);
}

.doctor-showcase{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.doctor-profile-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  align-items:center;
  padding:24px;
  border-radius:34px;
  background:#ffffff;
  border:1px solid rgba(8,124,117,.14);
  box-shadow:0 22px 50px rgba(8,124,117,.10);
}

.doctor-profile-card.is-featured{
  background:linear-gradient(135deg,#ffffff,#fff0e4);
}

.doctor-image-frame{
  height:220px;
  border-radius:26px;
  overflow:hidden;
  background:#e8fbf9;
}

.doctor-photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.doctor-info span{
  color:#f58232;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.doctor-info h3{
  margin-top:8px;
  color:#111827;
  font-size:24px;
}

.doctor-info p{
  margin-top:10px;
  color:#5f6f74;
  font-size:14px;
}

@media(max-width:900px){
  .doctor-showcase{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .doctor-profile-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .doctor-image-frame{
    height:260px;
  }
}

/* ---------- branches gallery ---------- */
.clinic-branches{
  background:#ffffff;
}

.branch-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.branch-gallery-card{
  overflow:hidden;
  border-radius:34px;
  background:#ffffff;
  border:1px solid rgba(8,124,117,.14);
  box-shadow:0 22px 50px rgba(8,124,117,.10);
}

.branch-gallery-image{
  height:280px;
  background:#e8fbf9;
}

.branch-gallery-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.branch-gallery-content{
  padding:26px;
}

.branch-gallery-content span{
  color:#f58232;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.branch-gallery-content h3{
  margin-top:8px;
  color:#111827;
  font-size:22px;
}

.branch-gallery-content p{
  margin-top:8px;
  color:#5f6f74;
}

.branch-gallery-content a{
  display:inline-flex;
  margin-top:16px;
  color:#087c75;
  font-weight:900;
}

@media(max-width:760px){
  .branch-gallery-grid{
    grid-template-columns:1fr;
  }
}

/* ---------- review branch ---------- */
.review-section{
  background:linear-gradient(180deg,#f3fffd,#ffffff);
}

.review-branch-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.review-branch-card{
  padding:28px;
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff,#e8fbf9);
  border:1px solid rgba(8,124,117,.14);
  box-shadow:0 22px 50px rgba(8,124,117,.10);
}

.review-branch-card.is-orange{
  background:linear-gradient(135deg,#ffffff,#fff0e4);
}

.review-branch-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.review-rating{
  color:#ffb23f;
  font-size:15px;
  letter-spacing:1px;
}

.review-branch-card h3{
  margin-top:6px;
  color:#111827;
  font-size:22px;
}

.google-pill{
  padding:8px 12px;
  border-radius:999px;
  background:#ffffff;
  color:#087c75;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.review-branch-card p{
  margin-top:18px;
  color:#5f6f74;
  font-size:15px;
}

.review-btn{
  display:inline-flex;
  margin-top:20px;
  padding:12px 18px;
  border-radius:999px;
  background:#087c75;
  color:#ffffff;
  font-size:14px;
  font-weight:900;
}

.review-branch-card.is-orange .review-btn{
  background:#f58232;
}

@media(max-width:760px){
  .review-branch-grid{
    grid-template-columns:1fr;
  }
}

/* ---------- simple footer ---------- */
.footer{
  background:linear-gradient(135deg,#18b8ad,#087c75) !important;
  color:#ffffff !important;
  padding:34px 0 16px !important;
}

.footer-simple-grid{
  display:grid;
  grid-template-columns:.8fr 1fr 1.6fr;
  gap:32px;
  align-items:start;
}

.footer-logo{
  width:130px !important;
  height:auto;
  margin-bottom:14px !important;
  background:transparent !important;
}

.footer h3{
  color:#ffffff !important;
  font-size:15px !important;
  margin:0 0 12px !important;
  font-weight:900 !important;
}

.footer a,
.footer p,
.footer span{
  color:rgba(255,255,255,.92) !important;
  font-size:13px !important;
  line-height:1.55 !important;
  margin:0 !important;
}

.footer-contact-box,
.footer-branches-box{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-email{
  color:#ffb23f !important;
  font-weight:900 !important;
}

.footer-branch{
  display:grid;
  gap:3px;
  margin-bottom:8px;
}

.footer-branch strong{
  color:#ffffff;
  font-size:13px;
}

.footer-social{
  display:flex;
  gap:9px;
  margin-top:10px;
}

.social-btn{
  display:flex !important;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.13);
  color:#ffffff !important;
  font-size:14px !important;
  transition:.25s ease;
}

.social-btn:hover{
  background:#ff9b54;
  transform:translateY(-2px);
}

.footer-bottom{
  margin-top:24px !important;
  padding-top:14px !important;
  border-top:1px solid rgba(255,255,255,.18) !important;
  color:rgba(255,255,255,.86) !important;
  text-align:center;
  font-size:12px !important;
}

@media(max-width:760px){
  .footer{
    text-align:center;
  }

  .footer-simple-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-logo{
    margin-left:auto;
    margin-right:auto;
  }

  .footer-social{
    justify-content:center;
  }
}


/* =========================================================
   FINAL MERGE FIXES — spacing, booking anchor, poster cards
   ========================================================= */

html{
  scroll-padding-top:95px;
}

.poster-chip{
  padding-bottom:70px;
}

.poster-chip p{
  margin-bottom:12px;
}

.poster-cta{
  display:inline-flex;
  align-items:center;
  gap:4px;
  z-index:3;
  line-height:1;
}

.problem-solution + .section,
.solution-section + .section{
  padding-top:88px;
}

.booking-section{
  background:
    radial-gradient(circle at top left, rgba(255,155,84,.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(23,184,173,.18), transparent 32%),
    linear-gradient(180deg,#e8fbf9,#ffffff);
}

.booking-card{
  border:1px solid rgba(8,124,117,.12);
  box-shadow:0 28px 70px rgba(8,124,117,.13);
}

.steps-visual{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.stats-strip{
  margin-top:10px;
}

@media(max-width:600px){
  html{
    scroll-padding-top:84px;
  }

  .poster-chip{
    min-height:auto;
    padding-bottom:62px;
  }

  .poster-cta{
    left:24px;
    bottom:22px;
  }

  .steps-visual{
    gap:0;
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:8px;
  }

  .tooth-step{
    min-width:92px;
  }

  .tooth-connector{
    min-width:24px;
  }

  .booking-card{
    padding:24px 18px;
  }
}

/*  */


.treatment-video-frame{
  position:relative;
  overflow:hidden;
  height:420px;
  border-radius:28px 28px 0 0;
  background:#063b3b;
}

.treatment-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.treatment-video-badge{
  position:absolute;
  top:20px;
  left:20px;
  z-index:5;
  padding:10px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff9b54,#f58232);
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

@media(max-width:600px){
  .treatment-video-frame{
    height:360px;
  }
}





/* =========================================================
   FINAL UPDATE: TURQUOISE PREMIUM LANDING PATCH
   - Turquoise WhatsApp button
   - Cute treatment cards
   - Moving stats
   - Treatment review section
   - Clinic image switcher + lightbox
   - Turquoise booking section
   ========================================================= */

/* Header WhatsApp button ikut tema turquoise */
.nav-cta .btn,
#navWa{
  background:linear-gradient(135deg, var(--turquoise-main), var(--turquoise-dark)) !important;
  color:#ffffff !important;
  border-color:transparent !important;
  box-shadow:0 14px 30px rgba(23,184,173,.28) !important;
}

.btn-primary{
  background:linear-gradient(135deg, var(--turquoise-main), var(--turquoise-dark));
  color:#fff;
  box-shadow:0 14px 30px rgba(23,184,173,.25);
}

/* Symptom cards: turquoise, cute cartoon treatment icons */
.symptom-poster{
  background:
    radial-gradient(circle at top left, rgba(23,184,173,.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(57,207,196,.22), transparent 32%),
    linear-gradient(180deg,#f2fffd,#ffffff);
}

.symptom-poster-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.poster-chip{
  position:relative;
  min-height:230px;
  padding:28px;
  border:1.5px solid rgba(20,184,166,.22);
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff,#f2fffd);
  box-shadow:0 22px 48px rgba(8,124,117,.10);
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:.28s ease;
}

.poster-chip::before{
  content:"";
  position:absolute;
  width:175px;
  height:175px;
  right:-58px;
  top:-62px;
  border-radius:50%;
  background:rgba(20,184,166,.14);
}

.poster-chip:hover{
  transform:translateY(-8px);
  border-color:var(--turquoise-main);
  box-shadow:0 30px 60px rgba(20,184,166,.20);
}

.poster-number{
  position:absolute;
  right:26px;
  top:18px;
  color:rgba(20,184,166,.22);
  font-family:var(--font-display);
  font-size:44px;
  font-weight:900;
}

.treat-cartoon{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  margin-bottom:22px;
  border-radius:26px;
  background:linear-gradient(135deg,#19b8ad,#087c75);
  box-shadow:0 14px 28px rgba(20,184,166,.20), inset 0 -6px 14px rgba(0,0,0,.08);
  color:#ffffff;
}

.treat-cartoon::after{
  content:"";
  position:absolute;
  width:18px;
  height:8px;
  bottom:12px;
  border-radius:0 0 99px 99px;
  border-bottom:3px solid rgba(255,255,255,.72);
}

.treat-cartoon i{
  font-size:28px;
  filter:drop-shadow(0 3px 4px rgba(0,0,0,.12));
}

.treat-white{background:linear-gradient(135deg,#39cfc4,#087c75);}
.treat-braces{background:linear-gradient(135deg,#22c8be,#0f766e);}
.treat-extract{background:linear-gradient(135deg,#17b8ad,#075e58);}
.treat-check{background:linear-gradient(135deg,#35d8cb,#0f766e);}

.poster-chip h3{
  position:relative;
  z-index:2;
  color:#0f172a;
  font-size:20px;
  line-height:1.25;
  max-width:280px;
}

.poster-chip p{
  position:relative;
  z-index:2;
  margin-top:10px;
  color:#5f6f74;
  font-size:14.5px;
  line-height:1.55;
  max-width:285px;
}

.poster-cta{
  position:absolute;
  left:28px;
  bottom:24px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 15px;
  border-radius:999px;
  background:rgba(23,184,173,.12);
  color:var(--turquoise-dark);
  font-size:13px;
  font-weight:900;
  transition:.25s ease;
}

.poster-chip:hover .poster-cta{
  background:var(--turquoise-dark);
  color:#ffffff;
}

/* Remove old solution block visually if old class appears */
.solution-section{display:none !important;}

/* Stats bergerak */
.stats-motion-section{
  background:linear-gradient(180deg,#ffffff,#f2fffd);
}
.stats-motion{
  padding:28px;
  border-radius:34px;
  background:linear-gradient(135deg,#073f3b,#0f766e);
  box-shadow:0 26px 60px rgba(8,124,117,.20);
}
.stats-motion .stat-card{
  background:transparent;
  border:0;
  box-shadow:none;
}
.stats-motion .stat-card strong{
  color:#ffb84d;
  font-size:38px;
}
.stats-motion .stat-card span{
  color:rgba(255,255,255,.90);
}

/* Treatment review + testimonial */
.treatment-review-section{
  background:linear-gradient(180deg,#fff8ef,#ffffff);
}
.treatment-story-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.story-card{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:28px;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
  box-shadow:0 24px 55px rgba(8,35,35,.18);
  background-size:cover;
  background-position:center;
  isolation:isolate;
}
.story-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(2,48,45,.78));
}
.story-implant{background-image:url('dentureimplant.jpeg');}
.story-denture{background-image:url('dentureimplant.jpeg');}
.story-scaling{background-image:url('sxp.jpg');}
.story-extraction{background-image:url('extraction.png');}
.story-play{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--turquoise-dark);
}
.story-card span{
  color:#fff;
  font-size:13px;
  font-weight:900;
}
.story-card h3{
  margin-top:8px;
  color:#fff;
  font-size:20px;
}
.story-card p{
  margin-top:8px;
  color:rgba(255,255,255,.86);
  font-size:13.5px;
}
.google-review-panel{
  margin-top:40px;
  padding:36px;
  border-radius:34px;
  background:#ffffff;
  box-shadow:0 22px 55px rgba(8,124,117,.10);
}
.google-review-head{text-align:center;margin-bottom:24px;}
.google-stars{color:#ffb000;font-size:20px;font-weight:900;}
.google-review-head h3{font-size:30px;color:#0f172a;margin-top:8px;}
.google-review-head p{color:var(--text-soft);margin-top:6px;}
.google-review-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.google-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(135deg,#f4fffd,#ffffff);
  border:1px solid rgba(20,184,166,.14);
}
.google-avatar{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  border-radius:50%;
  background:var(--turquoise-dark);
  color:#fff;
  font-weight:900;
}
.google-card div:nth-child(2){display:inline-flex;flex-direction:column;vertical-align:top;}
.google-card strong{color:#0f172a;}
.google-card span{color:var(--text-soft);font-size:12px;}
.google-card p{margin-top:16px;color:var(--text);font-size:14px;}
.review-button-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

/* Booking turquoise refresh */
.booking-section{
  background:
    radial-gradient(circle at top left, rgba(57,207,196,.18), transparent 28%),
    linear-gradient(180deg,#eafbfa,#ffffff);
}
.steps-visual{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  padding:24px;
  border:1px solid rgba(20,184,166,.20);
  border-radius:28px;
  background:rgba(255,255,255,.76);
  box-shadow:0 18px 45px rgba(8,124,117,.10);
}
.tooth-step[data-state="active"] .tooth-shell,
.tooth-step[data-state="done"] .tooth-shell{
  border-color:var(--turquoise-dark);
  background:linear-gradient(135deg,var(--turquoise-main),var(--turquoise-dark));
}
.booking-card{
  border-color:rgba(20,184,166,.22);
  box-shadow:0 26px 60px rgba(8,124,117,.14);
}
.form-actions .btn-primary,
.booking-card .btn-primary{
  background:linear-gradient(135deg,var(--turquoise-main),var(--turquoise-dark));
}

/* Clinic branch slider */
.branch-gallery-card{position:relative;}
.branch-gallery-image{cursor:pointer;}
.branch-gallery-image img{transition:.35s ease;}
.branch-gallery-image:hover img{transform:scale(1.04);}
.gallery-arrow{
  position:absolute;
  top:34%;
  z-index:5;
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--turquoise-dark);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  cursor:pointer;
}
.gallery-prev{left:14px;}
.gallery-next{right:14px;}
.image-lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(5,30,28,.78);
}
.image-lightbox.is-open{display:flex;}
.image-lightbox img{
  max-width:min(1100px,94vw);
  max-height:86vh;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.lightbox-close{
  position:absolute;
  top:18px;
  right:24px;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#0f172a;
  font-size:30px;
  cursor:pointer;
}

/* Mobile polish */
@media(max-width:980px){
  .symptom-poster-grid,
  .google-review-cards{grid-template-columns:repeat(2,1fr);}
  .treatment-story-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:760px){
  .nav{
    gap:8px;
  }
  .brand-logo{width:118px;}
  .nav-links{
    display:flex !important;
    gap:10px;
    font-size:12px;
  }
  .nav-cta .btn{padding:10px 14px;min-height:42px;font-size:13px;}
  .symptom-poster-grid,
  .google-review-cards,
  .treatment-story-grid{grid-template-columns:1fr;}
  .poster-chip{min-height:205px;padding:24px;border-radius:24px;}
  .treat-cartoon{width:58px;height:58px;border-radius:22px;}
  .treat-cartoon i{font-size:24px;}
  .poster-number{font-size:36px;}
  .stats-motion{padding:18px;}
  .story-card{min-height:330px;}
  .google-review-panel{padding:24px;border-radius:26px;}
  .steps-visual{padding:18px;overflow-x:auto;justify-content:flex-start;}
  .tooth-step{min-width:120px;}
  .tooth-connector{min-width:36px;width:36px;}
  .gallery-arrow{top:28%;}
}

@media(max-width:520px){
  .nav-links{gap:8px;font-size:11px;}
  .nav-cta .btn svg{display:none;}
  .poster-chip h3{font-size:18px;}
  .poster-chip p{font-size:13.5px;}
}


/* =========================================================
   UPDATE: TRUST SECTION + VIDEO TESTIMONI + FEEDBACK
   ========================================================= */
.trust-upgrade{
  margin:0 24px;
  padding:86px 0;
  border-radius:42px;
}
.trust-upgrade .wrap{width:min(1180px, calc(100% - 48px));}
.trust-headline-grid{grid-template-columns:repeat(5,1fr);}
.trust-headline-grid .why-card{min-height:190px;}
.trust-split-block{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:24px;
  align-items:stretch;
  margin-top:34px;
}
.trust-clinic-gallery{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:170px 170px;
  gap:14px;
}
.trust-clinic-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 38px rgba(0,0,0,.16);
}
.trust-clinic-gallery img:first-child{grid-row:span 2;}
.trust-copy-box{
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(12px);
}
.trust-copy-box span{
  display:inline-flex;
  margin-bottom:16px;
  color:#fff2e8;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.trust-copy-box h3{font-size:30px;color:#fff;line-height:1.16;}
.trust-copy-box p{margin-top:14px;color:rgba(255,255,255,.78);}
.trust-subhead{
  margin:54px auto 24px;
  text-align:center;
  max-width:620px;
}
.trust-subhead h3{color:#fff;font-size:32px;}
.trust-subhead p{margin-top:8px;color:rgba(255,255,255,.75);}
.video-testimoni-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.video-testimoni-card{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.75)), var(--thumb);
  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 42px rgba(0,0,0,.2);
}
.video-testimoni-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.7));
}
.video-mute{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  width:36px;height:36px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,.36);
  color:#fff;
}
.play-btn{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  width:58px;height:58px;
  border:0;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#fff;
  color:var(--turquoise-dark);
  cursor:pointer;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.video-caption{
  position:absolute;
  left:18px;right:18px;bottom:20px;
  z-index:2;
}
.video-caption h4{color:#fff;font-size:16px;font-weight:900;}
.video-caption p{margin-top:5px;color:rgba(255,255,255,.82);font-size:13px;line-height:1.35;}
.feedback-scroll-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.feedback-card{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.32);
  color:#06122b;
  box-shadow:0 18px 38px rgba(0,0,0,.12);
}
.feedback-head{display:flex;align-items:center;gap:12px;}
.google-mini{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#fff;color:#4285f4;font-weight:900;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.feedback-head strong{display:block;font-size:15px;}
.feedback-head small{display:block;color:#60717a;font-size:12px;}
.feedback-stars{margin-top:16px;color:#ffb000;letter-spacing:1px;}
.feedback-card p{margin-top:12px;color:#24323c;font-size:14px;line-height:1.55;}

/* =========================================================
   UPDATE: CASH REBATE RM30
   ========================================================= */
.cash-rebate-section{
  padding:76px 0;
  background:linear-gradient(180deg,#fff,#f0fffd);
}
.cash-rebate-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:28px;
  align-items:center;
  padding:42px;
  border-radius:36px;
  background:linear-gradient(135deg,#073f3d,#12b3a8);
  color:#fff;
  box-shadow:0 28px 70px rgba(8,124,117,.22);
}
.cash-rebate-card::after{
  content:"";
  position:absolute;
  right:-120px;top:-120px;
  width:300px;height:300px;border-radius:50%;
  background:rgba(255,255,255,.12);
}
.rebate-copy h2{margin-top:14px;color:#fff;font-size:clamp(30px,4vw,48px);line-height:1.1;}
.rebate-copy p{margin-top:14px;color:rgba(255,255,255,.84);font-size:17px;max-width:720px;}
.rebate-copy ul{display:grid;gap:10px;margin-top:22px;}
.rebate-copy li{display:flex;gap:10px;color:rgba(255,255,255,.9);font-weight:700;}
.rebate-copy li::before{content:"✓";color:#ffbf73;font-weight:900;}
.rebate-voucher{
  position:relative;z-index:2;
  padding:34px 26px;
  border-radius:30px;
  background:#fff;
  color:#06122b;
  text-align:center;
  box-shadow:0 22px 45px rgba(0,0,0,.18);
}
.rebate-voucher span{color:var(--orange-main);font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:13px;}
.rebate-voucher strong{display:block;margin-top:8px;color:var(--turquoise-dark);font-size:72px;font-family:var(--font-display);line-height:1;}
.rebate-voucher p{margin-top:8px;color:#5f6f74;font-weight:900;}

/* =========================================================
   UPDATE: BOOKING BRANCH + MOBILE TURQUOISE FORM
   ========================================================= */
.branch-map-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.branch-map-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(23,184,173,.10);
  color:var(--turquoise-dark);
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(23,184,173,.20);
}
.branch-map-actions a::before{
  content:"📍";
  margin-right:6px;
}

@media(max-width:1100px){
  .trust-headline-grid,.video-testimoni-grid,.feedback-scroll-row{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:900px){
  .trust-headline-grid,.video-testimoni-grid,.feedback-scroll-row{grid-template-columns:repeat(2,1fr);}
  .trust-split-block{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .trust-upgrade{margin:0 12px;padding:64px 0;border-radius:32px;}
  .trust-upgrade .wrap{width:min(100% - 28px, 520px);}
  .trust-headline-grid,.video-testimoni-grid,.feedback-scroll-row{grid-template-columns:1fr;}
  .trust-clinic-gallery{grid-template-columns:1fr;grid-template-rows:auto;}
  .trust-clinic-gallery img{height:190px;}
  .trust-clinic-gallery img:first-child{grid-row:auto;}
  .video-testimoni-card{min-height:420px;}
  .feedback-scroll-row{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:10px;}
  .feedback-card{min-width:82%;scroll-snap-align:center;}

  .cash-rebate-section{padding:56px 0;}
  .cash-rebate-card{grid-template-columns:1fr;padding:28px 22px;border-radius:28px;text-align:center;}
  .rebate-copy ul{text-align:left;}
  .rebate-voucher strong{font-size:58px;}

  .booking-section .section-head{margin-bottom:28px;}
  .booking-card{
    max-width:100%;
    padding:22px 20px;
    border-radius:28px;
    box-shadow:0 18px 44px rgba(8,124,117,.14);
  }
  .field input,.field select{
    border-radius:15px;
    background:#fff;
    border:1.5px solid rgba(8,124,117,.18);
  }
  .booking-card .btn-primary,
  .booking-card .btn-secondary{
    background:linear-gradient(135deg,var(--turquoise-main),var(--turquoise-dark));
    box-shadow:0 12px 26px rgba(8,124,117,.22);
  }
  .steps-visual{
    background:#e8fbf9;
    padding:10px 4px 18px;
    border-radius:28px 28px 0 0;
    margin-bottom:0;
  }
  .tooth-step[data-state="active"] .tooth-shell{
    background:var(--turquoise-main);
    border-color:var(--turquoise-main);
  }
  .branch-map-actions{justify-content:center;}
}

/* BETULKAN BUTTON SYMPTOM CENTER */
.symptom-poster .poster-chip{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  text-align:center !important;
}

.symptom-poster .poster-cta{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  transform:none !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  width:205px !important;
  height:54px !important;

  margin:28px auto 0 !important;
  align-self:center !important;
}

.symptom-poster .poster-chip:hover .poster-cta{
  transform:none !important;
}



/* =========================================================
   UPDATE: VIDEO TESTIMONI RAWATAN - REAL VIDEO CARD
   Fungsi: Masukkan video testimoni rawatan, kekal dalam section trust
   ========================================================= */
.treatment-video-head .eyebrow{
  justify-content:center;
  color:#fff2e8;
}

.treatment-video-head .eyebrow::before{
  background:var(--orange);
}

.treatment-video-head b{
  color:#fff;
}

.treatment-video-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
  margin-top:22px;
}

.treatment-video-card{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  box-shadow:0 22px 42px rgba(0,0,0,.18);
}

.treatment-video-frame{
  position:relative;
  overflow:hidden;
  aspect-ratio:9 / 16;
  border-radius:24px 24px 0 0;
  background:rgba(0,0,0,.25);
}

.treatment-video{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#052f32;
}

.treatment-video-badge{
  position:absolute;
  left:14px;
  top:14px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),var(--orange-main));
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}

.treatment-video-copy{
  padding:18px 18px 20px;
}

.treatment-video-copy h4{
  color:#fff;
  font-size:16px;
  font-weight:900;
  line-height:1.25;
}

.treatment-video-copy p{
  margin-top:8px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.45;
}

/* Hide old dummy video cards if any remain */
.video-testimoni-grid{
  display:none;
}

@media(max-width:1100px){
  .treatment-video-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media(max-width:768px){
  .treatment-video-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }

  .treatment-video-copy{
    padding:16px;
  }
}

@media(max-width:520px){
  .treatment-video-grid{
    grid-template-columns:1fr;
  }

  .treatment-video-card{
    max-width:330px;
    width:100%;
    margin-inline:auto;
  }

  .treatment-video-frame{
    aspect-ratio:9 / 14;
  }
}

/* =========================================================
   FINAL FIX: VIDEO TESTIMONI PLAY/STOP + MOBILE VIEW
   Fungsi:
   - Video tidak autoplay/loop secara paksa
   - Bila satu video play, video lain stop melalui JavaScript
   - Mobile jadi satu video satu baris supaya controls tak sempit
   ========================================================= */
.treatment-video-card{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.treatment-video-card.is-playing{
  border-color:rgba(255,255,255,.45);
  box-shadow:0 28px 56px rgba(0,0,0,.24);
}

.treatment-video-frame{
  height:auto !important;
  aspect-ratio:9 / 16;
  border-radius:24px 24px 0 0;
}

.treatment-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#052f32;
}

.treatment-video::-webkit-media-controls-panel{
  padding-bottom:0;
}

@media(max-width:768px){
  .treatment-video-grid{
    grid-template-columns:1fr !important;
    gap:20px;
  }

  .treatment-video-card{
    width:100%;
    max-width:380px;
    margin-inline:auto;
    border-radius:26px;
  }

  .treatment-video-frame{
    aspect-ratio:9 / 16 !important;
  }

  .treatment-video-copy{
    padding:16px 18px 18px;
    text-align:left;
  }

  .treatment-video-copy h4{
    font-size:16px;
  }

  .treatment-video-copy p{
    font-size:13px;
  }
}

@media(max-width:420px){
  .treatment-video-card{
    max-width:100%;
  }

  .treatment-video-badge{
    top:10px;
    left:10px;
    padding:7px 10px;
    font-size:10px;
  }
}
