/* ============================================================
   CM WORX — BLACK & GOLD
   Shared stylesheet
   ============================================================ */

:root {
  --black: #0A0A0A;
  --black-deep: #050505;
  --char: #131313;
  --char-light: #1A1A1A;
  --char-soft: #232323;

  --gold: #C9A961;
  --gold-bright: #E8C97A;
  --gold-light: #F4E0A0;
  --gold-deep: #9B7A3F;
  --gold-dark: #5D4A26;
  --gold-glow: rgba(232, 201, 122, 0.35);

  --paper: #FAF6EC;
  --text: #E8E2D2;
  --text-dim: #A09A8C;
  --text-faint: #5A554C;

  --line: rgba(232, 201, 122, 0.14);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-bright: rgba(232, 201, 122, 0.3);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.5s var(--ease);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' seed='2'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 0.85, 0 0 0 0 0.4, 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--char-soft); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 50px;
}
.eyebrow.center::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.6rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

.italic {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 350;
}

p { color: var(--text-dim); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform var(--t); display: inline-flex; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--black);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 24px -6px rgba(232, 201, 122, 0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(232, 201, 122, 0.6), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-bright);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--char);
  color: var(--paper);
  border-color: var(--line-soft);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ============= TOP STRIP ============= */
.top-strip {
  background: var(--black-deep);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip-left {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-dim);
}
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.top-strip a:hover { color: var(--gold-bright); }
.top-strip svg { width: 13px; height: 13px; color: var(--gold); }
.loket-link {
  border: 1px solid var(--line-bright);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
}
.loket-link:hover { background: var(--gold); color: var(--black) !important; border-color: var(--gold); }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  z-index: 90;
  transition: all var(--t);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: transform var(--t), filter var(--t);
}
.logo:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 14px rgba(232, 201, 122, 0.3));
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter var(--t);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
  transition: all var(--t);
  letter-spacing: 0.02em;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.active > a,
.nav-links > li.active > button {
  color: var(--gold-bright);
  background: rgba(232, 201, 122, 0.08);
}
.nav-links .chev {
  width: 11px;
  height: 11px;
  transition: transform var(--t);
}
.nav-links li:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--char-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-width: 280px;
  padding: 12px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(232, 201, 122, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t);
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.25s var(--ease);
}
.dropdown a:hover, .dropdown a.active {
  background: rgba(232, 201, 122, 0.08);
  color: var(--gold-bright);
}
.dropdown a .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-glow);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 50%;
  background: var(--char);
  border: 1px solid var(--line);
  transition: all var(--t);
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: all 0.35s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, 6px); width: 12px; left: calc(50% - 3px); }
body.menu-open .menu-toggle { background: var(--gold); border-color: var(--gold); }
body.menu-open .menu-toggle span { background: var(--black); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); width: 18px; left: 50%; }

