/* ===========================
   CREATIVE TATTOO INK - CSS
   Enhanced Version 2.0
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --white: #f5f0e8;
  --gray: #888;
  --light-bg: #f8f5f0;
  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --font-alt: 'Bebas Neue', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== FLOATING BUTTONS ===== */
.floating-call-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: all 0.3s;
  animation: floatPulse 2s infinite;
}
.floating-call-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(201,168,76,0.6);
}
.call-icon { font-size: 1.1rem; }

.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.floating-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 4px 35px rgba(201,168,76,0.7); }
}

/* ===== FLOATING SOCIAL STACK (Instagram / Facebook / YouTube) ===== */
.floating-social-stack {
  position: fixed;
  bottom: 12.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.floating-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: all 0.3s;
}
.floating-social-btn:hover { transform: scale(1.1); }
.floating-insta { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.floating-fb { background: #1877F2; }
.floating-yt { background: #FF0000; }

/* ===== FLOATING BOOK NOW BUTTON ===== */
.floating-booknow-btn {
  position: fixed;
  bottom: 8.7rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--black);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: all 0.3s;
}
.floating-booknow-btn:hover { background: var(--gold); color: var(--black); transform: scale(1.05); }

/* ===== BOOK NOW POPUP MODAL ===== */
.book-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.book-modal-overlay.open { display: flex; }
.book-modal {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: bookModalIn 0.3s ease;
}
@keyframes bookModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.book-modal-close {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
}
.book-modal h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; margin-bottom: 0.4rem; }
.book-modal-sub { color: rgba(245,240,232,0.6); font-size: 0.85rem; margin-bottom: 1.3rem; }
.book-modal-form { display: flex; flex-direction: column; gap: 0.8rem; }
.book-modal-form input,
.book-modal-form select,
.book-modal-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 6px;
}
.book-modal-form input:focus,
.book-modal-form select:focus,
.book-modal-form textarea:focus { outline: none; border-color: var(--gold); }
.book-modal-alt {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  justify-content: center;
}
.book-modal-alt a {
  color: var(--gold);
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: all 0.3s;
}
.book-modal-alt a:hover { background: var(--gold); color: var(--black); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.navbar.scrolled { padding: 0.6rem 2.5rem; background: rgba(10,10,10,0.98); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0.3rem 0;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.75) 50%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.4);
  display: inline-block;
  padding: 0.4rem 1.5rem;
}
.hero-title {
  font-family: var(--font-alt);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; color: var(--gold); font-size: 1.2em; }
.hero-title .line3 { display: block; color: var(--white); }

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(245,240,232,0.5);
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-primary.small-btn { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,240,232,0.5);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent;
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-light:hover { background: var(--gold); color: var(--black); }

.btn-dark {
  background: var(--black);
  color: var(--gold);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
}
.btn-dark:hover { background: rgba(0,0,0,0.8); transform: translateY(-2px); }

