/* =============================================
   GANGA TATTOOS — Dark Luxury CSS
   ============================================= */

:root {
  --black:       #080808;
  --dark:        #0d0d0d;
  --dark2:       #111111;
  --dark3:       #181818;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dark:   #8a6f2e;
  --crimson:     #8b1a1a;
  --crimson2:    #6b0f0f;
  --white:       #f5f0e8;
  --white2:      #ccc3b5;
  --border:      rgba(201,168,76,0.2);
  --glass:       rgba(201,168,76,0.05);
}

/* ── Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Cinzel', serif; color: var(--white); line-height: 1.2; }
p { color: var(--white2); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.text-gold { color: var(--gold) !important; }
.bg-dark-custom { background: var(--dark); }

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Navbar ──────────────────────────────── */
#mainNav {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(5,5,5,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
  padding: 6px 0;
}

.nav-logo-svg { transition: transform 0.3s; }
.navbar-brand:hover .nav-logo-svg { transform: rotate(15deg) scale(1.05); }

.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.brand-sub  { font-family: 'Rajdhani', sans-serif; font-size: 0.65rem; letter-spacing: 5px; color: var(--white2); text-transform: uppercase; }

.navbar-nav .nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white2) !important;
  padding: 8px 12px !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

/* Dropdown */
.dropdown-dark-custom {
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.dropdown-dark-custom .dropdown-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white2);
  padding: 9px 20px;
  transition: all 0.25s;
}
.dropdown-dark-custom .dropdown-item:hover {
  background: var(--glass);
  color: var(--gold);
  padding-left: 28px;
}

.btn-appointment {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-appointment:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* ── WhatsApp Float ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.3s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: #25d366; color: white;
  font-family: 'Rajdhani', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent; border-right: none;
  border-left-color: #25d366;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ── Hero Section ─────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 60%, #0f0a00 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-ornament {
  position: absolute;
  font-size: 35vw;
  font-family: serif;
  color: rgba(201,168,76,0.025);
  line-height: 1;
  pointer-events: none;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.hero-label::before, .hero-label::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-title .gold-stroke {
  -webkit-text-stroke: 2px var(--gold);
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white2);
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 0 30px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--white2);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex; gap: 40px;
  margin-bottom: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold); display: block;
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white2);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 32px; border: none; border-radius: 2px;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--gold);
  border-radius: 2px; transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-2px);
}

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-inner {
  width: 380px; height: 380px;
  position: relative;
}
.hero-circle-1 {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}
.hero-circle-2 {
  position: absolute; inset: 20px;
  border: 1px dashed rgba(201,168,76,0.15);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite reverse;
}
.hero-logo-big {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-corner-ornament {
  position: absolute;
  width: 50px; height: 50px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.hero-corner-ornament.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hero-corner-ornament.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hero-corner-ornament.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hero-corner-ornament.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* ── Section Styles ───────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 16px;
}
.section-ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 20px;
}
.ornament-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section-desc {
  color: var(--white2); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto;
}

/* ── Services / Designs Grid ─────────────── */
.design-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
.design-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.design-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--dark2), #1a1208);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative; overflow: hidden;
}
.design-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(201,168,76,0.08));
}
.design-card-img .design-icon { transition: transform 0.4s; }
.design-card:hover .design-icon { transform: scale(1.15) rotate(-5deg); }
.design-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.design-card:hover .design-overlay { opacity: 1; }
.design-card-body { padding: 20px; }
.design-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.design-card-desc { font-size: 0.92rem; color: var(--white2); margin: 0; }
.design-card-link {
  position: absolute; bottom: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  transition: all 0.3s;
}
.design-card-link:hover { background: var(--gold); color: var(--black); }

/* ── Why Us ───────────────────────────────── */
.why-section { background: var(--dark); }
.feature-box {
  text-align: center; padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--dark3);
  transition: all 0.3s;
  height: 100%;
}
.feature-box:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.feature-icon {
  width: 70px; height: 70px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.feature-box:hover .feature-icon {
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.feature-title {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: var(--white);
}
.feature-desc { font-size: 0.95rem; color: var(--white2); margin: 0; }

/* ── Portfolio Grid ───────────────────────── */
.portfolio-card {
  position: relative; overflow: hidden;
  border-radius: 4px;
  background: var(--dark3);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  transition: all 0.3s;
}
.portfolio-card:hover { border-color: var(--gold); }
.portfolio-card-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--dark3), #130f05);
  transition: transform 0.5s;
}
.portfolio-card:hover .portfolio-card-inner { transform: scale(1.05); }
.portfolio-hover {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9));
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-hover { opacity: 1; }
.portfolio-hover h5 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.portfolio-hover span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.filter-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent; color: var(--white2);
  border-radius: 2px; cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--glass);
}

/* ── Process Steps ────────────────────────── */
.process-step {
  text-align: center; position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 32px; left: 60%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  background: var(--black);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: var(--white2); }

/* ── Testimonials ─────────────────────────── */
.testimonials-section { background: var(--dark); }
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 32px;
  position: relative; height: 100%;
  transition: all 0.3s;
}
.testi-card:hover { border-color: var(--gold); }
.testi-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-size: 4rem; font-family: serif;
  color: var(--gold); opacity: 0.3;
  line-height: 1;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; }
