:root {
    --obsidian: #0a0a0a;
    --charcoal: #121212;
    --pink-accent: #ff0080;
    --purple-accent: #7928ca;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--obsidian);
    color: #f8fafc;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}

.bg-obsidian { background-color: var(--obsidian); }
.bg-charcoal { background-color: var(--charcoal); }

.text-gradient{
background: linear-gradient(135deg, var(--pink-accent), var(--purple-accent));
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
display: inline-block;
}

.section-reveal, .stat-reveal, .step-card {
    transform: translateY(40px);
}

.service-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 0, 128, 0.3);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 30px 60px -20px rgba(121, 40, 202, 0.15);
}

/* Luxury Placeholders */
.gallery-item-placeholder {
    transition: all 0.8s ease;
    cursor: crosshair;
}

.gallery-item-placeholder:hover {
    border-color: var(--pink-accent);
    background: rgba(255, 0, 128, 0.03);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 20px;
    border: 2px solid var(--obsidian);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pink-accent);
}

/* Selection Highlight */
::selection {
    background: var(--pink-accent);
    color: white;
}

/* Glass Elements */
.glass-nav {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Smooth Image Entrances */
img {
    opacity: 0.9;
    filter: brightness(0.8);
}

input, select, textarea {
    font-family: 'Montserrat', sans-serif;
    color: white;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-bg{
  background-image: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.7)
    ),
    url("images/hero.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {

  .text-gradient::before,
  .text-gradient::after {
    display: none;
  }

}

.text-gradient{
background: linear-gradient(90deg,#ec4899,#9333ea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
display:inline-block;
}