/* CSS Document */

/* CSS Document */

:root{
  --primary:#1d9f8f;
  --primary-600:#16897b;
  --primary-700:#126d63;
  --accent:#0f5f58;
  --accent-2:#083c39;
  --champagne:#e7c98b;
  --champagne-soft:#f6e7c2;
  --rose:#d7b7b0;
  --muted:#6a7a79;
  --text:#163331;
  --text-soft:#486260;
  --bg:#f6fbf9;
  --bg-2:#eef7f4;
  --card:#ffffff;
  --card-soft:#fcfefd;
  --line:#dfeee9;
  --line-strong:#c9e1da;
  --success:#21a67a;
  --danger:#d85f72;
  --shadow-xs:0 4px 12px rgba(8, 50, 45, .05);
  --shadow-sm:0 10px 24px rgba(8, 50, 45, .08);
  --shadow-md:0 18px 40px rgba(8, 50, 45, .12);
  --shadow-lg:0 24px 60px rgba(8, 50, 45, .16);
  --glow:0 0 0 1px rgba(231, 201, 139, .15), 0 10px 30px rgba(29, 159, 143, .10);
  --radius-sm:12px;
  --radius:18px;
  --radius-lg:28px;
  --container:1140px;
}

html{
  box-sizing:border-box;
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

*,*::before,*::after{
  box-sizing:inherit;
}

body{
  margin:0;
  padding:0;
  min-height:100vh;
  overflow-x:hidden;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(231,201,139,.14), transparent 22%),
    radial-gradient(circle at 90% 15%, rgba(29,159,143,.10), transparent 24%),
    radial-gradient(circle at 80% 85%, rgba(215,183,176,.10), transparent 18%),
    linear-gradient(180deg, #f9fcfb 0%, #f2f8f6 46%, #edf6f3 100%) !important;
  font-family:'Merriweather', serif;
  line-height:1.7;
  font-size:clamp(14px,1.5vw,16px);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

p,.description{
  font-weight:400;
}

h1,h2,h3{
  margin-top:0;
  font-weight:600;
  color:var(--accent-2);
}

.container{
  max-width:var(--container);
  margin:20px auto;
  padding:0 18px;
}

.container_footer{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid rgba(201,225,218,.8);
  box-shadow:0 8px 28px rgba(8,50,45,.06);
}

.nav-wrapper,
.site-header .container{
  max-width:1200px;
  margin:auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-header .brand{
  font-family:'Playfair Display', serif;
  font-size:1.45rem;
  font-weight:700;
  color:var(--accent-2);
  text-decoration:none;
  letter-spacing:.2px;
}

.logo{
  width:60px;
  height:auto;
  border-radius:14px;
  flex-shrink:0;
  box-shadow:var(--shadow-xs);
}

.nav,
.nav-menu{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}

.nav a,
.nav-menu a{
  text-decoration:none;
  color:var(--text);
  font-family:'Inter',system-ui,sans-serif;
  font-weight:500;
  padding:9px 14px;
  border-radius:999px;
  transition:all .25s ease;
  white-space:nowrap;
}

.nav a:hover,
.nav-menu a:hover{
  background:rgba(29,159,143,.08);
  color:var(--primary-700);
}

.btn-primary,
.button-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:#fff !important;
  border:none;
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
  font-family:'Inter',system-ui,sans-serif;
  font-weight:700;
  box-shadow:0 10px 20px rgba(29,159,143,.18);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary:hover,
.button-primary:hover{
  background:linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(29,159,143,.22);
}

/* =========================
   LANGUAGE DROPDOWN
========================= */
.lang-dropdown{
  position:relative;
  font-family:'Inter',system-ui,sans-serif;
}

.lang-btn{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.8);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:12px;
  cursor:pointer;
  color:var(--text);
  box-shadow:var(--shadow-xs);
}

.lang-btn img{
  width:20px;
  height:14px;
  object-fit:cover;
  border-radius:2px;
}

.lang-btn span{
  font-weight:600;
  font-size:14px;
}

.arrow{
  width:16px;
  height:16px;
  fill:none;
  stroke:#4b5f5d;
  stroke-width:2;
}

.lang-menu{
  display:none;
  position:absolute;
  top:110%;
  right:0;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  min-width:170px;
  z-index:9999;
  overflow:hidden;
}

.lang-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 14px;
  text-decoration:none;
  color:var(--text);
  font-size:14px;
  font-family:'Inter',system-ui,sans-serif;
  transition:background .2s ease, color .2s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.lang-menu a img{
  width:18px;
  height:14px;
}

.lang-menu a:hover{
  background:#f2f8f6;
  color:var(--primary-700);
}

.lang-dropdown.open .lang-menu{
  display:block;
}

@media (hover:hover){
  .lang-dropdown:hover .lang-menu{
    display:block;
  }
}

/* =========================
   HERO / FINAL SLIDER
========================= */
.final-slider-area{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  height:62vh;
  max-height:560px;
  min-height:320px;
  position:relative;
  overflow:hidden;
  border-bottom-left-radius:34px;
  border-bottom-right-radius:34px;
  box-shadow:0 18px 40px rgba(8,50,45,.14);
  isolation:isolate;
}

.final-slide-active{
  width:100%;
  height:100%;
  position:relative;
}

.final-single-slider{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
  z-index:0;
}

.final-single-slider.active{
  opacity:1;
  z-index:1;
}

.final-single-slider img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}

/* overlay */
.final-slider-content{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom, rgba(7,40,37,.18), rgba(4,27,25,.58)),
    linear-gradient(120deg, rgba(231,201,139,.10), transparent 45%);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px 24px 88px; /* kasih ruang bawah untuk dots */
}