.testi-text { font-style: italic; color: var(--white2); margin-bottom: 20px; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--crimson));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white);
}
.testi-name { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--white); }
.testi-loc { font-size: 0.82rem; color: var(--gold); }

/* ── Training Section ─────────────────────── */
.training-section { background: var(--black); }
.course-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: all 0.4s; height: 100%;
}
.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.course-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
}
.course-header {
  padding: 28px;
  background: linear-gradient(135deg, var(--dark2), #12100a);
  border-bottom: 1px solid var(--border);
}
.course-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.course-duration { font-size: 0.85rem; color: var(--gold); }
.course-body { padding: 24px; }
.course-price {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); margin-bottom: 4px;
}
.course-features { list-style: none; padding: 0; margin-bottom: 24px; }
.course-features li {
  font-size: 0.9rem; color: var(--white2);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
}
.course-features li i { color: var(--gold); font-size: 0.8rem; }

/* ── Location / Map ───────────────────────── */
.location-section { background: var(--dark); }
.map-frame {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.4) contrast(1.1); }
.contact-info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 36px;
  height: 100%;
}
.info-item {
  display: flex; gap: 16px;
  align-items: flex-start; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.info-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.info-value { color: var(--white); font-size: 1rem; }
.info-value a { color: var(--white); transition: color 0.2s; }
.info-value a:hover { color: var(--gold); }

/* ── Appointment CTA ──────────────────────── */
.appointment-section {
  background:
    linear-gradient(rgba(8,8,8,0.85), rgba(8,8,8,0.92)),
    repeating-linear-gradient(
      45deg,
      transparent, transparent 30px,
      rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px
    );
}
.appointment-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 60px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.appointment-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Page Hero ────────────────────────────── */
.page-hero {
  min-height: 45vh;
  padding-top: 90px;
  background:
    linear-gradient(rgba(8,8,8,0.8), rgba(8,8,8,0.9)),
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(201,168,76,0.025) 40px, rgba(201,168,76,0.025) 41px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero-title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }

/* ── Breadcrumb ───────────────────────────── */
.breadcrumb-custom { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.breadcrumb-custom a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white2);
  transition: color 0.2s;
}
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: var(--gold); font-size: 0.7rem; }
.breadcrumb-current {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}

/* ── About Page ───────────────────────────── */
.about-img-frame {
  position: relative; display: inline-block;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  bottom: -20px; left: 20px;
  border: 1px solid var(--border);
  border-radius: 4px; z-index: 0;
}
.about-img-inner {
  position: relative; z-index: 1;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 450px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  overflow: hidden;
}
.artist-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s; height: 100%;
}
.artist-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.artist-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--gold-dark), var(--crimson));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
}
.artist-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.artist-role { font-family: 'Rajdhani', sans-serif; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.artist-bio { font-size: 0.9rem; color: var(--white2); }

/* ── Form Styles ──────────────────────────── */
.form-dark .form-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.form-dark .form-control,
.form-dark .form-select {
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--dark2);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-dark .form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-dark .form-select option { background: var(--dark2); }
.alert-success-dark {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px; padding: 12px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem; letter-spacing: 1px;
}
.alert-error-dark {
  background: rgba(139,26,26,0.15);
  border: 1px solid var(--crimson);
  color: #e07070;
  border-radius: 2px; padding: 12px 20px;
}

/* ── Footer ───────────────────────────────── */
.site-footer { background: var(--dark); }
.footer-wave { line-height: 0; overflow: hidden; }
.footer-wave svg { display: block; }
.footer-main { padding: 70px 0 40px; }
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 3px;
}
.footer-brand-tag { font-family: 'Rajdhani', sans-serif; font-size: 0.7rem; letter-spacing: 2px; color: var(--white2); }
.footer-desc { color: var(--white2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white2); font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--glass); }
.footer-heading {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--white2); font-size: 0.9rem;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.25s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info { list-style: none; padding: 0; }
.footer-contact-info li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; font-size: 0.9rem; color: var(--white2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-contact-info li:last-child { border-bottom: none; }
.footer-contact-info li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: var(--white2); transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; letter-spacing: 1px;
  color: var(--white2);
}

/* ── Animations ───────────────────────────── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-anim { animation: float 4s ease-in-out infinite; }

/* ── Utilities ────────────────────────────── */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.text-crimson { color: var(--crimson) !important; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
  .hero-visual { display: none; }
  .section-pad { padding: 70px 0; }
  .hero-stats { gap: 24px; }
  .process-step::after { display: none; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; }
  .btn-gold, .btn-outline-gold { text-align: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
}




.hero-images img {
    position: absolute;
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.img1 {
    right: 50px;
    top: 120px;
}

.img2 {
    right: 200px;
    top: 250px;
}

.img3 {
    right: 100px;
    top: 400px;
}

.hero-images img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}




.design-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.design-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* overlay */
.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

/* hover effect 🔥 */
.design-card:hover img {
    transform: scale(1.1);
}

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