/* ============= HERO HOME ============= */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0 clamp(80px, 13vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: drift 20s ease-in-out infinite;
}
.hero-bg::before {
  width: 600px; height: 600px;
  top: -10%; right: -10%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.45), transparent 70%);
}
.hero-bg::after {
  width: 500px; height: 500px;
  bottom: -20%; left: -10%;
  background: radial-gradient(circle, rgba(155, 122, 63, 0.3), transparent 70%);
  animation-delay: -10s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(232, 201, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 201, 122, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-content .eyebrow { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.3s; }
.hero-content .hero-sub { animation-delay: 0.5s; }
.hero-content .hero-actions { animation-delay: 0.65s; }
.hero-content .hero-meta { animation-delay: 0.8s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero h1 { margin: 28px 0 32px; }
.hero h1, .hero h1 *,
.page-hero h1, .page-hero h1 * {
  text-decoration: none !important;
  border-bottom: none !important;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 350;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::before,
.hero h1 .accent::after,
.page-hero h1 .accent::before,
.page-hero h1 .accent::after { content: none !important; display: none !important; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex; gap: 48px; align-items: flex-end; flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 350;
  color: var(--paper);
  line-height: 1;
  background: linear-gradient(135deg, var(--paper) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta-label {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: rise 1.2s var(--ease-out) 0.4s forwards;
}
.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--char-light);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 0 0 1px rgba(232, 201, 122, 0.15),
    0 60px 100px -30px rgba(0, 0, 0, 0.8),
    0 0 80px -20px rgba(232, 201, 122, 0.25);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s var(--ease);
}
.hero-frame:hover img { transform: scale(1.08); }
.hero-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--char-light);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
  backdrop-filter: blur(20px);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-badge-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(232, 201, 122, 0.3);
}
.hero-badge-text { line-height: 1.3; }
.hero-badge-text strong { font-weight: 600; font-size: 14px; color: var(--paper); display: block; }
.hero-badge-text small { font-size: 12px; color: var(--text-dim); display: block; margin-top: 2px; }

.hero-floating {
  position: absolute;
  top: 32px; right: -16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-bright);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  text-transform: uppercase;
}
.hero-floating .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  position: relative;
  box-shadow: 0 0 12px var(--gold-bright);
}
.hero-floating .pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-corner {
  position: absolute;
  top: 16px; left: 16px;
  width: 32px; height: 32px;
  z-index: 3;
}
.hero-corner::before, .hero-corner::after {
  content: '';
  position: absolute;
  background: var(--gold-bright);
}
.hero-corner::before { top: 0; left: 0; width: 16px; height: 1px; }
.hero-corner::after { top: 0; left: 0; width: 1px; height: 16px; }

/* ============= SUBPAGE HERO ============= */
.page-hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 201, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 201, 122, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -30%; right: -10%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite;
}
.page-hero-inner {
  max-width: 880px;
  position: relative;
}
.page-hero-inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.95s var(--ease-out) forwards;
}
.page-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero-inner > *:nth-child(3) { animation-delay: 0.32s; }
.page-hero-inner > *:nth-child(4) { animation-delay: 0.46s; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span.sep { color: var(--gold); opacity: 0.6; }
.breadcrumb span.current { color: var(--gold-bright); }

.page-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  margin: 24px 0 26px;
  letter-spacing: -0.025em;
}
.page-hero h1 .accent {
  font-style: italic;
  color: var(--gold-bright);
}

.page-hero .lead {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--text);
  max-width: 720px;
  line-height: 1.55;
  font-family: var(--font-display);
  font-weight: 350;
  font-style: italic;
}

.page-hero-tags {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(232, 201, 122, 0.04);
  letter-spacing: 0.04em;
}
.page-hero-tag .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ============= MARQUEE ============= */
.marquee-section {
  background: var(--black-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--paper);
  font-weight: 350;
}
.marquee-item .star {
  color: var(--gold-bright);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============= SECTION HEAD ============= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.section-head h2 { max-width: 640px; }
.section-head .head-lead {
  color: var(--text-dim);
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============= SERVICES ============= */
.services {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--char);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: 40px 36px;
  transition: all 0.6s var(--ease);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 360px;
}
.service-card:nth-child(1) { grid-column: span 3; }
.service-card:nth-child(2) { grid-column: span 3; }
.service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: span 2; }
.service-card:nth-child(5) { grid-column: span 2; }

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(232, 201, 122, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--gold), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); background: var(--char-light); }
.service-card:hover::before, .service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--char-light);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold-bright);
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  transform: scale(1.1) rotate(-8deg);
  border-color: var(--gold-bright);
  box-shadow: 0 12px 32px -8px var(--gold-glow);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 10px; color: var(--paper); }
.service-card p {
  font-size: 0.95rem; line-height: 1.65; flex: 1;
  color: var(--text-dim);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  margin-top: auto;
  transition: all var(--t);
}
.service-card:hover .service-link { gap: 16px; }
.service-link svg { width: 14px; height: 14px; }