.final-slider-content h1{
  font-family:'Playfair Display', serif;
  font-size:clamp(32px, 5vw, 56px);
  margin:0 0 10px;
  color:#fff;
  text-shadow:0 8px 24px rgba(0,0,0,.25);
}

.final-slider-content p{
  font-size:clamp(14px, 2.2vw, 18px);
  max-width:700px;
  margin:0;
  color:#f8fbfa;
  text-shadow:0 4px 14px rgba(0,0,0,.22);
}

/* =========================
   DOTS - FIX NUMPUK
========================= */
.final-slider-dots{
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:nowrap;
  max-width:calc(100% - 32px);
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 8px 18px rgba(0,0,0,.14);
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
}

.final-slider-dots::-webkit-scrollbar{
  display:none;
}

.final-slider-dots span{
  flex:0 0 auto;
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
  transition:all .25s ease;
}

.final-slider-dots span.active{
  width:28px;
  background:#ffffff;
  box-shadow:0 0 0 1px rgba(255,255,255,.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
  .final-slider-area{
    height:46vh;
    max-height:380px;
    min-height:260px;
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
  }

  .final-slider-content{
    padding:20px 16px 76px;
  }

  .final-slider-dots{
    bottom:14px;
    gap:8px;
    padding:7px 12px;
    max-width:calc(100% - 20px);
  }

  .final-slider-dots span{
    width:9px;
    height:9px;
  }

  .final-slider-dots span.active{
    width:22px;
  }
}

@media (max-width: 480px){
  .final-slider-area{
    height:40vh;
    min-height:220px;
  }

  .final-slider-content{
    padding:16px 14px 68px;
  }

  .final-slider-content h1{
    font-size:clamp(24px, 7vw, 34px);
  }

  .final-slider-content p{
    font-size:13px;
    max-width:92%;
  }

  .final-slider-dots{
    bottom:12px;
    gap:6px;
    padding:6px 10px;
    max-width:calc(100% - 16px);
  }

  .final-slider-dots span{
    width:8px;
    height:8px;
  }

  .final-slider-dots span.active{
    width:18px;
  }
}
/* =========================
   GENERIC SECTION
========================= */
section{
  padding:36px 20px;
  max-width:900px;
  margin:auto;
  text-align:center;
}

.section-title{
  text-align:center;
  font-family:'Playfair Display', serif;
  font-size:clamp(1.8rem, 3vw, 2.4rem);
  margin:48px 0 24px;
  color:var(--accent-2);
  position:relative;
}

.section-title::after{
  content:"";
  width:78px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--champagne), var(--primary));
  display:block;
  margin:14px auto 0;
}

.cool-green-title{
  margin-top:4px;
  font-family:'Playfair Display', serif;
  font-weight:700;
  color:var(--accent-2);
  text-align:center;
  letter-spacing:.3px;
  text-shadow:0 8px 24px rgba(29,159,143,.08);
}

.cool-green-icon{
  display:inline-block;
  animation:greenPulse 4.5s ease-in-out infinite;
  text-shadow:
    0 0 8px rgba(29,159,143,.30),
    0 0 14px rgba(231,201,139,.20);
  filter:drop-shadow(0 0 8px rgba(29,159,143,.20));
}

