/* ===================================================================
   INK N WIRE TATTOO STUDIO - PREMIUM STYLESHEET
   Aesthetic: Flat & Boxy 3D Frosted Glass Cyber-Industrial
   Theme: Pitch Black, Crisp White, Neon Electric Teal
=================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&display=swap");

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #07080b;
  --bg-secondary: #0d1017;
  --bg-tertiary: #131722;
  --bg-card: rgba(13, 16, 23, 0.72);
  --bg-card-hover: rgba(19, 23, 34, 0.88);

  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --teal-primary: #00f5d4;
  --teal-cyan: #00e5ff;
  --teal-hover: #38ef7d;
  --teal-glow: rgba(0, 245, 212, 0.28);
  --teal-glow-strong: rgba(0, 245, 212, 0.55);
  --teal-dim: rgba(0, 245, 212, 0.12);
  --teal-border: rgba(0, 245, 212, 0.35);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-box: rgba(0, 245, 212, 0.25);
  --border-solid: #1e293b;

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-display: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Geometry & Boxy Neobrutalism */
  --box-border-width: 2px;
  --radius-sharp: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows & 3D Glass Effects */
  --shadow-boxy-teal: 4px 4px 0px #00f5d4;
  --shadow-boxy-white: 4px 4px 0px #ffffff;
  --shadow-boxy-dark: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --shadow-glass:
    0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 245, 212, 0.12);
  --shadow-glow: 0 0 35px var(--teal-glow);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
}

/* --- Global Reset & Base Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 245, 212, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(0, 229, 255, 0.04) 0%,
      transparent 45%
    ),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    60px 60px,
    60px 60px;
  background-position:
    0 0,
    0 0,
    -1px -1px,
    -1px -1px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Cyber Dust Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 60%,
    rgba(7, 8, 11, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-left: 1px solid var(--border-subtle);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 1px solid var(--teal-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal-primary);
}

/* Custom Selection */
::selection {
  background: var(--teal-primary);
  color: #000000;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

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

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

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Common Badges & UI Elements --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid var(--teal-border);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--teal-primary);
  box-shadow: 0 0 8px var(--teal-primary);
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.section-title span.teal-text {
  color: var(--teal-primary);
  text-shadow: 0 0 20px var(--teal-glow);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Frosted Glass 3D Box Utility */
.frosted-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-box);
  position: relative;
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.frosted-box:hover {
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-glass);
}

/* Technical Corner Markings for Boxy Aesthetics */
.tech-corners {
  position: relative;
}
.tech-corners::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--teal-primary);
  border-right: 2px solid var(--teal-primary);
  pointer-events: none;
}
.tech-corners::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--teal-primary);
  border-left: 2px solid var(--teal-primary);
  pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  border: var(--box-border-width) solid transparent;
  transition: all var(--transition-fast);
  position: relative;
  user-select: none;
}

.btn-teal {
  background: var(--teal-primary);
  color: #050608;
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-boxy-white);
}

.btn-teal:hover {
  background: #ffffff;
  color: #050608;
  border-color: #ffffff;
  box-shadow: 6px 6px 0px var(--teal-primary);
  transform: translate(-2px, -2px);
}

.btn-outline {
  background: rgba(13, 16, 23, 0.6);
  color: var(--text-white);
  border-color: var(--teal-border);
  backdrop-filter: blur(10px);
  box-shadow: 4px 4px 0px rgba(0, 245, 212, 0.2);
}

.btn-outline:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  box-shadow: 4px 4px 0px var(--teal-primary);
  background: rgba(0, 245, 212, 0.08);
  transform: translate(-2px, -2px);
}

.btn-white {
  background: #ffffff;
  color: #050608;
  border-color: #ffffff;
  box-shadow: var(--shadow-boxy-white);
}

.btn-white:hover {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  box-shadow: 6px 6px 0px #ffffff;
  transform: translate(-2px, -2px);
}

