:root {
  --orange: #e8531a;
  --cream: #f3ece0;
  --charcoal: #383838;
  --text-dark: #4a4a4a;
  --text-grey: #8a8a8a;
  --logo-copper: #c8794a;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Mulish', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 auto;
}
.section-heading .accent { color: var(--orange); font-style: italic; font-weight: 800; }
.section-heading .plain { color: var(--charcoal); font-weight: 700; }
.section-heading .underline { text-decoration: underline; text-underline-offset: 6px; }

.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-orange:hover { background: #cf4514; transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; background: #fff; z-index: 1000; box-shadow: 0 1px 14px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 84px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; align-items: center; cursor: pointer; line-height: 1; }
.logo-line1, .logo-line2 { font-family: var(--serif); color: var(--logo-copper); font-weight: 500; letter-spacing: 0.18em; font-size: 1.5rem; }
.logo-line2 { margin-top: 1px; }
.logo-rule { width: 100%; height: 1px; background: var(--logo-copper); margin: 4px 0 3px; }
.logo-line3 { font-family: var(--serif); color: var(--logo-copper); font-size: 0.62rem; letter-spacing: 0.34em; font-weight: 500; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-link { font-size: 0.92rem; color: #555; font-weight: 500; padding: 6px 2px; position: relative; transition: color 0.2s ease; }
.nav-link:hover { color: var(--orange); }
.nav-link.active { color: var(--orange); }
.nav-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--charcoal); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; margin-top: 84px; background: url('webbanner_bg.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,40,0.32) 0%, rgba(20,28,40,0.46) 60%, rgba(20,28,40,0.6) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; color: #fff; animation: heroIn 1.1s ease both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 22px; line-height: 1; }
.hl1, .hl2 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.2em; font-size: 2rem; color: #fff; }
.hl2 { margin-top: 2px; }
.hl-rule { width: 150px; height: 1px; background: rgba(255,255,255,0.85); margin: 7px 0 5px; }
.hl3 { font-family: var(--serif); font-size: 0.72rem; letter-spacing: 0.4em; color: #fff; }
.hero-kicker { font-size: 0.96rem; margin: 3px 0; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hero-title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; margin: 18px 0 14px; line-height: 1.18; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.hero-sub { font-size: 0.95rem; margin-bottom: 26px; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hero-btn { display: inline-block; border: 1px solid rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.9rem; font-weight: 500; padding: 14px 30px; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.hero-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ===== WHY ===== */
.why { background: var(--orange); color: #fff; padding: 64px 0 70px; text-align: center; }
.why-title { font-size: clamp(1.5rem, 3.6vw, 2.3rem); font-weight: 700; margin-bottom: 26px; }
.why-italic { font-style: italic; font-weight: 800; color: #2f2f2f; }
.why-list { max-width: 720px; margin: 0 auto 36px; }
.why-list li { margin: 7px 0; font-size: 0.95rem; line-height: 1.5; }
.why-list em { font-style: italic; }
.why-list strong { font-weight: 800; }
.why-list u { text-decoration: underline; }
.why-stats { max-width: 740px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.55); display: grid; grid-template-columns: repeat(4,1fr); padding: 26px 10px; }
.why-stat { display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.why-num { font-size: 1.7rem; font-weight: 800; }
.why-label { font-size: 0.82rem; font-weight: 600; }
.why-chevron { margin-top: 30px; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== OVERVIEW ===== */
.overview { background: var(--cream); padding: 56px 0 64px; }
.overview .section-heading { margin-bottom: 42px; }
.overview-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 56px; max-width: 840px; margin: 0 auto; }
.overview-item { flex: 0 0 220px; text-align: center; }
.overview-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.overview-line { display: block; width: 100%; height: 1px; background: #c9bfae; margin: 0 auto 14px; }
.overview-item p { font-size: 0.92rem; color: var(--text-grey); }

/* ===== MORE ABOUT ===== */
.more { background: #fff; padding-top: 64px; }
.more-title { margin-bottom: 48px; }
.more-band { background: #f4f4f4; padding: 48px 0; }
.more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.more-label { display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: #888; margin-bottom: 14px; }
.ml-rule { width: 56px; height: 1px; background: #999; }
.more-map { display: block; overflow: hidden; border: 1px solid #e2e2e2; background: #fff; }
.more-map img { width: 100%; transition: transform 0.5s ease; }
.more-map:hover img { transform: scale(1.04); }
.more-desc { font-size: 0.93rem; line-height: 1.7; color: #5a5a5a; margin-bottom: 22px; text-align: justify; }
.more-desc strong { font-weight: 700; color: #444; }
.accordion { border: 1px solid #dcdcdc; background: #fff; }
.acc-item { border-bottom: 1px solid #dcdcdc; }
.acc-item:last-child { border-bottom: none; }
.acc-head { width: 100%; display: flex; align-items: center; gap: 12px; padding: 13px 16px; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em; color: #555; transition: background 0.2s ease; }
.acc-head:hover { background: #fafafa; }
.acc-sign { font-size: 1rem; width: 14px; color: #777; font-weight: 700; }
.acc-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.acc-item.open .acc-body { max-height: 260px; }
.acc-body ul { padding: 4px 16px 16px 40px; }
.acc-body li { position: relative; font-size: 0.88rem; color: #666; padding: 4px 0; }
.acc-body li::before { content: ''; position: absolute; left: -14px; top: 11px; width: 4px; height: 4px; border-radius: 50%; background: #b0b0b0; }
.more-visit { margin-top: 22px; }

/* ===== SLIDER ===== */
.slider { background: var(--charcoal); padding: 44px 0 30px; }
.slider-stage { max-width: 720px; margin: 0 auto; position: relative; display: flex; align-items: center; }
.slider-frame { position: relative; width: 100%; aspect-ratio: 16/11; overflow: hidden; }
.slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.7s ease; }
.slide-img.active { opacity: 1; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.2rem; color: rgba(255,255,255,0.85); width: 44px; height: 44px; z-index: 3; transition: color 0.2s ease, transform 0.2s ease; }
.slider-arrow:hover { color: #fff; transform: translateY(-50%) scale(1.15); }
.slider-arrow.left { left: -52px; }
.slider-arrow.right { right: -52px; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: background 0.2s ease, transform 0.2s ease; }
.dot.active { background: #fff; transform: scale(1.25); }

/* ===== FACILITY ===== */
.facility { background: var(--charcoal); color: #d8d8d8; padding: 30px 0 62px; text-align: center; }
.facility-label { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 0.92rem; color: #cfcfcf; margin-bottom: 22px; }
.fl-rule { width: 130px; max-width: 22vw; height: 1px; background: rgba(255,255,255,0.4); }
.facility-text { max-width: 880px; margin: 0 auto; font-size: 0.93rem; line-height: 1.75; color: #c4c4c4; }
.facility-text strong { color: #fff; font-weight: 700; }
.facility-chevron { margin: 24px 0 8px; animation: bounce 1.8s ease-in-out infinite; }
.facility-cta { margin-top: 12px; }

/* ===== AGENT ===== */
.agent { background: var(--cream); padding: 56px 0 64px; }
.agent-title { margin-bottom: 40px; }
.agent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 880px; margin: 0 auto; }
.agent-card { border: 1px solid #b9b0a0; padding: 26px 28px 30px; text-align: center; }
.agent-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); }
.agent-line { display: block; width: 64%; height: 1px; background: #c4baa8; margin: 12px auto 18px; }
.agent-card p { font-size: 0.9rem; color: #6a6a6a; line-height: 1.55; margin: 2px 0; }
.agent-strong { font-weight: 600; color: #4a4a4a !important; }
.agent-note { margin-top: 14px !important; font-size: 0.86rem !important; color: #8a8a8a !important; }

/* ===== LAYOUT ===== */
.layout { background: #fff; padding: 54px 0 64px; }
.layout-label { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 0.86rem; color: #888; margin-bottom: 20px; }
.ll-rule { width: 130px; max-width: 22vw; height: 1px; background: #cfcfcf; }
.layout-intro { max-width: 820px; margin: 0 auto 30px; text-align: center; font-size: 0.92rem; line-height: 1.7; color: #6a6a6a; }
.layout-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 40px; }
.layout-filter { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; color: #888; padding: 8px 16px; transition: background 0.2s ease, color 0.2s ease; }
.layout-filter:hover { color: var(--charcoal); }
.layout-filter.active { background: var(--charcoal); color: #fff; }
.layout-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 30px; }
.plan-card { text-align: center; }
.plan-card.hide { display: none; }
.plan-head { margin-bottom: 10px; }
.plan-head h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--logo-copper); }
.plan-rule { display: block; width: 48px; height: 2px; background: var(--logo-copper); margin: 4px auto; }
.plan-head p { font-size: 0.66rem; color: #999; letter-spacing: 0.04em; }
.plan-img-btn { display: block; width: 100%; overflow: hidden; background: #fff; }
.plan-img-btn img { width: 100%; transition: transform 0.45s ease; }
.plan-img-btn:hover img { transform: scale(1.05); }
.layout-cta { text-align: center; margin-top: 46px; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.86); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px 20px; }
.lightbox.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox figure { max-width: 760px; background: #fff; padding: 14px; }
.lightbox img { width: 100%; max-height: 76vh; object-fit: contain; }
.lightbox figcaption { text-align: center; padding: 12px 0 4px; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--logo-copper); font-weight: 700; }
.lightbox-close { position: absolute; top: 24px; right: 30px; font-size: 2.4rem; color: #fff; line-height: 1; }

/* ===== DEVELOPMENTS ===== */
.devs { background: #fff; padding: 54px 0 64px; }
.devs-title { margin-bottom: 44px; }
.devs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 30px; max-width: 880px; margin: 0 auto; }
.dev-card { text-align: center; }
.dev-img { overflow: hidden; }
.dev-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.dev-card:hover .dev-img img { transform: scale(1.06); }
.dev-card figcaption { margin-top: 14px; font-size: 0.95rem; font-weight: 700; color: #6a6a6a; }
.devs-cta { text-align: center; margin-top: 44px; }

/* ===== DISCLAIMER ===== */
.disc { background: var(--cream); padding: 50px 0 60px; }
.disc-title { margin-bottom: 22px; }
.contact-title { margin-top: 48px; }
.disc-text { max-width: 760px; margin: 0 auto 14px; text-align: center; font-size: 0.84rem; color: #999; line-height: 1.6; }
.disc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 820px; margin: 30px auto 0; }
.disc-card { border: 1px solid #b9b0a0; padding: 20px 18px 24px; text-align: center; }
.disc-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--charcoal); }
.disc-line { display: block; width: 60%; height: 1px; background: #c4baa8; margin: 10px auto 14px; }
.disc-card p { font-size: 0.86rem; color: #7a7a7a; margin: 3px 0; }

/* ===== REGISTER ===== */
.register { position: relative; background: url('register_bg.jpg') center/cover no-repeat; padding: 64px 0 70px; }
.register-overlay { position: absolute; inset: 0; background: rgba(18,20,24,0.6); }
.register-inner { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.register-title { text-align: center; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 22px; }
.reg-italic { font-style: italic; font-weight: 800; color: var(--orange); }
.register-lead { font-size: 0.92rem; line-height: 1.65; margin-bottom: 14px; text-align: justify; }
.register-lead strong { font-weight: 700; }
.register-form { margin-top: 26px; }
.rf-label { display: block; font-size: 0.86rem; margin: 14px 0 6px; }
.rf-label-block { margin-top: 22px; }
.req { color: var(--orange); }
.rf-input { width: 100%; background: #fff; border: none; padding: 11px 12px; font-size: 0.9rem; font-family: var(--sans); color: #333; outline: none; }
.rf-input.err { box-shadow: 0 0 0 2px var(--orange); }
.rf-input:focus { box-shadow: 0 0 0 2px rgba(232,83,26,0.6); }
.rf-row { display: flex; gap: 16px; }
.rf-col { flex: 1; }
.rf-col-code { flex: 0 0 130px; }
.rf-error { display: block; color: #ffb59c; font-size: 0.76rem; margin-top: 4px; min-height: 2px; }
.rf-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.rf-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; }
.rf-check input { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }
.rf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rf-submit { width: 100%; margin-top: 22px; background: var(--orange); color: #fff; font-size: 0.95rem; font-weight: 600; padding: 13px; transition: background 0.25s ease; }
.rf-submit:hover { background: #cf4514; }
.rf-submit:disabled { opacity: 0.6; cursor: default; }
.rf-msg { margin-top: 14px; font-size: 0.86rem; text-align: center; }
.rf-msg.ok { color: #b8f0b8; }
.rf-msg.bad { color: #ffb59c; }

/* ===== FOOTER ===== */
.footer { background: #0d0d0d; color: #b0b0b0; padding: 34px 0; }
.footer-inner { display: flex; align-items: flex-start; gap: 36px; }
.footer-text { flex: 1; }
.footer-text p { font-size: 0.72rem; line-height: 1.6; margin-bottom: 12px; }
.footer-strong { font-weight: 700; color: #d8d8d8; }
.footer-links { font-weight: 700; color: #d8d8d8; }
.footer-links a { color: #d8d8d8; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--orange); text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; z-index: 1500; box-shadow: 0 6px 18px rgba(0,0,0,0.3); transition: transform 0.25s ease, box-shadow 0.25s ease; animation: waPulse 2.4s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 0 12px rgba(37,211,102,0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav-inner { height: 72px; }
  .nav-burger { display: flex; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
  .nav-links.is-open { max-height: 360px; }
  .nav-link { width: 100%; text-align: center; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
  .nav-link.active::after { display: none; }
  .logo-line1, .logo-line2 { font-size: 1.2rem; }
  .hero { margin-top: 72px; min-height: 88vh; }
  .hl1, .hl2 { font-size: 1.5rem; }
  .more-grid { grid-template-columns: 1fr; gap: 32px; }
  .slider-arrow.left { left: 6px; }
  .slider-arrow.right { right: 6px; }
  .slider-arrow { background: rgba(0,0,0,0.35); border-radius: 50%; }
  .layout-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .agent-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .why-stats { grid-template-columns: repeat(2,1fr); gap: 20px 0; }
  .disc-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 22px; }
  .devs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .overview-item { flex: 0 0 100%; }
  .layout-grid { grid-template-columns: 1fr; }
  .rf-row { flex-direction: column; gap: 0; }
  .rf-col-code { flex: 1; }
  .container { padding: 0 18px; }
}

/* ===== LEGAL PAGES (Privacy / Terms) ===== */
.legal-hero {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 70px 24px 56px;
}
.legal-hero .legal-logo {
  display: flex; flex-direction: column; align-items: center;
  line-height: 1; margin-bottom: 18px;
}
.legal-hero .ll1, .legal-hero .ll2 {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: 0.2em; font-size: 1.7rem; color: #fff;
}
.legal-hero .ll-rule { width: 130px; height: 1px; background: rgba(255,255,255,0.85); margin: 6px 0 4px; }
.legal-hero .ll3 { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.38em; color: #fff; }
.legal-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; margin-top: 14px; }
.legal-back {
  display: inline-block; margin-top: 16px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.7);
  padding-bottom: 2px; transition: opacity 0.2s ease;
}
.legal-back:hover { opacity: 0.8; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 54px 24px 70px; }
.legal-body .legal-intro { font-size: 0.95rem; line-height: 1.8; color: #555; margin-bottom: 28px; }
.legal-body h2 {
  font-size: 1.18rem; font-weight: 700; color: var(--charcoal);
  margin: 34px 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid #ece4d6;
}
.legal-body h3 { font-size: 0.98rem; font-weight: 700; color: var(--charcoal); margin: 20px 0 8px; }
.legal-body p { font-size: 0.92rem; line-height: 1.8; color: #5a5a5a; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 22px; }
.legal-body ul li {
  position: relative; font-size: 0.92rem; line-height: 1.7;
  color: #5a5a5a; padding-left: 18px; margin-bottom: 8px;
}
.legal-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
}
.legal-body strong { color: #444; font-weight: 700; }
.legal-body .legal-contact {
  margin-top: 30px; padding: 20px 24px;
  background: var(--cream); border-left: 3px solid var(--orange);
}
.legal-body .legal-contact p { margin-bottom: 4px; }