@keyframes greenPulse{
  0%{transform:scale(1);opacity:1}
  50%{transform:scale(1.12);opacity:.88}
  100%{transform:scale(1);opacity:1}
}

/* =========================
   BUTTONS
========================= */
button{
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:#fff;
  border:0;
  padding:11px 16px;
  cursor:pointer;
  border-radius:12px;
  font-weight:700;
  font-family:'Inter',system-ui,sans-serif;
  font-size:15px;
  box-shadow:0 10px 20px rgba(29,159,143,.18);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(29,159,143,.20);
  filter:brightness(1.01);
}

.button-outline{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(22, 137, 123, 0.14);
  color:var(--accent);
  padding:10px 14px;
  border-radius:12px;
  box-shadow:var(--shadow-xs);
}

.small{
  font-size:13px;
  padding:8px 10px;
}

.glow-button{
  position:relative;
  display:block;
  margin:0 auto;
  padding:14px 36px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#143230;
  background:linear-gradient(135deg, #f6e6bd, var(--champagne));
  border:none;
  border-radius:999px;
  cursor:pointer;
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(231,201,139,.25),
    0 12px 30px rgba(231,201,139,.28),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition:transform .2s ease, box-shadow .3s ease;
}

.glow-button:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(231,201,139,.28),
    0 16px 36px rgba(231,201,139,.34);
}

.glow-button::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.7) 50%,
    rgba(255,255,255,.08) 100%
  );
  transform:skewX(-25deg);
  animation:shineMove 2.8s infinite linear;
}

@keyframes shineMove{
  0%{left:-75%}
  100%{left:125%}
}