/* ===================================================================
   HEADER & NAVIGATION
=================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-box);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  height: 70px;
  background: rgba(5, 6, 9, 0.95);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 245, 212, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--teal-glow-strong));
  transition: transform var(--transition-bounce);
  filter: invert(1);
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(-10deg) scale(1.08);
}

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

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-white);
  line-height: 1;
}

.brand-title span {
  color: var(--teal-primary);
}

.brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--teal-primary);
  box-shadow: 0 0 8px var(--teal-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-primary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 10px var(--teal-glow);
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-white);
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: var(--teal-primary);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: var(--teal-primary);
}

/* ===================================================================
   HERO SECTION
=================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Cyber Grid Accent */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 245, 212, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 245, 212, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 40%,
    transparent 80%
  );
  z-index: 0;
}

.hero-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 245, 212, 0.15) 0%,
    transparent 70%
  );
  top: 20%;
  right: 10%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid var(--teal-border);
  padding: 0.35rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--teal-primary);
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00f5d4;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f5d4;
  animation: pulseTeal 2s infinite;
}

@keyframes pulseTeal {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 245, 212, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span.glow-teal {
  color: var(--teal-primary);
  /* display: block; */
  text-shadow: 0 0 30px rgba(0, 245, 212, 0.4);
}

.hero-title span.outline-text {
  -webkit-text-stroke: 1.5px #ffffff;
  color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Hero Stats Metric Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.stat-card {
  padding: 1.2rem 1rem;
  text-align: center;
  background: rgba(13, 16, 23, 0.6);
  border: 1px solid var(--border-box);
  backdrop-filter: blur(12px);
  position: relative;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-primary);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 15px var(--teal-glow);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Hero 3D Card Showcase */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 2px solid var(--teal-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.75rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 245, 212, 0.15);
  position: relative;
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.hero-card-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--teal-primary);
}

.hero-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.hero-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-card-img-wrap img {
  transform: scale(1.06);
}

.hero-card-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 8, 11, 0.85);
  border: 1px solid var(--teal-border);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-artist {
  display: flex;
  flex-direction: column;
}

.hero-card-artist span:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-card-artist span:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

/* Floating 3D Micro-Badges */
.floating-badge {
  position: absolute;
  background: rgba(13, 16, 23, 0.9);
  border: 1px solid var(--teal-primary);
  box-shadow:
    4px 4px 0px #000000,
    0 0 20px var(--teal-glow);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  z-index: 3;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-badge-1 {
  top: -20px;
  left: -25px;
}

.floating-badge-2 {
  bottom: -45px;
  right: -25px;
  animation-delay: 2s;
}

.badge-icon {
  font-size: 1.25rem;
  color: var(--teal-primary);
}

.badge-text-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.badge-text-sub {
  font-size: 0.7rem;
  color: var(--teal-primary);
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===================================================================
   ABOUT SECTION & HYGIENE STANDARDS
=================================================================== */
.about-section {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  border-top: 1px solid var(--border-box);
  border-bottom: 1px solid var(--border-box);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(13, 16, 23, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.feature-item:hover {
  border-color: var(--teal-primary);
  transform: translateX(6px);
  background: rgba(0, 245, 212, 0.04);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.feature-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* About Visual Collage */
.about-visual-col {
  position: relative;
}

.about-box-card {
  background: var(--bg-card);
  border: 2px solid var(--teal-border);
  padding: 1.5rem;
  box-shadow:
    var(--shadow-boxy-dark),
    0 0 30px rgba(0, 245, 212, 0.1);
}

.about-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-img-item {
  position: relative;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border-subtle);
}

.about-img-item.large {
  grid-column: span 2;
  height: 240px;
}

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

.about-box-card:hover .about-img-item img {
  transform: scale(1.05);
}

.about-seal-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #000000;
  border: 2px solid var(--teal-primary);
  box-shadow: 4px 4px 0px var(--teal-primary);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seal-icon {
  font-size: 1.75rem;
  color: var(--teal-primary);
}

.seal-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

/* ===================================================================
   PROFESSIONALS & MASTER ARTISTS SECTION
=================================================================== */
.artists-section {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-box);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.artist-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--border-box);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-boxy-dark);
  transition: all var(--transition-smooth);
}

.artist-card:hover {
  border-color: var(--teal-primary);
  box-shadow:
    6px 6px 0px var(--teal-primary),
    0 20px 40px rgba(0, 0, 0, 0.7);
  transform: translate(-3px, -3px);
}

.artist-badge-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.artist-exp-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.12);
  border: 1px solid var(--teal-border);
  padding: 0.35rem 0.75rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.artist-role-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #131722;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-subtle);
}