/* ============= ABOUT ============= */
.about {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.about .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.about-visual { position: relative; }
.about-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--char);
  box-shadow:
    0 0 0 1px rgba(232, 201, 122, 0.12),
    0 60px 100px -30px rgba(0, 0, 0, 0.8);
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.9s var(--ease);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
  pointer-events: none;
}
.about-signature {
  position: absolute;
  bottom: -28px; right: -28px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  padding: 24px 30px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: 0 24px 48px -12px rgba(232, 201, 122, 0.3),
              0 0 0 1px rgba(255,255,255,0.2) inset;
}
.about-signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--char);
  margin-top: 10px;
  font-weight: 700;
  opacity: 0.7;
}
.about-content h2 { margin: 28px 0 30px; }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--paper);
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--gold);
  margin: 36px 0;
  position: relative;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: -12px; left: 16px;
  font-size: 4rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.4;
}
.about-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-dim);
}
.about-content p strong { color: var(--paper); font-weight: 500; }
.about-content .btn { margin-top: 18px; }

/* ============= WHY ============= */
.why {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 201, 122, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 201, 122, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--black-deep);
  position: relative;
}
.why-card {
  padding: 44px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-last-child(-n+3) { border-bottom: none; }
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(232, 201, 122, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.why-card:hover::before { opacity: 1; }
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: width 0.6s var(--ease);
}
.why-card:hover::after { width: 100%; }
.why-card > * { position: relative; z-index: 1; }

.why-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(232, 201, 122, 0.04);
}
.why-card h3 {
  color: var(--paper);
  font-size: 1.55rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============= PROCESS ============= */
.process {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black-deep);
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gold) 0 6px, transparent 6px 14px);
  z-index: 0;
  opacity: 0.5;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.process-num {
  width: 76px; height: 76px;
  margin: 0 auto 26px;
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-bright);
  font-weight: 400;
  position: relative;
  transition: all var(--t);
}
.process-step:hover .process-num {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  transform: scale(1.08);
  border-color: var(--gold-bright);
  box-shadow: 0 12px 32px -8px var(--gold-glow);
}
.process-step h4 {
  margin-bottom: 12px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ============= PARTNERS ============= */
.partners {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black);
  position: relative;
}
.partners-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.partners-text h2 { margin: 28px 0 30px; }
.partners-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--text-dim);
}
.partners-text strong { color: var(--paper); font-weight: 500; }
.partner-badges {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.partner-badge {
  background: var(--char);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--t);
  letter-spacing: 0.04em;
}
.partner-badge:hover {
  background: var(--char-light);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--gold-bright);
  box-shadow: 0 8px 20px -6px rgba(232, 201, 122, 0.2);
}
.partner-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}
.partners-visual { position: relative; }
.partners-image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--char);
  box-shadow:
    0 0 0 1px rgba(232, 201, 122, 0.12),
    0 40px 80px -20px rgba(0, 0, 0, 0.8);
  position: relative;
}
.partners-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.partners-image:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1);
}
.partners-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

/* ============= CTA ============= */
.cta-section {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 201, 122, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232, 201, 122, 0.15) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-inner h2 {
  margin: 28px 0 28px;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
}
.cta-inner p {
  font-size: 1.18rem;
  margin-bottom: 44px;
  color: var(--text-dim);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px auto 0;
  max-width: 200px;
}
.divider span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg { color: var(--gold); width: 16px; height: 16px; }