/* =========================
   GRID / CARD
========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px;
  align-items:stretch;
}

.card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(252,254,253,.98));
  border:1px solid rgba(201,225,218,.72);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(231,201,139,.12), transparent 20%),
    radial-gradient(circle at bottom left, rgba(29,159,143,.08), transparent 22%);
  pointer-events:none;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:rgba(29,159,143,.20);
}

.card h3{
  font-family:'Playfair Display', serif;
  font-size:1.35rem;
  margin-bottom:8px;
  color:var(--accent-2);
}

.card p,
.description,
.price-name{
  color:#204643;
}

.description{
  line-height:1.65;
}

.description br{
  line-height:1.2;
}

.zoom-thumb{
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(201,225,218,.8);
}

.zoom-thumb:hover{
  transform:scale(1.08);
  z-index:10;
  box-shadow:0 18px 36px rgba(8,50,45,.18);
}

.tech-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

.tech-photo-preview{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}

.tech-photo-preview img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(231,201,139,.45);
  box-shadow:var(--shadow-sm);
}

/* =========================
   FORM / BOOKING
========================= */
.booking-section,
.profile-box,
.booking-box,
.payment-proof-box{
  background:linear-gradient(180deg, #ffffff, #fbfdfc);
  padding:26px;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}

.form-row{
  display:flex;
  gap:12px;
}

.form-row .col{
  flex:1;
}

label{
  display:block;
  font-size:14px;
  color:var(--text-soft);
  margin-bottom:6px;
  font-family:'Inter',system-ui,sans-serif;
  font-weight:600;
}

input[type=text],
input[type=date],
input[type=time],
textarea,
select,
input[type=file],
.booking-section input,
.booking-section select,
.booking-section textarea,
.modal-content input,
.modal-content textarea,
.modal-content select,
.auth-box input{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fbfefd;
  font-size:15px;
  color:var(--text);
  font-family:'Inter',system-ui,sans-serif;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(29,159,143,.45);
  box-shadow:0 0 0 4px rgba(29,159,143,.10);
  background:#fff;
}

textarea{
  min-height:100px;
  resize:vertical;
}

.summary{
  background:linear-gradient(180deg, #fbfefd, #f5faf8);
  border:1px solid var(--line);
  padding:14px;
  border-radius:14px;
}

/* =========================
   STEPPER / SERVICE CHOICE
========================= */
.stepper{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}

.stepper .step{
  flex:1;
  padding:10px;
  border-radius:14px;
  background:linear-gradient(180deg, #f4faf8, #ffffff);
  text-align:center;
  font-weight:700;
  color:var(--muted);
  border:1px solid #e8f3f0;
  font-family:'Inter',system-ui,sans-serif;
  box-shadow:var(--shadow-xs);
}

.stepper .step.active{
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:#fff;
  box-shadow:0 10px 24px rgba(29,159,143,.18) !important;
}

.services{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.service-item{
  flex:1 1 48%;
  background:linear-gradient(180deg, #fbfefd, #ffffff);
  border:1px solid var(--line);
  padding:12px;
  border-radius:16px;
  display:flex;
  gap:10px;
  align-items:center;
  cursor:pointer;
  transition:all .25s ease;
}

.service-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-sm);
}

.service-item svg{
  width:36px;
  height:36px;
  flex:0 0 36px;
}

.service-item.selected{
  border-color:var(--primary);
  box-shadow:0 10px 24px rgba(29,159,143,.12);
  background:linear-gradient(180deg, #f8fffd, #ffffff);
}

/* =========================
   TABLES / STATUS
========================= */
.table,
.booking-table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
  overflow:hidden;
}

.table th,
.table td,
.booking-table th,
.booking-table td,
.profile-table td{
  border-bottom:1px solid #edf4f1;
  padding:12px 10px;
  text-align:left;
}

.table th,
.booking-table th{
  background:#f4f9f7;
  color:var(--accent);
  font-family:'Inter',system-ui,sans-serif;
  font-size:14px;
  font-weight:700;
}

.status-pending{
  color:#c48412;
  font-weight:700;
}
.status-approved{
  color:#2563eb;
  font-weight:700;
}
.status-on_progress{
  color:#0f8f7b;
  font-weight:700;
}
.status-completed{
  color:#198754;
  font-weight:700;
}
.status-cancelled{
  color:#c03952;


  font-weight:700;
}

.status-unpaid,
.status-waiting-verification,
.status-paid,
.status-rejected{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  font-family:'Inter',system-ui,sans-serif;
}

.status-unpaid{
  background:#f3f4f6;
  color:#374151;
}

.status-waiting-verification{
  background:#fef3c7;
  color:#92400e;
}

.status-paid{
  background:#dcfce7;
  color:#166534;
}

.status-rejected{
  background:#fee2e2;
  color:#991b1b;
}

/* =========================
   FLASH MESSAGE
========================= */
.flash-success,
.flash-error,
.auth-error,
.auth-success{
  margin:16px 0;
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  font-family:'Inter',system-ui,sans-serif;
}

.flash-success,
.auth-success{
  background:#dcfce7;
  color:#166534;
  border:1px solid #bbf7d0;
}

.flash-error,
.auth-error{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fecaca;
}

/* =========================
   REVIEW SLIDER
========================= */
.review-slider-wrapper{
  width:100%;
  overflow:hidden;
  position:relative;
}

.review-slider{
  display:flex;
  gap:1rem;
  animation:slideLeft 40s linear infinite;
}

.review-card{
  flex:0 0 300px;
  transition:transform .3s ease, box-shadow .3s ease;
  cursor:pointer;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg, #ffffff, #fbfdfc);
  box-shadow:var(--shadow-sm);
}

.review-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:var(--shadow-md);
}

.review-slider.paused{
  animation-play-state:paused !important;
}

@keyframes slideLeft{
  0%{transform:translateX(100%)}
  100%{transform:translateX(-100%)}
}

.stars{
  color:#e0b555;
  font-size:1.1rem;
}

/* =========================
   PRICE SECTION
========================= */
.price-section{
  min-height:100vh;
  width:100%;
  margin:0;
  padding:0;
  margin-top:-30px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:
    linear-gradient(rgba(4, 28, 27, .58), rgba(4, 28, 27, .68)),
    radial-gradient(circle at top left, rgba(231,201,139,.18), transparent 24%),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35')
    center / cover no-repeat;
  position:relative;
  overflow:hidden;
}

.price-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(231,201,139,.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(29,159,143,.12), transparent 24%);
  pointer-events:none;
}

.price-container{
  position:relative;
  z-index:1;
  width:100%;
  max-width:940px;
  padding:34px 16px;
}

.price-title{
  text-align:center;
  font-family:'Playfair Display', serif;
  font-size:clamp(28px,4vw,42px);
  margin:0 0 30px;
  letter-spacing:.5px;
  color:#fff7ea;
  text-shadow:0 8px 24px rgba(0,0,0,.25);
}

.price-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.price-item{
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(16px) saturate(130%);
  -webkit-backdrop-filter:blur(16px) saturate(130%);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:16px 18px;
  display:grid;
  grid-template-columns:1fr auto auto auto;
  align-items:center;
  gap:14px;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  opacity:0;
  transform:translateY(18px);
  transition:.45s ease;
}

.price-item.show{
  opacity:1;
  transform:translateY(0);
}

.price-name{
  color:#ffffff !important;
  font-weight:800 !important;
  opacity:1 !important;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
  -webkit-font-smoothing:antialiased;
}

.price-value{
  color:#ffe0a0 !important;
  font-weight:900 !important;
  opacity:1 !important;
  letter-spacing:.3px;
  text-shadow:
    0 1px 1px rgba(0,0,0,.55),
    0 2px 6px rgba(0,0,0,.45);
}

.price-duration{
  color:#fff !important;
  font-weight:700 !important;
  opacity:1 !important;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:8px 12px;
  white-space:nowrap;
  text-shadow:0 1px 1px rgba(0,0,0,.35);
}

.wa-btn{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
  box-shadow:0 10px 22px rgba(37,211,102,.24);
}

.wa-btn img{
  width:18px;
  height:18px;
}

@media(hover:hover){
  .price-item:hover{
    transform:scale(1.015);
  }
  .wa-btn:hover{
    transform:scale(1.12);
    box-shadow:0 0 14px rgba(37,211,102,.8);
  }
}

/* =========================
   RATE UPDATE
========================= */
.rate-update{
  margin-top:14px;
  margin-bottom:20px;
  padding:12px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#1f4f49;
  box-shadow:0 8px 20px rgba(0,0,0,.10);
  animation:rateFadeUp .6s ease-out forwards;
  opacity:0;
  transform:translateY(14px);
}

@keyframes rateFadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.rate-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}