.artist-media-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--border-box);
  margin-bottom: 1.5rem;
  background: #050608;
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: grayscale(20%) contrast(105%);
}

.artist-card:hover .artist-photo {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(110%);
}

.artist-overlay-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.85) 0%, transparent 60%);
  pointer-events: none;
}

.artist-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.artist-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--teal-primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.artist-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.artist-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(0, 245, 212, 0.06);
  border: 1px solid var(--teal-border);
  color: var(--text-primary);
}

.artist-action {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.artist-action .btn {
  width: 100%;
}

/* ===================================================================
   TWO STUDIO LOCATIONS SECTION
=================================================================== */
.studios-section {
  padding: 7rem 0;
  position: relative;
  background: var(--bg-primary);
}

.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.studio-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--border-box);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-boxy-dark);
  transition: all var(--transition-smooth);
}

.studio-card:hover {
  border-color: var(--teal-primary);
  box-shadow:
    6px 6px 0px var(--teal-primary),
    0 20px 40px rgba(0, 0, 0, 0.7);
  transform: translate(-3px, -3px);
}

.studio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
}

.studio-code {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.15em;
}

.studio-type-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #ffffff;
  background: #1e293b;
  padding: 0.25rem 0.6rem;
}

.studio-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.studio-address-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(7, 8, 11, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.studio-address-box i {
  color: var(--teal-primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.studio-address-text {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
}

.studio-address-text strong {
  color: var(--teal-primary);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.studio-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.studio-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.studio-highlights li i {
  color: var(--teal-primary);
  font-size: 0.8rem;
}

.studio-actions-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
}

/* ===================================================================
   SERVICES SECTION
=================================================================== */
.services-section {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  border-top: 1px solid var(--border-box);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--border-box);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.service-card.featured-service {
  border-color: var(--teal-primary);
  background: rgba(13, 20, 28, 0.85);
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.1);
}

.service-card:hover {
  border-color: var(--teal-primary);
  box-shadow: 6px 6px 0px var(--teal-primary);
  transform: translate(-3px, -3px);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--border-box);
  margin-bottom: 1.25rem;
  background: #050608;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: grayscale(15%) contrast(105%);
}

.service-card:hover .service-img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(110%);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 11, 0.85) 0%, transparent 60%);
  pointer-events: none;
}

.service-img-wrap .service-header-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  background: rgba(7, 8, 11, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-subtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.service-subtag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-consult-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-consult-link:hover {
  color: #ffffff;
  gap: 0.6rem;
}

/* Standout Styling for Tattoo Training With Certification Card */
.service-card.training-card {
  background: linear-gradient(150deg, rgba(0, 245, 212, 0.15) 0%, rgba(13, 20, 28, 0.95) 50%, rgba(7, 9, 13, 0.98) 100%);
  border: 2px solid var(--teal-primary);
  box-shadow: 0 0 35px rgba(0, 245, 212, 0.22), var(--shadow-boxy-dark);
  position: relative;
  overflow: hidden;
}

.service-card.training-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.service-card.training-card:hover {
  border-color: #ffffff;
  box-shadow: 6px 6px 0px var(--teal-primary), 0 0 45px rgba(0, 245, 212, 0.4);
  transform: translate(-3px, -3px);
}

.training-badge-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--teal-border);
}

.training-hot-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #050608;
  background: var(--teal-primary);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.1em;
  box-shadow: 0 0 12px var(--teal-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.training-cert-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  padding: 0.25rem 0.5rem;
}