/* ============= CONTACT ============= */
.contact {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 { margin: 28px 0 28px; }
.contact-info > p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 44px;
  color: var(--text-dim);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 36px;
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease);
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { background: var(--char-light); }
.contact-row-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px var(--gold-glow);
}
.contact-row-icon svg { width: 18px; height: 18px; }
.contact-row-text { line-height: 1.5; }
.contact-row-text small {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-row-text strong {
  font-weight: 500;
  color: var(--paper);
  font-size: 0.97rem;
}
.contact-row-text a:hover strong { color: var(--gold-bright); }

.contact-form-wrap {
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 52px;
  box-shadow: 0 0 0 1px rgba(232, 201, 122, 0.08), 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.1), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.form-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
}
.form-eyebrow .pulse {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px var(--gold-bright);
}
.form-eyebrow .pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  animation: pulse 2s ease-out infinite;
}
.contact-form-wrap h3 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: var(--paper);
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.form-group label .req { color: var(--gold-bright); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 18px;
  background: var(--black);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--paper);
  transition: all var(--t);
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--black-deep);
  box-shadow: 0 0 0 4px rgba(232, 201, 122, 0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C9A961' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
}
.form-group textarea { min-height: 140px; }
.form-submit { margin-top: 12px; }
.form-submit button { width: 100%; justify-content: center; }
.form-meta {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--black);
  animation: bounce 0.7s var(--ease-out);
  box-shadow: 0 12px 32px -8px var(--gold-glow);
}
@keyframes bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--paper);
}
.form-success p { color: var(--text-dim); }

/* ============= FOOTER ============= */
.footer {
  background: var(--black-deep);
  color: var(--text-dim);
  padding: 90px 0 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 56px;
  margin-bottom: 70px;
  position: relative;
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo-img { height: 46px; }
.footer-brand p {
  color: var(--text-dim);
  max-width: 320px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.footer h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--gold);
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer ul a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer ul a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width var(--t);
}
.footer ul a:hover { color: var(--gold-bright); }
.footer ul a:hover::before { width: 14px; }
.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}
.footer-contact-row small {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
}
.footer-contact-row a, .footer-contact-row span {
  color: var(--paper);
  font-size: 0.95rem;
}
.footer-contact-row a:hover { color: var(--gold-bright); }
.footer-loket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--char);
  border: 1px solid var(--line-bright);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 14px;
  transition: all var(--t);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-loket:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-faint);
  position: relative;
}
.footer-bottom-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-bright); }

/* ============= SCROLL TOP ============= */
.scroll-top {
  position: fixed;
  bottom: 104px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all var(--t);
  z-index: 50;
  box-shadow: 0 12px 32px -8px var(--gold-glow);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -8px var(--gold-glow);
}
.scroll-top svg { width: 16px; height: 16px; }

/* ============= WHATSAPP BUTTON ============= */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 55;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  animation: whatsapp-enter 0.7s var(--ease-out) 1.2s forwards;
}
@keyframes whatsapp-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: whatsapp-ring 2.4s ease-out infinite;
}
.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  z-index: -2;
  animation: whatsapp-ring 2.4s ease-out 0.6s infinite;
}
@keyframes whatsapp-ring {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 38px -6px rgba(37, 211, 102, 0.75);
}
.whatsapp-btn svg { width: 32px; height: 32px; }
.whatsapp-btn .tooltip {
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--char-light);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--line-bright);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.4);
}
.whatsapp-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--char-light);
  border-right: 1px solid var(--line-bright);
  border-top: 1px solid var(--line-bright);
}
.whatsapp-btn:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============= SCROLL PROGRESS BAR ============= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-light));
  background-size: 200% 100%;
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
  animation: progress-shimmer 3s linear infinite;
}
@keyframes progress-shimmer {
  to { background-position: -200% 0; }
}

/* ============= FLOATING SHAPES ============= */
.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  animation: float-slow 20s ease-in-out infinite;
}
.floating-shape.fs-1 {
  width: 14px; height: 14px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  top: 18%; right: 8%;
  animation-duration: 18s;
}
.floating-shape.fs-2 {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
  bottom: 22%; left: 10%;
  animation-duration: 22s;
  animation-delay: -8s;
}
.floating-shape.fs-3 {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  top: 60%; left: 6%;
  animation-duration: 25s;
  animation-delay: -12s;
}
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(90deg); }
  50% { transform: translate(-15px, -50px) rotate(180deg); }
  75% { transform: translate(-25px, -20px) rotate(270deg); }
}