.rate-updated{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  font-size:12px;
  animation:pulseText 1.8s ease-in-out infinite;
}

.rate-updated::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1f6f63;
  animation:pulseDot 1.8s infinite;
}

@keyframes pulseText{
  0%,100%{opacity:.78}
  50%{opacity:1}
}

@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(31,111,99,.55)}
  70%{box-shadow:0 0 0 7px rgba(31,111,99,0)}
  100%{box-shadow:0 0 0 0 rgba(31,111,99,0)}
}

.rate-date{
  font-size:12px;
  color:#6b908b;
}

.rate-detail{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.rate-base{
  font-weight:700;
  color:#145c57;
  font-size:11px;
}

.rate-item{
  display:flex;
  align-items:center;
  gap:5px;
  background:#eef8f6;
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  animation:itemPop .45s ease-out forwards;
  opacity:0;
  transform:scale(.95);
}

.rate-item:nth-child(2){animation-delay:.12s;}
.rate-item:nth-child(3){animation-delay:.2s;}
.rate-item:nth-child(4){animation-delay:.28s;}

@keyframes itemPop{
  to{
    opacity:1;
    transform:scale(1);
  }
}

.rate-item img{
  width:16px;
  height:12px;
  object-fit:cover;
  border-radius:2px;
}

.rate-item b{
  color:#0f3d3a;
  font-weight:800;
}

/* =========================
   MAP
========================= */
.map-section{
  padding:24px 0 0;
}

.map-actions{
  text-align:center;
  margin-top:14px;
}

.map-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:#fff;
  padding:11px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-family:'Inter',system-ui,sans-serif;
  transition:all .25s ease;
  box-shadow:0 10px 22px rgba(29,159,143,.18);
}

.map-btn:hover{
  background:linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform:translateY(-2px);
}

.map-btn i{
  font-size:16px;
}

/* =========================
   FAQ MODAL
========================= */
.faq-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.58);
  backdrop-filter:blur(5px);
}

.faq-modal-content{
  background:#fff;
  width:80%;
  max-width:900px;
  margin:5% auto;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  animation:popupIn .4s ease;
}

.faq-modal-content iframe{
  width:100%;
  height:75vh;
  border:none;
  border-radius:18px;
}

.faq-close{
  float:right;
  font-size:28px;
  font-weight:bold;
  color:#333;
  margin:10px 20px;
  cursor:pointer;
}

.faq-close:hover{
  color:#c03952;
}

