/* Synthwave-specific flourishes. Tailwind handles layout. */

.sw-neon-title {
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 46, 157, 0.8),
    0 0 30px rgba(255, 46, 157, 0.6),
    0 0 60px rgba(180, 0, 255, 0.4),
    0 0 100px rgba(180, 0, 255, 0.3);
  letter-spacing: 0.02em;
}
.sw-neon-bobi {
  text-shadow:
    0 0 10px rgba(180, 0, 255, 0.85),
    0 0 30px rgba(180, 0, 255, 0.65),
    0 0 60px rgba(180, 0, 255, 0.5),
    0 0 110px rgba(180, 0, 255, 0.35);
}

.sw-neon-section {
  background: linear-gradient(180deg, #ffffff 0%, #ff2e9d 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 46, 157, 0.35));
}

.sw-caret {
  color: #ff2e9d;
  animation: sw-blink 1s steps(2) infinite;
  margin-left: 0.15em;
}
@keyframes sw-blink { 50% { opacity: 0; } }

/* retro grid */
.sw-grid {
  background-image:
    linear-gradient(to right, rgba(255, 46, 157, 0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 46, 157, 0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
}

/* buttons */
.sw-btn-primary {
  background: linear-gradient(135deg, #c734ff, #7a00cc);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(180, 0, 255, 0.45), 0 10px 40px rgba(180, 0, 255, 0.45);
  transition: transform .15s ease, box-shadow .2s ease;
}
.sw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(180, 0, 255, 0.95), 0 14px 50px rgba(180, 0, 255, 0.6);
}
.sw-btn-ghost {
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.5);
  transition: all .2s ease;
}
.sw-btn-ghost:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

/* service cards */
.sw-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 6, 40, 0.8), rgba(10, 4, 23, 0.9));
  border: 1px solid rgba(255, 46, 157, 0.25);
  border-radius: 14px;
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.sw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}
.sw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 46, 157, 0.15), transparent 60%);
  pointer-events: none;
}
.sw-card .sw-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,46,157,0.2), rgba(180,0,255,0.2));
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  margin-bottom: 18px;
}
.sw-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sw-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.98rem;
  line-height: 1.55;
}
.sw-card .sw-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff2e9d, #b400ff);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 46, 157, 0.6);
}

/* gallery */
.sw-filter {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all .2s ease;
}
.sw-filter:hover { border-color: #00f0ff; color: #00f0ff; }
.sw-filter.active {
  background: linear-gradient(135deg, #ff2e9d, #b400ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 46, 157, 0.5);
}

.sw-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 46, 157, 0.2);
  cursor: pointer;
  transition: all .25s ease;
}
.sw-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.sw-tile:hover { border-color: #00f0ff; box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); }
.sw-tile:hover img { transform: scale(1.08); }
.sw-tile .sw-tile-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(6, 2, 15, 0.95));
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00f0ff;
}
.sw-tile .sw-tile-desc {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

/* contact rows */
.sw-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 46, 157, 0.25);
  border-radius: 10px;
  background: rgba(10, 4, 23, 0.5);
  transition: border-color .2s;
}
.sw-contact-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff2e9d;
}
.sw-contact-val {
  font-size: 1.05rem;
  color: #fff;
}
.sw-social {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #00f0ff;
  transition: all .2s;
}
.sw-social:hover {
  background: #00f0ff; color: #0a0417; box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

/* genre pills */
.sw-pill {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: rgba(255,255,255,0.85);
  background: rgba(10,4,23,0.4);
  transition: all .2s;
}
.sw-pill:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}
.sw-pill-emph {
  background: linear-gradient(135deg, rgba(255,46,157,0.25), rgba(180,0,255,0.25));
  border-color: rgba(255, 46, 157, 0.6);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 46, 157, 0.2);
}
.sw-pill-emph:hover {
  border-color: #ff2e9d;
  color: #ff2e9d;
  box-shadow: 0 0 25px rgba(255, 46, 157, 0.5);
}

/* process steps */
.sw-step {
  position: relative;
  padding: 26px 22px 24px;
  background: linear-gradient(180deg, rgba(20, 6, 40, 0.8), rgba(10, 4, 23, 0.9));
  border: 1px solid rgba(180, 0, 255, 0.25);
  border-radius: 14px;
  overflow: hidden;
  transition: all .2s;
}
.sw-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 40px rgba(180, 0, 255, 0.2);
}
.sw-step .sw-step-num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(180deg, #ff2e9d, #b400ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.sw-step h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sw-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* testimonials */
.sw-testimonial {
  padding: 28px;
  background: linear-gradient(180deg, rgba(20, 6, 40, 0.6), rgba(10, 4, 23, 0.8));
  border: 1px solid rgba(255, 46, 157, 0.25);
  border-radius: 14px;
  position: relative;
}
.sw-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 10px; left: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 240, 255, 0.3);
}
.sw-testimonial blockquote {
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  padding-top: 26px;
}
.sw-testimonial figcaption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 46, 157, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.sw-testimonial .sw-t-author {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff2e9d;
}
.sw-testimonial .sw-t-meta {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.8);
}

/* contact CTA card */
.sw-cta-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(180, 0, 255, 0.15), rgba(10, 4, 23, 0.9));
  border: 1px solid rgba(255, 46, 157, 0.5);
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(180, 0, 255, 0.2);
}

/* hero photo — push colors toward synthwave palette, soften details */
.sw-hero-photo {
  filter: saturate(1.25) contrast(1.05) hue-rotate(-6deg);
  opacity: 0.78;
}

#lightbox.open { display: flex; }