/* ============= MAGNETIC BUTTONS ============= */
.magnetic {
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* ============= COUNTER ============= */
.counter {
  display: inline-block;
}
.counter.counting {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============= REVEAL ============= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh; height: 100dvh;
  background: var(--black);
  z-index: 95;
  padding: 110px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open { overflow: hidden; }

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mobile-menu-list > li {
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateX(24px);
  transition: all 0.5s var(--ease);
}
body.menu-open .mobile-menu-list > li {
  opacity: 1;
  transform: translateX(0);
}
body.menu-open .mobile-menu-list > li:nth-child(1) { transition-delay: 0.2s; }
body.menu-open .mobile-menu-list > li:nth-child(2) { transition-delay: 0.27s; }
body.menu-open .mobile-menu-list > li:nth-child(3) { transition-delay: 0.34s; }
body.menu-open .mobile-menu-list > li:nth-child(4) { transition-delay: 0.41s; }

.mobile-menu-list > li > a,
.mobile-menu-list > li > .mobile-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.02em;
  text-align: left;
}
.mobile-menu-list > li > a.active,
.mobile-menu-list > li > .mobile-section-toggle.active {
  color: var(--gold-bright);
}
.mobile-section-toggle .chev {
  width: 22px; height: 22px;
  transition: transform 0.4s var(--ease);
  color: var(--gold);
}
.mobile-section-toggle.open .chev { transform: rotate(180deg); }
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  list-style: none;
}
.mobile-sub.open { max-height: 600px; }
.mobile-sub li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px 14px 22px;
  font-size: 1.05rem;
  color: var(--text-dim);
  font-weight: 400;
}
.mobile-sub li a.active { color: var(--gold-bright); }
.mobile-sub li a .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-glow);
}
.mobile-sub li:last-child a { padding-bottom: 22px; }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease) 0.5s;
  position: relative;
}
body.menu-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-footer .contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 0.97rem;
  color: var(--text);
}
.mobile-menu-footer .contact-line svg { color: var(--gold-bright); }

/* ============================================================
   SUBPAGE-SPECIFIC LAYOUTS
   ============================================================ */

/* Service detail page */
.service-detail {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black);
  position: relative;
}
.service-detail .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.service-detail-text > .eyebrow { margin-bottom: 26px; }
.service-detail-text h2 { margin-bottom: 30px; }
.service-detail-text > p {
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--text-dim);
}
.service-detail-text > p strong { color: var(--paper); font-weight: 500; }
.service-detail-text .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--paper);
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  margin: 30px 0;
  position: relative;
}

.feature-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .feature-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .feature-icon svg { width: 16px; height: 16px; }

.service-detail-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-detail-image {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--char);
  box-shadow:
    0 0 0 1px rgba(232, 201, 122, 0.12),
    0 50px 80px -25px rgba(0, 0, 0, 0.7);
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.service-detail-image:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.service-detail-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
  pointer-events: none;
}

.service-aside-card {
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.service-aside-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.service-aside-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 12px;
  position: relative;
}
.service-aside-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
}
.service-aside-card .btn { width: 100%; justify-content: center; position: relative; }

/* Related services */
.related-services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black-deep);
  border-top: 1px solid var(--line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.related-card {
  background: var(--char);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 28px 26px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.related-card:hover {
  background: var(--char-light);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.related-card .service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
}
.related-card .service-icon svg { width: 22px; height: 22px; }
.related-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--paper);
  font-weight: 400;
}
.related-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-dim);
  flex: 1;
}
.related-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  margin-top: auto;
}
.related-card:hover .arrow-link { gap: 14px; }

/* Contact page extras */
.contact-page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.contact-quick-card {
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  text-align: left;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-quick-card:hover {
  background: var(--char-light);
  border-color: var(--gold);
  transform: translateY(-5px);
}
.contact-quick-card .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: grid; place-items: center;
  color: var(--black);
  box-shadow: 0 8px 20px -6px var(--gold-glow);
}
.contact-quick-card .icon svg { width: 22px; height: 22px; }
.contact-quick-card small {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-quick-card .value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 400;
  line-height: 1.3;
}
.contact-quick-card .value:hover { color: var(--gold-bright); }

