/* ══════════════════════════════════════════
   UNITED PRODUCTION – MAIN STYLESHEET
   ══════════════════════════════════════════ */

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

:root {
  --gold: #f5a623;
  --gold-light: #ffd166;
  --purple: #7b2ff7;
  --purple-dark: #5a1abf;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1a1a26;
  --dark-4: #22222f;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --gradient: linear-gradient(135deg, var(--gold), var(--purple));
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; text-align: center; max-width: 600px; margin: 0 auto 60px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,47,247,0.5); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--glass-border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(245,166,35,0.08); }

.btn-outline-light {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-nav {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); }

/* ══════════════
   NAVBAR
   ══════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-up {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-pro {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════
   HERO
   ══════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123,47,247,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.15) 0%, transparent 50%),
              var(--dark);
}
.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatLight 8s ease-in-out infinite;
}
.l1 { width: 400px; height: 400px; background: var(--purple); top: -100px; left: -100px; animation-delay: 0s; }
.l2 { width: 300px; height: 300px; background: var(--gold); bottom: -50px; right: 10%; animation-delay: 3s; }
.l3 { width: 250px; height: 250px; background: #ff4da6; top: 40%; right: -50px; animation-delay: 5s; }

@keyframes floatLight {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

.particles { position: absolute; inset: 0; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 70px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}
.stat { display: flex; flex-direction: column; }
.num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 1.5s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { opacity: 1; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); } }

/* ══════════════
   TICKER
   ══════════════ */
