/* ==========================================================================
   BALI NINE TATTOO STUDIO - VINTAGE GOLD & BLACK LUXURY THEME
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS (MATCHING BRAND LOGO)
   -------------------------------------------------------------------------- */
:root {
  --bg-dark: #08090c;
  --bg-surface: #12141a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 163, 89, 0.4);

  --gold: #d4a359;
  --gold-hover: #b8863b;
  --gold-glow: rgba(212, 163, 89, 0.35);

  /* Compatibility aliases */
  --crimson: #d4a359;
  --crimson-hover: #b8863b;
  --crimson-glow: rgba(212, 163, 89, 0.35);
  --border-crimson: rgba(212, 163, 89, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-sub: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 10px 30px rgba(212, 163, 89, 0.25);
  --glass-backdrop: blur(16px);
}

/* --------------------------------------------------------------------------
   2. GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.tattoo-dark-body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-crimson,
.text-gold {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   3. HEADER & CENTERED LOGO NAVBAR
   -------------------------------------------------------------------------- */
/* Admin Bar Offset for Logged In WP Users */
body.admin-bar .site-header.tattoo-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header.tattoo-header {
    top: 46px;
  }
}

.site-header.tattoo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #08090c;
  border-bottom: none;
  padding: 0.8rem 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav Splits (Left & Right) */