@keyframes popupIn{
  from{transform:scale(.88);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* =========================
   AUTH / MODAL
========================= */
.modal,
.auth-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(7, 32, 30, .55);
  backdrop-filter:blur(5px);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.modal-content,
.auth-box{
  background:linear-gradient(180deg, #ffffff, #fbfdfc);
  padding:24px;
  border-radius:20px;
  width:90%;
  max-width:420px;
  position:relative;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
}

.close{
  float:right;
  cursor:pointer;
  font-weight:bold;
  color:#555;
}

.auth-btn{
  width:100%;
  padding:12px;
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:white;
  border:none;
  border-radius:12px;
  cursor:pointer;
}

.auth-tabs{
  display:flex;
  margin-bottom:15px;
  gap:8px;
}

.auth-tabs button{
  flex:1;
  padding:10px;
  border:none;
  background:#eef4f2;
  cursor:pointer;
  color:var(--text);
  box-shadow:none;
}

.auth-tabs .active{
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:white;
}

/* =========================
   USER MENU
========================= */
.user-greet{
  font-weight:600;
  color:#ffffff;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  padding:8px 12px;
  border-radius:999px;
  margin-right:10px;
  font-size:14px;
  font-family:'Inter',system-ui,sans-serif;
}

.user-dropdown{
  position:relative;
  display:inline-block;
  margin-left:15px;
}

.user-toggle{
  cursor:pointer;
  font-weight:600;
  font-size:15px;
  color:#163331;
  padding:8px 12px;
  border-radius:999px;
  transition:.2s;
  background:#f5faf8;
  border:1px solid var(--line);
  font-family:'Inter',system-ui,sans-serif;
}

.user-menu{
  position:absolute;
  top:40px;
  right:0;
  background:#fff;
  min-width:180px;
  border-radius:14px;
  box-shadow:var(--shadow-md);
  border:1px solid var(--line);
  display:none;
  flex-direction:column;
  z-index:999;
  overflow:hidden;
}

.user-menu a{
  padding:11px 14px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  display:block;
  font-family:'Inter',system-ui,sans-serif;
}

.user-menu a:hover{
  background:#f5faf8;
  color:var(--primary-700);
}

.user-dropdown:hover .user-menu{
  display:block;
}

.user-toggle:hover{
  background:#eef7f4;
}

.user-name{
  color:#111;
  font-weight:700;
}

/* =========================
   PAYMENT METHOD
========================= */
.payment-proof-box h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:700;
  color:#0f172a;
}

.payment-proof-box p{
  margin:0 0 14px;
  line-height:1.6;
  color:#475569;
}

.payment-proof-box form{
  margin-top:14px;
}

.payment-methods-wrap{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:14px;
  margin-bottom:6px;
}

.payment-method-group{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:14px;
  box-shadow:var(--shadow-xs);
}

.payment-method-group h4{
  margin:0 0 12px;
  font-size:15px;
  font-weight:700;
  color:#0f172a;
  padding-bottom:8px;
  border-bottom:1px solid #e5e7eb;
}

.payment-method-card{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:10px;
}

.payment-method-card:last-child{
  margin-bottom:0;
}

.payment-method-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.payment-method-icon{
  width:28px;
  height:28px;
  object-fit:contain;
  flex-shrink:0;
  border-radius:6px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  padding:3px;
}

.payment-method-name{
  font-size:14px;
  font-weight:700;
  color:#111827;
  line-height:1.2;
  margin-bottom:2px;
}

.payment-method-owner{
  font-size:12px;
  color:#6b7280;
  line-height:1.3;
  word-break:break-word;
}

.payment-method-number-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  flex-wrap:wrap;
}

.payment-method-number{
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  line-height:1.4;
  word-break:break-all;
  flex:1;
  min-width:0;
}

.copy-payment-btn{
  border:none;
  background:var(--primary-700);
  color:#ffffff;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  flex-shrink:0;
  box-shadow:none;
}

.copy-payment-btn:hover{
  opacity:.94;
}

.booking-detail img[alt="Payment Proof"]{
  max-width:220px;
  width:100%;
  height:auto;
  border-radius:12px;
  border:1px solid #e5e7eb;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#052b2a;
  color:#d9fff7;
  padding:2px 0;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.03);
  width:100%;
  position:static !important;
  height:auto !important;
  left:0;
  bottom:0;
  z-index:1000;
}

.spa-footer{
  position:relative;
  width:100%;
  display:block;
  isolation:isolate;
  color:#eafbf8;
  font-family:'Cormorant Garamond', serif;
  font-size:15px;
}

.spa-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(231,201,139,.10), transparent 18%),
    linear-gradient(180deg, #062625 0%, #031716 100%);
  z-index:-1;
}