/* ============================================================
   LANGUAGE PICKER + GOOGLE TRANSLATE OVERRIDES
   ============================================================ */
.lang-btn {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  background: var(--char);
  color: var(--gold-bright);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 55;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(232, 201, 122, 0.15);
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  animation: lang-enter 0.7s var(--ease-out) 1.4s forwards;
}
@keyframes lang-enter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  box-shadow: 0 16px 36px -6px var(--gold-glow);
}
.lang-btn svg { width: 26px; height: 26px; }
.lang-btn .lang-current {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--gold-bright);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.4);
  font-family: var(--font-body);
  border: 1.5px solid var(--char);
}

.lang-popup {
  position: fixed;
  bottom: 100px;
  left: 28px;
  background: var(--char-light);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  z-index: 56;
  min-width: 220px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.7),
              0 0 0 1px rgba(232, 201, 122, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.lang-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-popup-header {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-popup-header::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
}
.lang-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s var(--ease);
  width: 100%;
  text-align: left;
}
.lang-option:hover {
  background: rgba(232, 201, 122, 0.08);
  color: var(--gold-bright);
}
.lang-option.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  font-weight: 600;
}
.lang-option .flag {
  font-size: 20px;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.lang-option .check {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.lang-option.active .check { opacity: 1; }

.lang-revert {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

/* Hide Google Translate UI completely */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.skiptranslate iframe { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-te-gadget,
.goog-te-combo,
.goog-logo-link { display: none !important; }
#google_translate_element {
  position: fixed !important;
  top: -200px;
  left: -200px;
  height: 0; width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
font[style] { background: none !important; box-shadow: none !important; }
.notranslate { unicode-bidi: isolate; }


.faq {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black);
  position: relative;
}
.faq-grid {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--paper);
  cursor: pointer;
  transition: color var(--t);
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--gold-bright); }
.faq-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-bright);
  transition: transform 0.4s var(--ease);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--black); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 4px 4px 32px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}
.faq-answer-inner p { margin-bottom: 14px; color: var(--text-dim); }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--paper); font-weight: 500; }

/* ============================================================
   CALENDAR WIDGET
   ============================================================ */
.calendar-section {
  padding: clamp(90px, 13vw, 160px) 0;
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}
.calendar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 201, 122, 0.08), transparent 60%);
  pointer-events: none;
}
.calendar-section .floating-shape { z-index: 0; }
.calendar-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(232, 201, 122, 0.08),
              0 60px 100px -30px rgba(0, 0, 0, 0.7);
}
.calendar-grid-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

/* Calendar left side */
.calendar-main {
  padding: 40px;
  border-right: 1px solid var(--line);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.calendar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper);
  font-weight: 400;
  text-transform: capitalize;
}
.calendar-nav {
  display: flex;
  gap: 8px;
}
.calendar-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all var(--t);
}
.calendar-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.calendar-nav-btn:disabled:hover {
  background: var(--black);
  color: var(--gold-bright);
}
.calendar-nav-btn svg { width: 14px; height: 14px; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar-weekday {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
}
.calendar-day.other-month {
  color: var(--text-faint);
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.calendar-day.past {
  color: var(--text-faint);
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-day.weekend {
  color: var(--text-faint);
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-day.unavailable {
  color: var(--text-faint);
  text-decoration: line-through;
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-day.available {
  background: rgba(232, 201, 122, 0.06);
  border-color: rgba(232, 201, 122, 0.18);
  color: var(--paper);
}
.calendar-day.available:hover {
  background: rgba(232, 201, 122, 0.18);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-bright);
}
.calendar-day.today {
  position: relative;
}
.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-bright);
}
.calendar-day.selected {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)) !important;
  color: var(--black) !important;
  border-color: var(--gold-bright) !important;
  box-shadow: 0 8px 20px -6px var(--gold-glow);
  transform: translateY(-2px) !important;
}