.nav-split {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item>a {
  color: var(--gold);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item>a::after {
  width: 100%;
}

/* Centered Logo */
.logo-area-centered {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-area-centered img,
.logo-area-centered .custom-logo,
.logo-area-centered .custom-logo img,
.custom-logo img {
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.tattoo-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-skull-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8c6321 100%);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.3rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  color: var(--gold);
  font-weight: 700;
}

/* Header Buttons */
.btn-header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a67c33 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5b869 0%, #c8963e 100%);
  box-shadow: 0 6px 20px rgba(212, 163, 89, 0.5);
  color: #000;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(212, 163, 89, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background: var(--gold);
  color: #000;
}

.mobile-navigation-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(8, 9, 12, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

.mobile-navigation-dropdown.active {
  display: block;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.85rem 0.5rem;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu .current-menu-item>a {
  color: var(--gold);
  padding-left: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. STICKY REVEAL HERO SECTION (100vh FULL SCREEN)
   -------------------------------------------------------------------------- */
.tattoo-hero-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #08090c;
  z-index: 1;
  will-change: transform, opacity;
}

/* Sections Following Hero Slide Up Over Hero like a Curtain */
.tattoo-main-dark>section:not(.tattoo-hero-section) {
  position: relative;
  z-index: 2;
  background: #08090c;
}

.tattoo-about-section {
  box-shadow: 0 -35px 70px rgba(0, 0, 0, 0.95), 0 -1px 0 var(--border-gold);
  border-top: 1px solid var(--border-gold);
}

.hero-ambient-glow {
  display: none;
}

.hero-container-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* Hero Left Column */
.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 163, 89, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  width: fit-content;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.4;
}

.hero-intro-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.hero-checklist li i {
  color: var(--gold);
  font-size: 1rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.btn-hero-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #a67c33 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-glow);
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #e5b869 0%, #c8963e 100%);
  box-shadow: 0 12px 25px rgba(212, 163, 89, 0.45);
  color: #000;
}

.btn-hero-secondary {
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  background: rgba(212, 163, 89, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero Center Column (PNG Model - Absolutely Centered in Section) */
.hero-center-col {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.model-png-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatModel 6s ease-in-out infinite;
}

.hero-model-img {
  max-width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease-out;
}

.model-glow-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

@keyframes floatModel {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Hero Right Column (Vertical Carousel) */
.hero-right-col {
  position: relative;
  height: 468px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: none;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: var(--glass-backdrop);
  margin-left: auto;
  width: 100%;
  max-width: 320px;
}

.vertical-carousel-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.vertical-carousel-wrapper::before,
.vertical-carousel-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.vertical-carousel-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #08090c 0%, transparent 100%);
}

.vertical-carousel-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #08090c 0%, transparent 100%);
}

.vertical-carousel-track {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* --------------------------------------------------------------------------
   HERO CAROUSEL MIDDLE IMAGE STYLING (PENGATURAN SHADOW & BORDER GAMBAR TENGAH)
   -------------------------------------------------------------------------- */
.v-slide-card {
  position: relative;
  height: 140px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent !important;
  flex-shrink: 0;
  opacity: 0.45;
  box-shadow: none !important;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.v-slide-card.active-middle {
  opacity: 1;
  border: 1px solid var(--border-gold) !important;
  box-shadow: 0 0 22px rgba(212, 163, 89, 0.32) !important;
  z-index: 5;
}

.v-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.v-slide-card.active-middle img {
  transform: scale(1.05);
}

.v-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0.8rem 1rem;
}

.v-slide-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  border-left: 2px solid var(--gold);
  padding-left: 0.5rem;
}

@keyframes scrollVerticalTrack {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Hero Stats Bar Bottom */
.hero-stats-container {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.stat-card {
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   5. GENERAL SECTION HEADER & LAYOUTS
   -------------------------------------------------------------------------- */
.tattoo-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.section-subtitle-text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0.8rem auto 0 0;
}

.title-accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0 0;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   6. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(18, 20, 26, 0.92);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.about-badge-floating i {
  color: var(--gold);
  font-size: 1.4rem;
}

.about-badge-floating strong {
  display: block;
  font-size: 0.95rem;
}

.about-badge-floating span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-paragraph-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-paragraph-box .lead-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.about-paragraph-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-features-mini {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mini-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.mini-feat i {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-light);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
  background: var(--bg-card-hover);
}

.service-card.highlight-card {
  border-color: var(--gold);
  background: rgba(212, 163, 89, 0.08);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(212, 163, 89, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.service-tag.highlight-tag {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   8. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.why-card.full-width-why {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(212, 163, 89, 0.08);
  border-color: var(--border-gold);
}

/* --------------------------------------------------------------------------
   9. OUR PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.step-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. STYLES SECTION
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. FREQUENTLY REQUESTED TATTOO STYLES (UNIFORM FLEXBOX GRID)
   -------------------------------------------------------------------------- */
.styles-pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.style-pill {
  flex: 1 1 calc(20% - 1rem);
  min-width: 180px;
  max-width: 240px;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.style-pill i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.style-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.style-pill:hover i {
  color: #000;
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .style-pill {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .style-pill {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 140px;
    height: 48px;
    padding: 0 0.8rem;
    font-size: 0.82rem;
    gap: 0.45rem;
  }
}

/* --------------------------------------------------------------------------
   11. TOURIST SECTION
   -------------------------------------------------------------------------- */
.tourist-box-card {
  background: linear-gradient(135deg, #1d1912 0%, #10121a 100%);
  border: 1px solid var(--border-gold);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.tourist-content {
  max-width: 850px;
  margin: 0 auto;
}

.tourist-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-main);
  margin: 0.8rem 0 1.2rem 0;
}

.tourist-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.flag-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.flag-badges span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. CTA & CONTACT SECTION
   -------------------------------------------------------------------------- */
.cta-contact-box {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  text-align: center;
}

.cta-header {
  max-width: 850px;
  margin: 0 auto;
}

.cta-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-main);
  margin-top: 0.5rem;
}

.cta-header h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.cta-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.reassurance-badges-bar {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem 0;
  flex-wrap: wrap;
}

.reassurance-badges-bar span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.reassurance-badges-bar span i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.cta-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-cta-large {
  background: linear-gradient(135deg, var(--gold) 0%, #a67c33 100%);
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-glow);
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #e5b869 0%, #c8963e 100%);
  box-shadow: 0 12px 30px rgba(212, 163, 89, 0.5);
  color: #000;
}

.btn-map-large {
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-map-large:hover {
  background: rgba(212, 163, 89, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.social-channels-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-channel-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: var(--transition);
}

.social-channel-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.social-channel-item i {
  font-size: 1.8rem;
  color: var(--gold);
}

.social-channel-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.social-channel-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. FOOTER & FLOATING WA BUTTON
   -------------------------------------------------------------------------- */
.site-footer.tattoo-footer {
  background: #050608;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
  color: var(--text-muted);
}

.footer-logo-area {
  margin-bottom: 1.2rem;
}

.footer-logo-area img,
.footer-logo-area .custom-logo,
.footer-logo-area .custom-logo img,
.site-footer .custom-logo img {
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-area .tattoo-brand-logo {
  gap: 0.6rem;
}

.footer-logo-area .brand-skull-icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.footer-logo-area .brand-main {
  font-size: 1.05rem;
}

.footer-logo-area .brand-sub {
  font-size: 0.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.footer-description {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-nav-list a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .tattoo-hero-section {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    padding-top: 110px;
    padding-bottom: 3rem;
    z-index: 1 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .tattoo-main-dark>section:not(.tattoo-hero-section) {
    position: relative;
    z-index: 1;
    background: #08090c;
  }

  .tattoo-about-section {
    box-shadow: none !important;
    border-top: none !important;
  }

  .hero-container-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-left-col {
    max-width: 100%;
    align-items: center;
  }

  .hero-center-col {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    pointer-events: auto;
    width: 100%;
    max-width: 380px;
    margin: 1rem auto;
  }

  .hero-right-col {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 480px;
    margin: 1.5rem auto 0 auto;
  }

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

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

@media (max-width: 850px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .about-grid-layout {
    grid-template-columns: 1fr;
  }

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

  .social-channels-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline-grid {
    grid-template-columns: 1fr;
  }

  .stats-glass-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-main {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   15. LIGHTBOX OVERLAY FIX (PREVENT FOOTER UI BUG)
   -------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.flex,
.lightbox-overlay.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hidden {
  display: none !important;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 100000;
}

.lightbox-close:hover {
  background: var(--gold);
  color: #000;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 100000;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-arrow:hover {
  background: var(--gold);
  color: #000;
}

.lightbox-caption {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. GALLERY & ARTICLES CARDS STYLING
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 3;
  display: block;
}

.gallery-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card-item:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(8, 9, 12, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold);
}

.gallery-card-item:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay i {
  font-size: 2.4rem;
  color: var(--gold);
  transform: scale(0.6) rotate(-15deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 12px rgba(212, 163, 89, 0.6));
}

.gallery-card-item:hover .gallery-card-overlay i {
  transform: scale(1) rotate(0deg);
}

.gallery-card-overlay span {
  display: none !important;
}

/* Video Items: Play Icon Visible by Default */
.gallery-card-item[data-type="video"] .gallery-card-overlay,
.gallery-card-item[data-type="iframe"] .gallery-card-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-card-item[data-type="video"] .gallery-card-overlay i,
.gallery-card-item[data-type="iframe"] .gallery-card-overlay i {
  font-size: 3.2rem;
  color: var(--gold);
  background: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  transform: scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 12px rgba(212, 163, 89, 0.5));
}

.gallery-card-item[data-type="video"]:hover .gallery-card-overlay,
.gallery-card-item[data-type="iframe"]:hover .gallery-card-overlay {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(8, 9, 12, 0.85) 100%);
}

.gallery-card-item[data-type="video"]:hover .gallery-card-overlay i,
.gallery-card-item[data-type="iframe"]:hover .gallery-card-overlay i {
  transform: scale(1.18);
  color: #ffffff;
  filter: drop-shadow(0 0 20px rgba(212, 163, 89, 0.9));
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.article-img-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
}

.article-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-thumb {
  transform: scale(1.06);
}

.article-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.article-card .article-date,
.article-date {
  display: none !important;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.article-title a:hover {
  color: var(--gold);
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-read-more {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-read-more:hover {
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   17. DARK PAGE BANNER & PAGINATION (ALL SUBPAGES)
   -------------------------------------------------------------------------- */
.page-banner-dark {
  background: #050608;
  border-bottom: 1px solid var(--border-gold);
  padding: 7.5rem 0 3.8rem 0;
  text-align: center;
  position: relative;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.page-banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.page-banner-breadcrumb a {
  color: var(--gold);
}

.page-banner-breadcrumb .current {
  color: var(--text-main);
  font-weight: 600;
}

.premium-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.premium-pagination .page-numbers:hover {
  background: rgba(212, 163, 89, 0.15);
  color: var(--gold);
  border-color: var(--border-gold);
}

.premium-pagination .page-numbers.current {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   18. RICH ARTICLE & PAGE TYPOGRAPHY STYLING (DARK LUXURY SYSTEM)
   -------------------------------------------------------------------------- */
.page-content,
.blog-single-content {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* Headings Styling */
.page-content h1,
.blog-single-content h1,
.page-content h2,
.blog-single-content h2,
.page-content h3,
.blog-single-content h3,
.page-content h4,
.blog-single-content h4,
.page-content h5,
.blog-single-content h5,
.page-content h6,
.blog-single-content h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.page-content h1,
.blog-single-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-gold);
}

.page-content h2,
.blog-single-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.2rem;
  color: var(--text-main);
}

.page-content h3,
.blog-single-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.page-content h4,
.blog-single-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.page-content h5,
.blog-single-content h5,
.page-content h6,
.blog-single-content h6 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

/* Paragraphs & Inlines */
.page-content p,
.blog-single-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.page-content strong,
.blog-single-content strong,
.page-content b,
.blog-single-content b {
  color: var(--text-main);
  font-weight: 700;
}

.page-content a,
.blog-single-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
}

.page-content a:hover,
.blog-single-content a:hover {
  color: #ffffff;
}

/* Horizontal Rule Divider (Gold Line) */
.page-content hr,
.blog-single-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 3rem 0;
  opacity: 0.8;
}

/* Custom Unordered Bullet Lists (ul) */
.page-content ul,
.blog-single-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 2rem 0;
}

.page-content ul li,
.blog-single-content ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-content ul li::before,
.blog-single-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Custom Ordered Numbered Lists (ol) */
.page-content ol,
.blog-single-content ol {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 2rem 0;
}

.page-content ol li,
.blog-single-content ol li {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  counter-increment: custom-counter;
}

.page-content ol li::before,
.blog-single-content ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: rgba(212, 163, 89, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blockquotes */
.page-content blockquote,
.blog-single-content blockquote {
  background: rgba(212, 163, 89, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.6rem 2rem;
  margin: 2.2rem 0;
  font-style: italic;
  color: var(--text-main);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-content blockquote p,
.blog-single-content blockquote p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
}

/* Tables */
.page-content table,
.blog-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.2rem 0;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #101218;
}

.page-content th,
.blog-single-content th {
  background: rgba(212, 163, 89, 0.15);
  color: var(--gold);
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--border-gold);
  letter-spacing: 0.5px;
}

.page-content td,
.blog-single-content td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.page-content tr:nth-child(even),
.blog-single-content tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Code & Pre Blocks */
.page-content code,
.blog-single-content code {
  background: rgba(212, 163, 89, 0.12);
  color: var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  border: 1px solid rgba(212, 163, 89, 0.2);
}

.page-content pre,
.blog-single-content pre {
  background: #050608;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  color: var(--text-main);
  font-family: monospace;
  font-size: 0.9rem;
  margin: 2rem 0;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-content pre code,
.blog-single-content pre code {
  background: transparent;
  padding: 0;
  border: none;
  color: inherit;
}

/* Images & Captions inside Content */
.page-content img,
.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin: 1.8rem 0;
}

.page-content figcaption,
.blog-single-content figcaption,
.page-content .wp-caption-text,
.blog-single-content .wp-caption-text {
  font-size: 0.85rem;
  color: var(--gold);
  text-align: center;
  margin-top: -0.8rem;
  margin-bottom: 1.8rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   19. FEATURED POST IMAGE & TABLE OF CONTENTS (TOC) DARK STYLING
   -------------------------------------------------------------------------- */

/* Featured Image Frame Fix */
.blog-featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .blog-featured-image {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }
}

/* Table of Contents (TOC Plugins & Custom TOC) */
#ez-toc-container,
.ez-toc-container,
#toc_container,
.toc,
.table-of-contents,
.lwptoc {
  background: rgba(212, 163, 89, 0.05) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.6rem 2rem !important;
  margin: 2.2rem 0 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.ez-toc-title-container,
#toc_container .toc_title,
.ez-toc-title,
.lwptoc_header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: var(--font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0.6rem !important;
  border-bottom: 1px solid rgba(212, 163, 89, 0.2) !important;
}

.ez-toc-title::before,
#toc_container .toc_title::before {
  content: '📑 ';
  margin-right: 0.4rem;
}

#ez-toc-container ul,
#toc_container ul,
.ez-toc-widget-container ul,
.lwptoc_items ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

#ez-toc-container ul li,
#toc_container ul li,
.ez-toc-widget-container ul li,
.lwptoc_item {
  position: relative !important;
  padding-left: 1.5rem !important;
  margin-bottom: 0.6rem !important;
  font-size: 0.95rem !important;
}

#ez-toc-container ul li::before,
#toc_container ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

#ez-toc-container a,
#toc_container a,
.ez-toc-link,
.lwptoc_item a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  font-weight: 500 !important;
}

#ez-toc-container a:hover,
#toc_container a:hover,
.ez-toc-link:hover,
.lwptoc_item a:hover {
  color: var(--gold) !important;
  padding-left: 0.3rem !important;
}

#ez-toc-container ul ul,
#toc_container ul ul {
  margin-top: 0.5rem !important;
  margin-left: 1rem !important;
}

/* --------------------------------------------------------------------------
   20. GALLERY TABS & LOAD MORE BUTTON (DARK LUXURY STYLING)
   -------------------------------------------------------------------------- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  outline: none;
}

.gallery-tab-btn:hover {
  background: rgba(212, 163, 89, 0.15);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 163, 89, 0.2);
}

.gallery-tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(212, 163, 89, 0.4);
}

.gallery-tab-btn i {
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   21. MOBILE MODE RESPONSIVE OPTIMIZATIONS (2 COL GALLERY & 1 COL HORIZONTAL ARTICLES)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* 2 Columns Grid for Gallery on Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
  }

  .gallery-card-item {
    border-radius: var(--radius-md) !important;
    aspect-ratio: 1 / 1 !important;
  }

  .gallery-card-overlay span {
    display: none !important;
  }

  .gallery-card-overlay i {
    font-size: 1.8rem !important;
  }

  /* 1 Column Horizontal Layout for Articles on Mobile (Image Left, Title & Details Right) */
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .article-card {
    flex-direction: row !important;
    align-items: center !important;
    padding: 0.8rem !important;
    gap: 1rem !important;
    border-radius: var(--radius-md) !important;
  }

  .article-img-link {
    width: 105px !important;
    height: 105px !important;
    flex-shrink: 0 !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden !important;
  }

  .article-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .article-body {
    padding: 0 !important;
    gap: 0.35rem !important;
    justify-content: center !important;
  }

  .article-date {
    font-size: 0.75rem !important;
  }

  .article-title {
    font-size: 0.98rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }

  .article-excerpt {
    display: none !important;
  }

  .article-read-more {
    font-size: 0.8rem !important;
    margin-top: 0.2rem !important;
  }
}

/* --------------------------------------------------------------------------
   22. BEAUTIFIED VINTAGE GOLD LOAD MORE BUTTON UI
   -------------------------------------------------------------------------- */
#gallery-load-more-btn,
#home-gallery-load-more-btn,
.load-more-btn,
.btn-load-more-gold {
  background: rgba(212, 163, 89, 0.08) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--gold) !important;
  padding: 0.9rem 2.8rem !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  margin: 0 auto;
}

#gallery-load-more-btn:hover,
#home-gallery-load-more-btn:hover,
.load-more-btn:hover,
.btn-load-more-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, #a67c33 100%) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(212, 163, 89, 0.4) !important;
}

#gallery-load-more-btn i,
#home-gallery-load-more-btn i,
.load-more-btn i,
.btn-load-more-gold i {
  font-size: 0.9rem !important;
  transition: transform 0.3s ease !important;
}

#gallery-load-more-btn:hover i,
#home-gallery-load-more-btn:hover i,
.load-more-btn:hover i,
.btn-load-more-gold:hover i {
  transform: rotate(90deg) !important;
}

/* --------------------------------------------------------------------------
   23. BUTTON LINK OVERRIDE FIX & WHATSAPP CTA STYLING
   -------------------------------------------------------------------------- */
.page-content a.btn,
.blog-single-content a.btn,
.page-content a.btn-primary,
.blog-single-content a.btn-primary {
  text-decoration: none !important;
}

.btn-whatsapp-cta,
a.btn-whatsapp-cta {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

.btn-whatsapp-cta:hover,
a.btn-whatsapp-cta:hover {
  background: linear-gradient(135deg, #34e775 0%, #107c6f 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

/* --------------------------------------------------------------------------
   24. ACCORDION DAFTAR ISI (TOC) LUXURY UI STYLING
   -------------------------------------------------------------------------- */
.post-toc-box {
  margin: 2.2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.post-toc-box summary.toc-title {
  background: rgba(212, 163, 89, 0.08) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  list-style: none !important;
  font-family: var(--font-heading) !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  transition: var(--transition);
  user-select: none;
}

.post-toc-box summary.toc-title::-webkit-details-marker {
  display: none !important;
}

.post-toc-box[open] summary.toc-title {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background: rgba(212, 163, 89, 0.14) !important;
}

.post-toc-box summary.toc-title .toc-title-left {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.post-toc-box summary.toc-title .toc-title-left i {
  font-size: 1.1rem;
  color: var(--gold);
}

.post-toc-box summary.toc-title .toc-icon {
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.post-toc-box[open] summary.toc-title .toc-icon {
  transform: rotate(180deg);
}

.post-toc-box .toc-content-wrapper {
  background: #0c0e14;
  border: 1px solid var(--border-gold);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.4rem 1.8rem;
}

.post-toc-box .toc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.post-toc-box .toc-list li {
  position: relative !important;
  padding-left: 1.4rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

.post-toc-box .toc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.9rem;
}

.post-toc-box .toc-list li.toc-h3 {
  margin-left: 1.2rem !important;
  font-size: 0.9em;
  opacity: 0.9;
}

.post-toc-box .toc-list li.toc-h3::before {
  content: '•';
}

.post-toc-box .toc-list a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  transition: all 0.25s ease !important;
  display: inline-block;
}

.post-toc-box .toc-list a:hover {
  color: #ffffff !important;
  padding-left: 0.35rem !important;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION STYLES
   -------------------------------------------------------------------------- */
.rkr-faq-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #12141a;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
  background: rgba(212, 163, 89, 0.04);
}

.faq-question {
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .fa-chevron-down {
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInFaq 0.3s ease forwards;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}