.full-width { width: 100%; text-align: center; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-alt); font-size: 3rem; color: var(--black); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,10,10,0.7); }
.stat-divider { width: 1px; height: 50px; background: rgba(10,10,10,0.2); }

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2a1f00 50%, #1a1200 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 3rem 6%;
}
.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.guarantee-icon { font-size: 3.5rem; flex-shrink: 0; }
.guarantee-text { flex: 1; min-width: 200px; }
.guarantee-text h2 {
  font-family: var(--font-alt);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.guarantee-text p {
  color: rgba(245,240,232,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== SECTIONS COMMON ===== */
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { color: rgba(245,240,232,0.6); font-size: 1rem; margin-bottom: 2rem; }
.section-header.center { text-align: center; }

/* ===== ABOUT ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 7rem 6%;
  background: var(--dark);
  align-items: center;
}
.about-text p { color: rgba(245,240,232,0.75); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-features { list-style: none; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.about-features li { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; }
.about-images { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 400px; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 270px; overflow: hidden; border: 4px solid var(--gold); }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ===== MONTHLY OFFERS ===== */
.offers-section {
  padding: 7rem 6%;
  background: var(--dark2);
}
.offers-section .section-header { margin-bottom: 2rem; }
.offer-highlight-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--font-alt);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 3rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.offer-card {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  transition: all 0.3s;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(201,168,76,0.15); }
.offer-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #e53935;
  color: white;
  font-family: var(--font-alt);
  font-size: 1.3rem;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
}
.offer-info { padding: 1.5rem; }
.offer-info h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.offer-info p { color: rgba(245,240,232,0.65); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* ===== SERVICES ===== */
.services-section { padding: 7rem 6%; background: var(--black); }
.services-section .section-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0 0 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-img { width: 100%; height: 180px; overflow: hidden; margin-bottom: 1.2rem; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card .service-icon,
.service-card h3,
.service-card p { padding-left: 2rem; padding-right: 2rem; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.4); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 0.8rem; }
.service-card p { color: rgba(245,240,232,0.6); font-size: 0.85rem; line-height: 1.7; }

/* ===== PORTFOLIO ===== */
.portfolio-section { padding: 7rem 6%; background: var(--dark); }
.portfolio-section .section-header { margin-bottom: 3rem; }
.portfolio-filters { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  background: transparent;
  color: rgba(245,240,232,0.6);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-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: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ===== ARTIST ===== */
.artist-section { padding: 7rem 6%; background: var(--black); }
.artist-section .section-header { margin-bottom: 4rem; }
.artist-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.artist-photo-wrap { position: relative; }
.artist-photo { width: 100%; height: 500px; object-fit: cover; object-position: center top; }
.artist-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--gold); color: var(--black); padding: 1rem 1.5rem; text-align: center; }
.artist-badge span { font-family: var(--font-alt); font-size: 2rem; display: block; line-height: 1; }
.artist-badge small { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.artist-bio h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); margin-bottom: 1rem; }
.artist-bio p { color: rgba(245,240,232,0.75); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
/* ===== BUSINESS DETAILS BLOCK ===== */
.biz-details-block {
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 3px solid var(--gold);
  overflow: hidden;
}

.biz-header {
  background: linear-gradient(90deg, rgba(201,168,76,0.12) 0%, transparent 100%);
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.biz-registered-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.biz-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.biz-type {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.biz-grid {
  padding: 0.5rem 0;
}

.biz-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.biz-row:last-child { border-bottom: none; }
.biz-row:hover { background: rgba(201,168,76,0.05); }

.biz-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.biz-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.biz-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.biz-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.biz-val:hover { color: var(--gold); }
.biz-val-sm { font-size: 0.82rem; }
.biz-open { color: #4caf50; font-weight: 700; }

.biz-quick-actions {
  display: flex;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.biz-action-btn {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.biz-action-btn:last-child { border-right: none; }
.biz-call  { color: var(--gold); background: rgba(201,168,76,0.07); }
.biz-wa    { color: #25D366; background: rgba(37,211,102,0.07); }
.biz-email { color: var(--white); background: rgba(255,255,255,0.04); }
.biz-call:hover  { background: var(--gold); color: var(--black); }
.biz-wa:hover    { background: #25D366; color: white; }
.biz-email:hover { background: rgba(255,255,255,0.1); }

.artist-specialties { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.artist-specialties span { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; }
.insta-btn { display: inline-block; }

.artist-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.5rem 0; }
.artist-info-card { display: flex; align-items: flex-start; gap: 0.8rem; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); border-left: 3px solid var(--gold); padding: 0.9rem 1rem; transition: all 0.3s; }
.artist-info-card:hover { background: rgba(201,168,76,0.12); border-left-color: var(--gold-light); }
.aic-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.aic-text { display: flex; flex-direction: column; gap: 2px; }
.aic-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.aic-value { font-size: 0.85rem; font-weight: 700; color: var(--white); text-decoration: none; display: block; transition: color 0.3s; }
.aic-value:hover { color: var(--gold); }
.aic-value.small { font-size: 0.75rem; word-break: break-all; }
.aic-sub { font-size: 0.72rem; color: rgba(245,240,232,0.5); }
.open-badge { color: #4caf50 !important; }

/* ===== WHY US ===== */
.why-section { padding: 7rem 6%; background: var(--dark2); }
.why-section .section-header { margin-bottom: 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.why-card { text-align: center; padding: 2.5rem 1.5rem; border: 1px solid rgba(201,168,76,0.15); transition: all 0.3s; }
.why-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.why-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); margin-bottom: 0.8rem; }
.why-card p { color: rgba(245,240,232,0.65); font-size: 0.85rem; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 7rem 6%; background: var(--dark); }
.reviews-section .section-header { margin-bottom: 3rem; }
.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.review-stat { text-align: center; }
.review-num { font-family: var(--font-alt); font-size: 3.5rem; color: var(--gold); display: block; line-height: 1; }
.review-stars { color: var(--gold); font-size: 1.2rem; display: block; margin: 0.3rem 0; }
.review-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.6); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  transition: all 0.3s;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.review-stars-small { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.review-card p { color: rgba(245,240,232,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer strong { display: block; font-size: 0.9rem; color: var(--white); }
.reviewer small { font-size: 0.75rem; color: var(--gold); }

/* ===== APPOINTMENT ===== */
.appointment-section { padding: 7rem 6%; background: var(--black); }
.appointment-section .section-header { margin-bottom: 4rem; }
.appointment-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.appt-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--dark2); border-left: 3px solid var(--gold); padding: 1.2rem 1.5rem; margin-bottom: 1rem; transition: all 0.3s; }
.appt-card:hover { background: rgba(201,168,76,0.07); }
.appt-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }
.appt-card h4 { font-family: var(--font-display); color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.appt-card p { color: rgba(245,240,232,0.7); font-size: 0.85rem; line-height: 1.6; }
.appt-card a { color: var(--gold); text-decoration: none; }
.appt-btns { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* ===== AFTERCARE ===== */
.aftercare-section { padding: 7rem 6%; background: var(--dark); }
.aftercare-section .section-header { margin-bottom: 4rem; }
.aftercare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.aftercare-card { background: var(--dark2); padding: 2rem; border: 1px solid rgba(201,168,76,0.15); transition: all 0.3s; position: relative; overflow: hidden; }
.aftercare-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.aftercare-step { font-family: var(--font-alt); font-size: 3rem; color: rgba(201,168,76,0.15); position: absolute; top: 0.5rem; right: 1rem; line-height: 1; }
.aftercare-card h3 { font-family: var(--font-display); color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.aftercare-card p { color: rgba(245,240,232,0.65); font-size: 0.87rem; line-height: 1.7; }

/* ===== PRICES ===== */
.prices-section { padding: 7rem 6%; background: var(--black); }
.prices-section .section-header { margin-bottom: 4rem; }
.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.price-card { background: var(--dark2); border: 1px solid rgba(201,168,76,0.2); padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; position: relative; }
.price-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.price-card.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, var(--dark2) 100%); }
.price-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }
.price-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.price-card h3 { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; margin-bottom: 0.8rem; }
.price-range { font-family: var(--font-alt); font-size: 2rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 1.5rem; }
.price-card ul { list-style: none; margin-bottom: 2rem; }
.price-card ul li { color: rgba(245,240,232,0.65); font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(245,240,232,0.07); }
.prices-note { text-align: center; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); padding: 1.2rem 2rem; }
.prices-note p { color: rgba(245,240,232,0.7); font-size: 0.9rem; line-height: 1.6; }
.prices-note a { color: var(--gold); text-decoration: none; font-weight: 700; }
.prices-note strong { color: var(--gold); }

/* ===== LEARN ===== */
.learn-section { padding: 7rem 6%; background: var(--dark2); }
.learn-section .section-header { margin-bottom: 4rem; }
.learn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.learn-card { background: var(--dark); border: 1px solid rgba(201,168,76,0.12); padding: 2rem; transition: all 0.3s; }
.learn-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.learn-num { font-family: var(--font-alt); font-size: 3rem; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 0.5rem; }
.learn-card h3 { font-family: var(--font-display); color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.learn-card p { color: rgba(245,240,232,0.65); font-size: 0.87rem; line-height: 1.7; }

/* ===== CAREERS ===== */
.careers-section { padding: 7rem 6%; background: var(--dark); }
.careers-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.careers-text p { color: rgba(245,240,232,0.75); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.careers-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.career-item { display: flex; align-items: flex-start; gap: 1rem; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); padding: 1rem 1.2rem; transition: all 0.3s; }
.career-item:hover { background: rgba(201,168,76,0.12); }
.career-icon { font-size: 1.5rem; flex-shrink: 0; }
.career-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.career-item span { color: rgba(245,240,232,0.55); font-size: 0.8rem; }
.careers-img { overflow: hidden; }
.careers-img img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.6s; }
.careers-img:hover img { transform: scale(1.04); }

/* ===== FAQ ===== */
.faq-section { padding: 7rem 6%; background: var(--black); }
.faq-section .section-header { margin-bottom: 4rem; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.2); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  padding: 1.5rem 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.5rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 1.5rem; color: rgba(245,240,232,0.7); font-size: 0.9rem; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-section { padding: 7rem 6%; background: var(--dark2); }
.contact-section .section-header { margin-bottom: 4rem; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-bottom: 5rem; }
.contact-card { background: var(--dark); border-left: 3px solid var(--gold); padding: 1.5rem; margin-bottom: 1rem; }
.contact-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card h4 { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-card p, .contact-card a { color: rgba(245,240,232,0.75); font-size: 0.9rem; text-decoration: none; line-height: 1.6; }
.contact-card a:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.social-btn { padding: 0.7rem 1.2rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; text-decoration: none; transition: all 0.3s; flex: 1; text-align: center; }
.social-btn.insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-btn.fb { background: #1877F2; color: white; }
.social-btn.yt { background: #FF0000; color: white; }
.social-btn.call { background: var(--gold); color: var(--black); }
.social-btn.whatsapp { background: #25D366; color: white; }

.contact-form-wrap { background: var(--dark); padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.9rem 1rem; margin-bottom: 1rem; outline: none; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form select option { background: var(--dark); }
.form-note { font-size: 0.75rem; color: rgba(245,240,232,0.5); text-align: center; margin-top: 1rem; }

/* ===== APPOINTMENT FORM ===== */
.appointment-form-wrap { background: var(--dark2); padding: 2.5rem; }
.appointment-form-wrap .contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; }

/* MAP */
.map-section { margin-top: 2rem; }
.map-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); text-align: center; margin-bottom: 1.5rem; }
.map-container { overflow: hidden; border: 1px solid rgba(201,168,76,0.3); margin-bottom: 2rem; }
.map-cta { text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #050505; border-top: 1px solid rgba(201,168,76,0.2); padding: 5rem 6% 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; margin-bottom: 1rem; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(245,240,232,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--gold); text-decoration: none; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); padding: 0.4rem 0.8rem; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: var(--black); }
.footer-links h4, .footer-styles h4, .footer-contact h4 { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-links ul, .footer-styles ul { list-style: none; }
.footer-links li, .footer-styles li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(245,240,232,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-styles li { color: rgba(245,240,232,0.6); font-size: 0.85rem; }
.footer-contact p { color: rgba(245,240,232,0.6); font-size: 0.83rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(245,240,232,0.6); text-decoration: none; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-guarantee { margin-top: 1rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); padding: 0.6rem 1rem; }
.footer-guarantee span { color: var(--gold); font-size: 0.8rem; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(245,240,232,0.4); font-size: 0.8rem; letter-spacing: 0.5px; }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; transition: color 0.3s; }
.lightbox-close:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 350px; }
  .artist-content { grid-template-columns: 1fr; }
  .careers-inner { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .appointment-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .nav-links a.nav-active {
    background: var(--gold);
    color: var(--black) !important;
    font-weight: 700;
  }
  .nav-links .nav-cta { margin: 1rem 1.5rem; text-align: center; border-radius: 0; }

  .navbar { padding: 1rem 1.5rem; }

  .stats-bar { padding: 1.5rem; gap: 1rem; }
  .stat-divider { display: none; }

  .about-section, .services-section, .portfolio-section,
  .contact-section, .faq-section, .artist-section,
  .why-section, .offers-section, .reviews-section,
  .appointment-section, .aftercare-section, .prices-section,
  .learn-section, .careers-section { padding: 4rem 5%; }

  .footer { padding: 3rem 5% 2rem; }

  .artist-info-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-secondary { width: 60%; height: 200px; }
  .hero-title { font-size: clamp(3rem, 15vw, 6rem); }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .floating-call-btn { bottom: 5rem; right: 1rem; }
  .floating-whatsapp-btn { bottom: 1rem; right: 1rem; }
  .floating-booknow-btn { bottom: 9rem; right: 1rem; padding: 0.6rem 0.9rem; font-size: 0.75rem; }
  .floating-social-stack { bottom: 1rem; right: auto; left: 1rem; flex-direction: row; }
  .floating-social-btn { width: 44px; height: 44px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 0.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
  .reviews-stats { gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