.calendar-legend {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calendar-legend-item .swatch {
  width: 12px; height: 12px;
  border-radius: 4px;
}
.calendar-legend-item .swatch.avail {
  background: rgba(232, 201, 122, 0.2);
  border: 1px solid rgba(232, 201, 122, 0.3);
}
.calendar-legend-item .swatch.full {
  background: var(--char-light);
  border: 1px solid var(--line-soft);
}
.calendar-legend-item .swatch.sel {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

/* Calendar right side - time slots */
.calendar-side {
  padding: 40px;
  background: var(--char-light);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.calendar-side-empty {
  margin: auto;
  text-align: center;
  color: var(--text-dim);
  padding: 32px 16px;
}
.calendar-side-empty svg {
  width: 48px; height: 48px;
  color: var(--gold);
  margin: 0 auto 18px;
  opacity: 0.7;
}
.calendar-side-empty h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 8px;
  font-weight: 400;
}
.calendar-side-empty p {
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

.calendar-side-active { display: none; flex-direction: column; height: 100%; }
.calendar-side-active.show { display: flex; }

.calendar-selected-date {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.calendar-selected-date small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.calendar-selected-date .date-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 400;
}

.calendar-slots-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.calendar-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: auto;
}
.calendar-slot {
  padding: 12px;
  background: var(--black);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}
.calendar-slot:hover {
  background: var(--char);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.calendar-slot.taken {
  text-decoration: line-through;
  opacity: 0.4;
  cursor: not-allowed;
}
.calendar-slot.taken:hover {
  background: var(--black);
  border-color: var(--line-soft);
  color: var(--text);
  transform: none;
}
.calendar-slot.selected {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold-bright);
  color: var(--black);
  box-shadow: 0 4px 12px -2px var(--gold-glow);
}

.calendar-confirm {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.calendar-confirm.enabled {
  opacity: 1;
  pointer-events: auto;
}

.calendar-success {
  display: none;
  text-align: center;
  margin: auto;
  padding: 32px 16px;
}
.calendar-success.show { display: block; }
.calendar-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--black);
  animation: bounce 0.7s var(--ease-out);
  box-shadow: 0 12px 28px -8px var(--gold-glow);
}
.calendar-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 10px;
  font-weight: 400;
}
.calendar-success p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 260px;
  margin: 0 auto;
}
.calendar-success .booked-info {
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--paper);
}
.calendar-success .booked-info strong { color: var(--gold-bright); }

