/* ============================================
   ZOE Tattoo Removal Studio — Custom Styles
   Dark Luxury Theme with Gold Accents
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C9A96E;
  --gold-light: #E2C992;
  --gold-dark: #A68B4B;
  --dark: #0A0A0A;
  --dark-card: #141414;
  --dark-border: #2A2A2A;
  --dark-muted: #1A1A1A;
  --text-primary: #F5F5F5;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Base Resets ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- Gold Gradient Text ---------- */
.gold-gradient-text {
  background: linear-gradient(135deg, #C9A96E 0%, #E2C992 50%, #C9A96E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Gold Shimmer Animation ---------- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.gold-shimmer {
  background: linear-gradient(90deg, #C9A96E 0%, #E2C992 25%, #C9A96E 50%, #E2C992 75%, #C9A96E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ---------- Glow Effects ---------- */
.gold-glow {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 0 40px rgba(201, 169, 110, 0.1);
}

/* ---------- Float Animation ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ---------- Bounce Down Animation ---------- */
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.bounce-down {
  animation: bounceDown 2s ease-in-out infinite;
}

/* ---------- Fade In Up Animation ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Glass Morphism ---------- */
.glass {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

/* ---------- Section Divider ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
  opacity: 0.3;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-zoe {
  padding: 1.2rem 0;
  transition: all 0.5s ease;
  z-index: 1050;
}

.navbar-zoe.scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-zoe .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-zoe .brand-logo-img {
  height: 44px;
  width: auto;
  border-radius: 0.25rem;
  transition: transform 0.3s ease;
}

.navbar-zoe .navbar-brand:hover .brand-logo-img {
  transform: scale(1.05);
}

/* Used for in-content decorative icon badges */
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.navbar-zoe .nav-link {
  color: #9CA3AF !important;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.navbar-zoe .nav-link:hover,
.navbar-zoe .nav-link.active {
  color: var(--gold) !important;
}

.navbar-zoe .btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  border: none;
  transition: all 0.3s ease;
}

.navbar-zoe .btn-book:hover {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
  transform: scale(1.05);
  color: #000 !important;
}

.navbar-zoe .navbar-toggler {
  border: none;
  padding: 0;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.navbar-zoe .navbar-toggler:focus {
  box-shadow: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.6), #0A0A0A);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  background: rgba(201, 169, 110, 0.05);
  margin-bottom: 2rem;
}

.hero-badge span {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 5.5rem; } }
@media (min-width: 992px) { .hero-title { font-size: 6rem; } }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-stats {
  margin-top: 3rem;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

/* Decorative blobs */
.hero-blob-left {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(201, 169, 110, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-right {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: rgba(201, 169, 110, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}

.section-title {
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 992px) { .section-title { font-size: 3.5rem; } }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-img-wrapper {
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(to right, rgba(201,169,110,0.2), transparent);
  border-radius: 1rem;
  filter: blur(20px);
  z-index: 0;
}

.about-img-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6), transparent);
  border-radius: 1rem;
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 10;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 0 40px rgba(201, 169, 110, 0.1);
}

@media (max-width: 767px) {
  .about-badge {
    bottom: -16px;
    right: 16px;
  }
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: rgba(201, 169, 110, 0.2);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card .feature-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card .feature-check i {
  color: var(--gold);
  font-size: 0.9rem;
}

.service-card .feature-check span {
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 0;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom, rgba(201,169,110,0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.process-card:hover::before {
  opacity: 1;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.1);
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  transition: background 0.3s ease;
}

.process-card:hover .process-icon {
  background: rgba(201, 169, 110, 0.2);
}

/* ---------- Process Step Images ---------- */
.process-step-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.process-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-card:hover .process-step-img {
  transform: scale(1.08);
}

.process-step-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 10, 10, 0.9));
  pointer-events: none;
}

.process-step-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
  z-index: 2;
}

.process-card-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem 2rem;
}

/* ---------- Process Timeline Connector ---------- */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.process-timeline-line {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,169,110,0.1), rgba(201,169,110,0.4), rgba(201,169,110,0.1));
  position: relative;
}

.process-timeline-line::before,
.process-timeline-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,169,110,0.3);
}

.process-timeline-line::before {
  left: -5px;
}

.process-timeline-line::after {
  right: -5px;
}

@media (max-width: 767px) {
  .process-step-img-wrapper {
    height: 180px;
  }
  .process-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-img-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.results-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .results-img-wrapper img { height: 500px; }
}

.results-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A, transparent 50%, rgba(10,10,10,0.3));
}

.results-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

@media (min-width: 992px) {
  .results-stats-overlay { padding: 3rem; }
}

.results-stat-card {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 0.75rem;
  padding: 1.2rem;
  text-align: center;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.testimonial-text {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 0.95rem;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.3);
}

.testimonial-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.pricing-card.popular {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.1);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .pricing-card.popular { transform: none; }
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-card .feature-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.pricing-card .feature-check i {
  color: var(--gold);
  font-size: 0.9rem;
}