.service-img-wrap .service-header-icon.training-icon,
.service-header-icon.training-icon {
  background: var(--teal-primary) !important;
  color: #050608 !important;
  box-shadow: 0 0 20px var(--teal-glow-strong);
  border-color: #ffffff;
}

.service-subtag.academy-tag {
  background: rgba(0, 245, 212, 0.1);
  border-color: var(--teal-border);
  color: var(--teal-primary);
  font-weight: 600;
}

/* ===================================================================
   PHOTO GALLERY & INFINITE AUTO-SCROLLER
=================================================================== */
.gallery-section {
  padding: 7rem 0 5rem 0;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  border-top: 1px solid var(--border-box);
}

/* Filter Controls */
.gallery-filters-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.5rem;
  background: rgba(13, 16, 23, 0.8);
  border: 2px solid var(--border-box);
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--teal-primary);
  color: #ffffff;
}

.filter-btn.active {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: #050608;
  box-shadow: 4px 4px 0px #ffffff;
  transform: translate(-2px, -2px);
}

.filter-count {
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  background: rgba(0, 0, 0, 0.3);
  margin-left: 0.4rem;
}

.filter-btn.active .filter-count {
  background: #000000;
  color: var(--teal-primary);
}

/* Infinite Marquee Track Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Gradient Mask for Smooth Edge Fading */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.marquee-track.track-left {
  animation: scrollMarqueeLeft 45s linear infinite;
}

.marquee-track.track-right {
  animation: scrollMarqueeRight 48s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollMarqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Gallery Photo Item Card */
.gallery-card {
  width: 290px;
  height: 360px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 2px solid var(--border-box);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-card:hover {
  border-color: var(--teal-primary);
  box-shadow: 0 10px 30px rgba(0, 245, 212, 0.25);
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.3s ease;
  filter: grayscale(15%) contrast(105%);
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(110%);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 8, 11, 0.9) 0%,
    rgba(7, 8, 11, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-branch-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 245, 212, 0.15);
  border: 1px solid var(--teal-primary);
  color: var(--teal-primary);
  backdrop-filter: blur(8px);
}

.gallery-zoom-icon {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  background: var(--teal-primary);
  color: #050608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 2px 2px 0px #ffffff;
}

.gallery-card-info {
  display: flex;
  flex-direction: column;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.gallery-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Gallery Prompt Bar */
.gallery-prompt-bar {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.gallery-prompt-bar i {
  color: var(--teal-primary);
  margin-right: 0.5rem;
}

/* ===================================================================
   LIGHTBOX MODAL
=================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 9, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 960px;
  width: 100%;
  background: var(--bg-card);
  border: 2px solid var(--teal-primary);
  box-shadow:
    0 0 60px rgba(0, 245, 212, 0.25),
    var(--shadow-boxy-dark);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
  max-height: 90vh;
  overflow: hidden;
}

.lightbox-img-wrap {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-details {
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
}

.lightbox-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #000000;
  border: 1px solid var(--teal-primary);
  color: var(--teal-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 25;
}

.lightbox-close-btn:hover {
  background: var(--teal-primary);
  color: #000000;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-box);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  border-color: var(--teal-primary);
  background: var(--teal-primary);
  color: #000000;
}

.lightbox-nav-btn.prev {
  left: 10px;
}

.lightbox-nav-btn.next {
  right: 10px;
}

/* ===================================================================
   INTERACTIVE BOOKING & WHATSAPP CONSULTATION
=================================================================== */
.booking-section {
  padding: 7rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  border-top: 1px solid var(--border-box);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.booking-info-box {
  display: flex;
  flex-direction: column;
}

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Form Container */
.booking-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--teal-border);
  padding: 2.5rem;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    6px 6px 0px rgba(0, 245, 212, 0.3);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-label i {
  color: var(--teal-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(7, 8, 11, 0.8);
  border: 1px solid var(--border-box);
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
  background: rgba(13, 16, 23, 0.95);
}

.form-select option {
  background: #0d1017;
  color: #ffffff;
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

/* ===================================================================
   CONTACT & STUDIO MAP SECTION
=================================================================== */
.contact-section {
  padding: 7rem 0;
  position: relative;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-box);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 2px solid var(--border-box);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-boxy-dark);
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--teal-primary);
  box-shadow: 4px 4px 0px var(--teal-primary);
  transform: translate(-2px, -2px);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.contact-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  word-break: break-all;
}

.contact-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px var(--teal-glow);
}

/* Social Connections Row */
.social-connections-box {
  background: var(--bg-card);
  border: 1px solid var(--border-box);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-title-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-btns-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-box);
  background: rgba(7, 8, 11, 0.8);
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn.facebook:hover {
  border-color: #1877f2;
  background: #1877f2;
  color: #ffffff;
  box-shadow: 3px 3px 0px #ffffff;
}

.social-btn.instagram:hover {
  border-color: #e1306c;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #ffffff;
  box-shadow: 3px 3px 0px #ffffff;
}

.social-btn.whatsapp:hover {
  border-color: #25d366;
  background: #25d366;
  color: #000000;
  box-shadow: 3px 3px 0px #ffffff;
}

/* ===================================================================
   FOOTER
=================================================================== */
.site-footer {
  background: #040507;
  border-top: 2px solid var(--border-box);
  padding: 5rem 0 2rem 0;
  position: relative;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--teal-primary);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--teal-primary);
  padding-left: 5px;
}