.calendar-concept-note {
  text-align: center;
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calendar-concept-note .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.calendar-note-wrap {
  text-align: center;
  margin-top: 18px;
}


@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .about .container { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 500px; margin: 0 auto; width: 100%; }
  .partners-content { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .why-card:nth-child(2n) { border-right: none; }
  .why-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 52px 28px; }
  .process-steps::before { display: none; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 44px; }
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-cta > .btn { display: none; }

  .service-detail .container { grid-template-columns: 1fr; gap: 60px; }
  .service-detail-aside { position: static; max-width: 520px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-cards { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .top-strip { font-size: 11.5px; padding: 9px 0; }
  .top-strip-left { gap: 18px; }
  .top-strip-left a span { display: none; }
  .top-strip-left a:first-child span { display: inline; font-weight: 500; }
  .top-strip .container { gap: 14px; }
  .loket-link { padding: 5px 14px; }
  .loket-link span { display: inline !important; font-size: 11px; }

  .nav .container { padding-top: 14px; padding-bottom: 14px; }
  .logo-img { height: 30px; }

  .hero { padding: 56px 0 90px; }
  .hero h1 { font-size: 2.5rem; margin: 22px 0 26px; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 14px 24px; font-size: 12px; letter-spacing: 0.1em; }
  .hero-meta { gap: 32px; padding-top: 32px; }
  .hero-meta-num { font-size: 1.8rem; }
  .hero-badge { padding: 14px 18px; bottom: -18px; left: -8px; gap: 12px; }
  .hero-badge-icon { width: 40px; height: 40px; }
  .hero-badge-text strong { font-size: 13px; }
  .hero-floating { right: -4px; top: 18px; font-size: 11px; padding: 10px 16px; }
  .hero-corner { display: none; }

  .page-hero { padding: 48px 0 56px; }
  .page-hero h1 { font-size: 2.4rem; margin: 18px 0 22px; }
  .page-hero .lead { font-size: 1.05rem; }
  .breadcrumb { font-size: 11.5px; margin-bottom: 22px; }

  .marquee { gap: 40px; }
  .marquee-item { font-size: 1.2rem; gap: 14px; }
  .marquee-section { padding: 26px 0; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 32px 26px; min-height: auto; gap: 18px; }
  .service-card h3 { font-size: 1.4rem; }
  .service-icon { width: 52px; height: 52px; }

  .about { padding: 80px 0; }
  .about-signature { bottom: -18px; right: 18px; padding: 18px 22px; font-size: 1.15rem; }
  .about-quote { font-size: 1.2rem; padding: 22px 0 22px 22px; margin: 26px 0; }
  .about-quote::before { font-size: 3rem; top: -8px; left: 12px; }

  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; border-bottom: 1px solid var(--line) !important; padding: 36px 28px; }
  .why-card:last-child { border-bottom: none !important; }
  .why-card h3 { font-size: 1.35rem; }

  .process { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; margin-top: 48px; }
  .process-num { width: 64px; height: 64px; font-size: 1.35rem; }

  .partners { padding: 80px 0; }

  .cta-section { padding: 90px 0; }
  .cta-inner h2 { font-size: 2.4rem; }
  .cta-inner p { font-size: 1.05rem; }

  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 32px 24px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-row { padding: 18px 22px; gap: 14px; }
  .contact-row-icon { width: 40px; height: 40px; }

  .footer { padding: 70px 0 28px; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-bottom-links { gap: 20px; }

  .scroll-top { bottom: 90px; right: 18px; width: 42px; height: 42px; }
  .whatsapp-btn { bottom: 18px; right: 18px; width: 56px; height: 56px; }
  .whatsapp-btn svg { width: 28px; height: 28px; }
  .whatsapp-btn .tooltip { display: none; }
  .lang-btn { bottom: 18px; left: 18px; width: 52px; height: 52px; }
  .lang-btn svg { width: 22px; height: 22px; }
  .lang-btn .lang-current { font-size: 9px; padding: 2px 6px; bottom: -4px; right: -4px; }
  .lang-popup { left: 18px; bottom: 84px; min-width: 200px; }

  .mobile-menu-list > li > a, .mobile-menu-list > li > .mobile-section-toggle {
    font-size: 1.65rem; padding: 20px 4px;
  }

  .service-detail { padding: 70px 0; }
  .service-detail-text .quote { font-size: 1.15rem; padding: 20px 0 20px 22px; }
  .feature-list li { padding: 16px 0; font-size: 0.95rem; gap: 14px; }
  .service-aside-card { padding: 28px 24px; }

  .related-services { padding: 70px 0; }
  .related-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .related-card { padding: 26px 24px; }

  .contact-quick-card { padding: 26px 24px; }

  .faq { padding: 70px 0; }
  .faq-question { padding: 22px 4px; gap: 18px; }
  .faq-icon { width: 32px; height: 32px; }

  .calendar-section { padding: 70px 0; }
  .calendar-grid-cols { grid-template-columns: 1fr; }
  .calendar-main {
    padding: 26px 22px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .calendar-side { padding: 26px 22px; min-height: auto; }
  .calendar-day { font-size: 0.88rem; border-radius: 10px; }
  .calendar-slots { grid-template-columns: 1fr 1fr 1fr; }
  .calendar-title { font-size: 1.3rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.15rem; }
  .page-hero h1 { font-size: 2.05rem; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { justify-content: center; }
  .hero-meta { gap: 24px; }
  .top-strip-left { gap: 14px; }
  .top-strip-left a:first-child span { display: inline; }
  .cta-inner h2 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg::before, .hero-bg::after { animation: none; }
}