.spa-footer-container{
  max-width:1200px;
  margin:auto;
  padding:0 18px;
}

.footer-newsletter{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:22px;
  padding-bottom:30px;
  margin-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-newsletter h2{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:4px;
  color:#f4e6c3;
  letter-spacing:.3px;
}

.footer-newsletter p{
  font-size:15px;
  line-height:1.7;
  color:#ccefe9;
}

.footer-newsletter form{
  display:flex;
  align-items:center;
  gap:10px;
  max-width:380px;
}

.footer-input{
  flex:1;
  padding:10px 14px;
  font-size:14px;
  border-radius:999px;
  border:none;
  outline:none;
  background:#ffffff;
  color:#033b36;
  font-family:'Cormorant Garamond', serif;
}

.footer-input::placeholder{
  color:#8bcfc6;
}

.footer-btn{
  background:linear-gradient(135deg, var(--champagne), #d7b06b);
  color:#173432;
  border:none;
  padding:10px 18px;
  font-size:13.5px;
  font-weight:700;
  border-radius:999px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow:0 6px 16px rgba(231,201,139,.22);
}

.footer-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(231,201,139,.28);
}

.footer-main{
  display:grid;
  grid-template-columns:1.1fr 2fr;
  gap:34px;
  margin-bottom:32px;
}

.footer-main h3{
  font-family:'Playfair Display', serif;
  font-size:19px;
  margin-bottom:8px;
  color:#f1deae;
}

.footer-main p{
  font-size:15px;
  line-height:1.7;
  color:#c6f2ec;
}

.footer-link-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.footer-links li{
  margin-bottom:6px;
}

.footer-links a{
  font-size:14.5px;
  color:#c6f2ec;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-links a:hover{
  color:#f3ddb0;
}

.footer-contact p,
.footer-contact a{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:14.5px;
  color:#c6f2ec;
  text-decoration:none;
  margin-bottom:6px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  padding:14px 0;
  font-size:13.5px;
  color:#9feee4;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:6px;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.2s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.footer-social img{
  width:20px;
  height:20px;
  display:block;
}

@media (hover:hover){
  .footer-social a:hover{
    background:var(--primary);
    transform:scale(1.08);
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-btn{
  display:inline-block;
  background:#25D366;
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

.wa-float{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:9999;
  background:linear-gradient(135deg, #25D366, #19b85a);
  padding:12px;
  border-radius:50%;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  animation:pulse 2.5s infinite;
}

.wa-float img{
  width:36px;
  height:36px;
  position:relative;
  z-index:2;
}

.shine{
  position:absolute;
  top:-50%;
  left:-75%;
  width:50%;
  height:200%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform:rotate(25deg);
  animation:shine 3s infinite;
}

@media (hover:hover){
  .wa-float:hover{
    transform:scale(1.12);
    transition:transform .25s ease;
  }
}

.wa-float:active{
  transform:scale(1.08);
}

@keyframes shine{
  0%{left:-75%}
  100%{left:130%}
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.7)}
  70%{box-shadow:0 0 0 12px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

/* =========================
   SIDE IMAGE
========================= */
#sideImage{
  position:fixed;
  top:20px;
  left:20px;
  background:#f4f4f4;
  border:1px solid #ccc;
  border-radius:14px;
  padding:10px;
  width:290px;
  box-shadow:0 10px 24px rgba(0,0,0,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .4s ease, opacity .4s ease;
  z-index:10;
}

#sideImage img{
  max-width:100%;
  height:auto;
  transition:transform .3s ease;
  border-radius:10px;
}

#toggleBtn{
  position:fixed;
  top:30px;
  left:270px;
  background:linear-gradient(135deg, var(--primary), var(--primary-600));
  color:white;
  border:none;
  padding:10px 12px;
  border-radius:50%;
  cursor:pointer;
  font-size:18px;
  transition:left .3s ease, background .3s ease;
  box-shadow:0 8px 18px rgba(0,0,0,0.18);
  z-index:11;
}

#toggleBtn:hover{
  background:var(--primary-700);
}

.hidden{
  transform:translateX(-150px);
  opacity:0;
}

.hidden + #toggleBtn{
  left:20px;
}

/* =========================
   MISC
========================= */
.info{
  background:transparent;
  padding:0;
  margin-top:12px;
  color:var(--muted);
}

.upload-thumb{
  max-width:120px;
  border-radius:10px;
  margin-top:8px;
  border:1px solid var(--line);
}

#commentBox{
  width:100%;
  min-height:100px;
  resize:vertical;
}