.ticker-wrap {
  background: var(--gradient);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickerAnim 25s linear infinite;
}
.ticker-track span { font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; color: #fff; }
@keyframes tickerAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════
   ABOUT
   ══════════════ */
.about { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  height: 480px;
  background: var(--dark-3);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  filter: blur(40px);
}
.about-card {
  position: absolute;
  background: var(--dark-4);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  animation: floatCard 4s ease-in-out infinite;
}
.card1 { top: 40px; left: -40px; animation-delay: 0s; }
.card2 { top: 50%; right: -40px; transform: translateY(-50%); animation: floatCard2 4s ease-in-out infinite 1.5s; }
.card3 { bottom: 40px; left: -20px; animation-delay: 3s; }
.icon-big { font-size: 1.6rem; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

.about-desc { color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 32px; }
.pill {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.pill:hover { background: rgba(123,47,247,0.15); border-color: var(--purple); }

/* ══════════════
   SERVICES
   ══════════════ */
.services { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(123,47,247,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(123,47,247,0.5);
  background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(245,166,35,0.05));
}
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; height: 4.6rem; overflow: hidden; }
.service-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card ul li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before { content: '→'; color: var(--gold); font-weight: 700; }
.service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}
.service-link {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  transition: letter-spacing 0.2s;
}
.service-link:hover { letter-spacing: 1px; }
.service-link-more {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.service-link-more:hover { color: var(--purple); }

/* ══════════════
   PORTFOLIO
   ══════════════ */
.portfolio { background: var(--dark-2); }
.portfolio-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.port-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.port-inner {
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.port-item:hover .port-inner { transform: scale(1.04); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-overlay h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.port-overlay p { font-size: 0.82rem; color: var(--gold); }

/* Portfolio placeholder BGs */
.port-w1 { background: linear-gradient(135deg, #2d1b69, #8b5cf6); }
.port-c1 { background: linear-gradient(135deg, #7f1d1d, #f97316); }
.port-co1 { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }
.port-p1 { background: linear-gradient(135deg, #064e3b, #10b981); }
.port-c2 { background: linear-gradient(135deg, #1e1b4b, #4f46e5); }
.port-w2 { background: linear-gradient(135deg, #7c2d12, #f59e0b); }

/* Suppress emoji icon when a real photo is used */
.port-img::before { content: none !important; }

/* Add icons to portfolio cards */
.port-w1::before { content: '💍'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }
.port-c1::before { content: '🎸'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }
.port-co1::before { content: '🏆'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }
.port-p1::before { content: '🎉'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }
.port-c2::before { content: '🎤'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }
.port-w2::before { content: '🎊'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6; }

/* ══════════════
   TEAM / ARTISTS
   ══════════════ */
.team { background: var(--dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(123,47,247,0.4); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
}
.avatar1 { background: linear-gradient(135deg, #7b2ff7, #f5a623); }
.avatar2 { background: linear-gradient(135deg, #f5a623, #ff4da6); }
.avatar3 { background: linear-gradient(135deg, #06b6d4, #7b2ff7); }
.avatar4 { background: linear-gradient(135deg, #10b981, #f5a623); }
.team-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.team-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.team-genres { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-genres span {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ══════════════
   PROCESS
   ══════════════ */
.process { background: var(--dark-2); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--purple));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ══════════════
   TESTIMONIALS
   ══════════════ */
.testimonials { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card.featured-testi {
  background: linear-gradient(135deg, rgba(123,47,247,0.2), rgba(245,166,35,0.08));
  border-color: rgba(123,47,247,0.4);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════
   CTA BAND
   ══════════════ */
.cta-band {
  padding: 100px 24px;
  background: var(--dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-lights { position: absolute; inset: 0; pointer-events: none; }
.cta-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cl1 { width: 400px; height: 400px; background: var(--purple); top: -100px; left: -100px; }
.cl2 { width: 300px; height: 300px; background: var(--gold); bottom: -80px; right: -80px; }
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.cta-band p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════
   CONTACT
   ══════════════ */
.contact { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-desc { color: var(--text-muted); line-height: 1.8; margin: 16px 0 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
  width: 48px; height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--text); font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  padding: 9px 20px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: #2e2e45; border-color: rgba(255,255,255,0.3); color: #fff; }
.social-btn.whatsapp:hover  { background: #1a3328; border-color: rgba(37,211,102,0.5);   color: #25d366; }
.social-btn.youtube:hover   { background: #0a0000; border-color: rgba(255,0,0,0.5);       color: #ff5555; }
.social-btn.facebook:hover  { background: #000a1a; border-color: rgba(24,119,242,0.5);    color: #5599ff; }
.social-btn.instagram:hover { background: #0a0008; border-color: rgba(225,48,108,0.5);    color: #ff77aa; }

.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 44px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input[type="date"] {
  -webkit-appearance: auto;
  appearance: auto;
  color-scheme: dark;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 2px;
  opacity: 0.8;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple);
}
.form-group input.valid   { border-color: #10b981; }
.form-group input.invalid { border-color: #ef4444; }
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 6px;
  min-height: 18px;
}
.form-group select option { background: var(--dark-4); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 14px; }
.contact-method-group { display: flex; gap: 12px; flex-wrap: wrap; }
.cm-option { display: flex; align-items: center; gap: 0; cursor: pointer; }
.cm-option input[type="radio"] { display: none; }
.cm-option span {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--glass-border);
  background: var(--dark-4);
  color: #b0b0cc;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.cm-option input[type="radio"]:checked + span {
  border-color: var(--purple);
  background: #5b21b6;
  color: #fff;
}

.form-success { text-align: center; padding: 40px 0; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); margin-bottom: 28px; }

/* ══════════════
   FOOTER
   ══════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin: 20px 0; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-links h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-badge {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ══════════════
   WHATSAPP FAB
   ══════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ══════════════
   ANIMATIONS
   ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════
   MOBILE MENU
   ══════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--glass-border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; color: var(--text); }
}

/* ══════════════
   RESPONSIVE
   ══════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--gold), var(--purple)); margin: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-img-wrap { height: 300px; }
  .card1, .card2, .card3 { font-size: 0.8rem; padding: 14px 18px; }
  .card1 { left: 0; }
  .card2 { right: 0; }
  .card3 { left: 0; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
}

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGES
   ══════════════════════════════════════════ */

/* Hero */
.sp-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 120px 24px 70px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sp-hero-bg .light { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.sp-hero-bg .sl1 { width: 500px; height: 500px; background: var(--purple); top: -150px; left: -100px; }
.sp-hero-bg .sl2 { width: 400px; height: 400px; background: var(--gold); bottom: -150px; right: -80px; }
.sp-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.sp-breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.sp-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.sp-breadcrumb a:hover { color: var(--gold); }
.sp-breadcrumb span { margin: 0 8px; }
.sp-hero-icon { font-size: 3.5rem; margin-bottom: 18px; display: block; }
.sp-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.sp-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; line-height: 1.8; margin-bottom: 32px; }
.sp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.sp-hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.sp-hero-actions .btn-outline:hover { border-color: var(--gold); background: rgba(245,166,35,0.1); }

/* Overview */
.sp-overview { padding: 90px 0; }
.sp-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.sp-overview h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.sp-overview p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.sp-highlights { background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px; }
.sp-highlights h3 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 20px; }
.sp-highlights ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sp-highlights ul li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.92rem; }
.sp-highlights ul li::before { content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* Gallery */
.sp-gallery { padding: 80px 0; background: var(--dark-2); }
.sp-gallery h2 { font-size: 2rem; font-weight: 700; margin-bottom: 10px; text-align: center; }
.sp-gallery .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--dark-4); border: 1px dashed var(--glass-border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); font-size: 0.85rem; cursor: pointer; transition: border-color 0.2s; }
.gallery-item:hover { border-color: var(--purple); }
.gallery-item img,
.gallery-item video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; cursor: zoom-in; }
.gallery-play-btn {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background 0.2s;
  pointer-events: none;
}
.gallery-item:hover .gallery-play-btn { background: rgba(0,0,0,0.38); }
.gallery-play-btn::after {
  content: '▶';
  font-size: 1.4rem;
  color: #fff;
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.62);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}
.lb-video {
  display: none;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  background: #000;
}
.lb-content.is-video .lb-img  { display: none; }
.lb-content.is-video .lb-video { display: block; }
.gallery-item .ph-icon { font-size: 2rem; opacity: 0.4; }
.gallery-item .ph-text { opacity: 0.5; font-size: 0.78rem; }

/* Why Us */
.sp-why { padding: 90px 0; }
.sp-why h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.sp-why .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.why-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.why-card .why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Service Reviews */
.sp-reviews { padding: 90px 0; background: var(--dark-2); }
.sp-reviews h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.sp-reviews .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 52px; }

/* Customer Interviews */
.sp-interviews { padding: 90px 0; }
.sp-interviews h2 { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.sp-interviews .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 52px; }
.interviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.interview-card { background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; }
.interview-photo { aspect-ratio: 16/9; background: var(--dark-4); border-bottom: 1px dashed var(--glass-border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); position: relative; overflow: hidden; }
.interview-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.interview-photo video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; background: #000; }
.interview-photo video.is-playing { object-fit: contain; }
.interview-photo .ph-icon { font-size: 2.5rem; opacity: 0.35; }
.interview-photo .ph-text { font-size: 0.78rem; opacity: 0.45; }
.interview-body { padding: 28px; }
.interview-body .quote { font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.interview-body .quote::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.interview-meta { display: flex; align-items: center; gap: 14px; }
.interview-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.interview-meta strong { display: block; font-size: 0.92rem; }
.interview-meta span { font-size: 0.8rem; color: var(--text-muted); }
.interview-tag { display: inline-block; margin-top: 16px; font-size: 0.75rem; color: var(--gold); background: rgba(245,166,35,0.1); padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(245,166,35,0.2); }

/* Service page responsive */
@media (max-width: 1024px) {
  .sp-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-wide { grid-column: span 1; }
  .gallery-grid .g-tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .sp-hero { padding: 110px 24px 60px; min-height: auto; }
  .interviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}
.lb-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  transform: scale(0.82) translateY(24px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
}
.lightbox.lb-open .lb-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.lb-img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  object-fit: contain;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(3px); }
.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   BLOG PAGES
   ══════════════════════════════════════════ */

/* Blog listing page */
.blog-hero { padding: 130px 24px 70px; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.blog-hero-bg { position: absolute; inset: 0; z-index: 0; }
.blog-hero-bg .light { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3; }
.blog-hero-bg .bl1 { width: 500px; height: 500px; background: var(--purple); top: -200px; left: -100px; }
.blog-hero-bg .bl2 { width: 400px; height: 400px; background: var(--gold); bottom: -200px; right: -100px; }
.blog-hero-content { position: relative; z-index: 1; }
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 16px; }
.blog-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.8; }

.blog-grid-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(123,47,247,0.4); }
.blog-card-thumb { aspect-ratio: 16/9; background: var(--dark-4); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--text-muted); border-bottom: 1px solid var(--glass-border); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-card-thumb .ph-icon { font-size: 2rem; opacity: 0.35; }
.blog-card-thumb .ph-text { font-size: 0.75rem; opacity: 0.4; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); background: rgba(245,166,35,0.1); padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(245,166,35,0.2); }
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-read-time { font-size: 0.78rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { text-decoration: none; color: var(--text); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card .blog-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--purple); text-decoration: none; transition: letter-spacing 0.2s; margin-top: auto; }
.blog-read-more:hover { letter-spacing: 0.5px; color: var(--gold); }

/* Individual blog post */
.post-hero { padding: 120px 24px 60px; background: var(--dark); }
.post-hero-inner { max-width: 820px; margin: 0 auto; }
.post-breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.post-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb span { margin: 0 8px; }
.post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.post-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.post-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.82rem; padding-bottom: 24px; border-bottom: 1px solid var(--glass-border); }
.post-info .pi-author { display: flex; align-items: center; gap: 8px; }
.post-info .pi-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; }

.post-body { max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.post-featured-img { aspect-ratio: 16/7; background: var(--dark-4); border-radius: var(--radius); margin-bottom: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); position: relative; overflow: hidden; border: 1px dashed var(--glass-border); }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border-radius: var(--radius); }
.post-featured-img .ph-icon { font-size: 2.5rem; opacity: 0.35; }
.post-featured-img .ph-text { font-size: 0.82rem; opacity: 0.45; }

.post-content h2 { font-size: 1.6rem; font-weight: 700; margin: 40px 0 16px; }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; color: var(--gold); }
.post-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; font-size: 0.97rem; }
.post-content ul, .post-content ol { color: var(--text-muted); line-height: 1.9; margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.post-content ul li, .post-content ol li { padding: 6px 0 6px 24px; position: relative; font-size: 0.95rem; }
.post-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 10px; }
.post-content ol { counter-reset: post-counter; }
.post-content ol li { counter-increment: post-counter; }
.post-content ol li::before { content: counter(post-counter) '.'; position: absolute; left: 0; color: var(--purple); font-weight: 700; font-size: 0.9rem; }
.post-callout { background: linear-gradient(135deg, rgba(123,47,247,0.12), rgba(245,166,35,0.06)); border: 1px solid rgba(123,47,247,0.25); border-left: 3px solid var(--purple); border-radius: 12px; padding: 20px 24px; margin: 28px 0; }
.post-callout p { margin: 0; color: var(--text); font-size: 0.95rem; }
.post-cta-box { background: var(--dark-2); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px; text-align: center; margin: 48px 0; }
.post-cta-box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-cta-box p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.post-cta-box .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--glass-border); }
.post-tag { font-size: 0.78rem; color: var(--text-muted); background: var(--dark-4); padding: 4px 12px; border-radius: 50px; border: 1px solid var(--glass-border); text-decoration: none; }
.post-tag:hover { border-color: var(--purple); color: var(--text); }

.related-posts { padding: 70px 0; background: var(--dark-2); }
.related-posts h2 { font-size: 1.6rem; font-weight: 700; text-align: center; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Blog responsive */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } .related-grid { grid-template-columns: 1fr; } .post-body { padding: 40px 0; } }