.footer-location-item {
  margin-bottom: 1.25rem;
}

.footer-location-item h5 {
  font-size: 0.9rem;
  color: var(--teal-primary);
  margin-bottom: 0.2rem;
}

.footer-location-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-credit .credit-link {
  color: var(--teal-primary);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px dashed var(--teal-border);
  padding-bottom: 1px;
}

.footer-credit .credit-link:hover {
  color: #ffffff;
  border-bottom-color: var(--teal-primary);
  text-shadow: 0 0 10px var(--teal-glow);
}

.back-to-top-btn {
  width: 40px;
  height: 40px;
  background: rgba(13, 16, 23, 0.9);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background: var(--teal-primary);
  color: #000000;
  box-shadow: 0 0 15px var(--teal-glow);
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES
=================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-wrap {
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .artists-grid {
    gap: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(7, 8, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    border-top: 1px solid var(--border-box);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .header-actions .btn {
    display: none;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }
  .artist-media-wrap {
    height: 320px;
  }
  .studios-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }
  .lightbox-img-wrap {
    min-height: 300px;
  }
  .lightbox-details {
    padding: 1.5rem;
  }
  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .studio-actions-group {
    grid-template-columns: 1fr;
  }
  .social-connections-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =================================================================
   OFFER POPUP MODAL (1:1 Aspect Ratio)
================================================================== */
.offer-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1.5rem;
}

.offer-popup-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.offer-popup-card {
  background: rgba(14, 17, 23, 0.96);
  border: 2px solid var(--teal-primary);
  box-shadow: 0 0 50px rgba(0, 245, 212, 0.3), inset 0 0 25px rgba(0, 245, 212, 0.05);
  max-width: 460px;
  width: 100%;
  position: relative;
  padding: 1.5rem;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.offer-popup-backdrop.active .offer-popup-card {
  transform: scale(1) translateY(0);
}

.offer-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  background: #07080b;
  border: 2px solid var(--teal-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.offer-popup-close:hover {
  background: var(--teal-primary);
  color: #000000;
  box-shadow: 0 0 15px var(--teal-primary);
  transform: rotate(90deg);
}

.offer-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-primary);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--teal-border);
  padding: 0.35rem 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.1rem;
}

.offer-popup-img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border-box);
  margin-bottom: 1.25rem;
  background: #000000;
  position: relative;
}

.offer-popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-popup-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.25);
  line-height: 1.3;
}

.offer-popup-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
  .offer-popup-card {
    padding: 1.25rem;
    max-width: 92vw;
  }
  .offer-popup-close {
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .offer-popup-title {
    font-size: 1.15rem;
  }
}