#charCount{
  display:block;
  text-align:right;
  font-size:12px;
  margin-top:4px;
  color:#666;
}

.tracking ul{
  display:flex;
  gap:20px;
  list-style:none;
  padding:0;
  flex-wrap:wrap;
}

.tracking li{
  padding:10px 15px;
  border-radius:999px;
  background:#eef3f2;
}

.tracking li.done{
  background:#27ae60;
  color:#fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .price-name,
  .price-value,
  .price-duration{
    filter:none !important;
    mix-blend-mode:normal !important;
    backface-visibility:hidden;
    transform:translateZ(0);
  }
}

@media (max-width: 991px){
  .payment-methods-wrap{
    gap:14px;
  }

  .payment-method-group{
    padding:12px;
  }

  .payment-method-card{
    padding:10px;
  }
}

@media (max-width: 900px){
  .footer-newsletter{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-newsletter form{
    flex-direction:column;
    max-width:100%;
  }

  .footer-input,
  .footer-btn{
    width:100%;
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:26px;
  }

  .footer-link-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

@media (max-width: 768px){
  .final-slider-area{
    height:46vh;
    max-height:380px;
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
  }

  .nav-wrapper,
  .site-header .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-menu{
    width:100%;
    overflow-x:auto;
    padding-bottom:6px;
    flex-wrap:nowrap;
  }

  .nav-menu::-webkit-scrollbar{
    height:4px;
  }

  .nav-menu::-webkit-scrollbar-thumb{
    background:#cbd5e1;
    border-radius:10px;
  }

  .lang-dropdown{
    font-size:14px;
  }

  .lang-menu{
    right:auto;
    left:0;
    width:100%;
  }

  .price-section{
    align-items:flex-start;
  }

  .price-container{
    padding-top:32px;
  }

  .price-item{
    grid-template-columns:1fr auto;
    grid-template-areas:
      "name wa"
      "price duration";
  }

  .price-name{grid-area:name;}
  .wa-btn{grid-area:wa;}
  .price-value{grid-area:price;}
  .price-duration{grid-area:duration;}

  .rate-update{
    font-size:12.3px;
  }

  .payment-methods-wrap{
    grid-template-columns:1fr;
  }

  .payment-proof-box{
    padding:14px;
  }

  .payment-proof-box h3{
    font-size:18px;
  }

  .payment-method-group h4{
    font-size:14px;
  }

  .payment-method-name{
    font-size:13px;
  }

  .payment-method-owner{
    font-size:11px;
  }

  .payment-method-number{
    font-size:12px;
  }

  .copy-payment-btn{
    width:100%;
    justify-content:center;
    padding:9px 10px;
  }

  .payment-method-number-wrap{
    flex-direction:column;
    align-items:stretch;
  }

  .footer-social a{
    width:32px;
    height:32px;
  }

  .footer-social img{
    width:16px;
    height:16px;
  }

  .wa-float{
    bottom:14px;
    left:14px;
    padding:10px;
  }

  .wa-float img{
    width:30px;
    height:30px;
  }
}

@media (max-width: 640px){
  .container{
    padding:0 14px;
  }

  .card{
    padding:18px;
    border-radius:18px;
  }

  .service-item{
    flex:1 1 100%;
  }

  .form-row{
    flex-direction:column;
  }

  .tracking ul{
    gap:10px;
  }
}

@media (max-width: 480px){
  .site-header .nav a{
    margin-left:8px;
  }

  .footer-link-grid{
    grid-template-columns:1fr;
  }

  .footer-social{
    gap:8px;
  }

  .footer-social a{
    width:24px;
    height:24px;
  }

  .footer-social img{
    width:12px;
    height:12px;
  }

  .faq-modal-content{
    width:92%;
    margin:10% auto;
  }

  .rate-update{
    padding:8px 12px;
    font-size:12px;
  }

  .rate-header{
    flex-direction:column;
    align-items:flex-start;
    gap:3px;
  }

  .rate-item{
    font-size:11.5px;
    padding:3px 7px;
  }

  .payment-method-icon{
    width:24px;
    height:24px;
    padding:2px;
  }

  .payment-method-head{
    gap:8px;
  }

  .payment-method-card{
    border-radius:10px;
  }

  .payment-method-group,
  .payment-proof-box{
    border-radius:12px;
  }
}