.pricing-card .feature-check span {
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--dark-border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(201, 169, 110, 0.3);
  background: var(--dark-card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
}

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

.faq-icon {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 2.5rem;
}

@media (min-width: 992px) {
  .contact-form-card { padding: 3rem; }
}

.form-control-custom {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  color: var(--text-primary);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-body);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.form-control-custom:focus {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.15);
  background: var(--dark);
  color: var(--text-primary);
}

.form-label-custom {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.3);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--dark-border);
  background: var(--dark);
}

.footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
  border: none;
}

/* ============================================
   PAGE BANNER (for inner pages)
   ============================================ */
.page-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(10,10,10,0.95));
}

.page-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-banner-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) { .page-banner-title { font-size: 4rem; } }

.page-banner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}

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

.page-banner-breadcrumb span {
  color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.3);
  transform: scale(1.05);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.9rem 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-gold-solid:hover {
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.2);
  transform: scale(1.02);
  color: #000;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.bg-dark-card { background: var(--dark-card); }
.bg-dark-muted { background: var(--dark-muted); }
.border-dark-custom { border-color: var(--dark-border) !important; }
.border-gold-subtle { border-color: rgba(201, 169, 110, 0.1) !important; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Pulse animation ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip */
.whatsapp-tooltip {
  position: fixed;
  bottom: 2.75rem;
  right: 5.5rem;
  z-index: 9998;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark-card);
}

.whatsapp-float:hover + .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-filter-btn {
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-filter-btn:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.3);
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: transparent;
  font-weight: 600;
}

.blog-filter-btn.active:hover {
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.2);
}

/* Blog card hover effects */
.blog-card article:hover {
  border-color: rgba(201, 169, 110, 0.2) !important;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.05);
}

/* ============================================
   TATTOO TYPE CARDS WITH IMAGES
   ============================================ */
.tattoo-type-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
}

.tattoo-type-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
}

.tattoo-type-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.tattoo-type-card:hover .tattoo-type-card-img img {
  transform: scale(1.08);
}

.tattoo-type-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.95));
  pointer-events: none;
}

.tattoo-type-card-icon {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 2px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tattoo-type-card:hover .tattoo-type-card-icon {
  background: rgba(201, 169, 110, 0.25);
  border-color: rgba(201, 169, 110, 0.5);
}

.tattoo-type-card-body {
  padding: 1.5rem 1.75rem 2rem;
}

.tattoo-type-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.tattoo-type-card-body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================
   TATTOOS WE PROVIDE SECTION
   ============================================ */
.provide-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
  height: 100%;
}

.provide-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
}

.provide-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.provide-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 10, 10, 0.9));
  pointer-events: none;
}

.provide-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}

.provide-card-body {
  padding: 1.25rem 1.5rem 1.75rem;
}

.provide-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.provide-card-body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.provide-card-body .provide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provide-card-body .provide-features span {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .tattoo-type-card-img {
    height: 180px;
  }
  .provide-card-img {
    height: 160px;
  }
}

/* ============================================
   BOOK AN APPOINTMENT — SERVICES DROPDOWN
   ============================================ */
.custom-services-dropdown {
  position: relative;
  width: 100%;
}

.services-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.services-dropdown-header:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.services-dropdown-header.open {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.15);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.services-dropdown-value {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.services-dropdown-value.selected {
  color: var(--text-primary);
}

.services-dropdown-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.services-dropdown-header.open .services-dropdown-arrow {
  transform: rotate(180deg);
}

.services-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #111111;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.services-dropdown-list.open {
  max-height: 420px;
  opacity: 1;
  overflow-y: auto;
}

/* Blue header bar for the dropdown */
.services-dropdown-list::before {
  content: 'Services';
  display: block;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

.services-dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-dropdown-option:last-child {
  border-bottom: none;
}

.services-dropdown-option:hover {
  background: rgba(201, 169, 110, 0.08);
}

.services-dropdown-option.selected {
  background: rgba(201, 169, 110, 0.12);
}

.services-dropdown-option i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.services-dropdown-option span {
  color: #d1d5db;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.services-dropdown-option:hover span {
  color: var(--text-primary);
}

.services-dropdown-option.selected span {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- Book Your Tattoo Button ---------- */
.btn-book-tattoo {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-book-tattoo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-book-tattoo:hover {
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.35);
  transform: translateY(-2px);
  color: #000;
}

.btn-book-tattoo:hover::before {
  opacity: 1;
}

.btn-book-tattoo i,
.btn-book-tattoo span {
  position: relative;
  z-index: 1;
}

/* ---------- Date & Time Input Styling ---------- */
.form-control-custom[type="date"],
.form-control-custom[type="time"] {
  color-scheme: dark;
}

.form-control-custom[type="date"]::-webkit-calendar-picker-indicator,
.form-control-custom[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
}

/* ---------- Shake Animation ---------- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}