/* ==========================================================================
   FAST GROWTH EDITS — Official Luxury Portfolio
   Ashok Patel · Video Editor & Cinematic Director
   Zero Sidebars · Unique Videos · Premium Cyber Noir & Gold Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --bg-dark: #050608;
  --bg-card: rgba(14, 16, 22, 0.7);
  --bg-card-hover: rgba(22, 25, 36, 0.85);
  
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-emerald: rgba(0, 230, 153, 0.4);
  
  --text-main: #f5f5f8;
  --text-muted: #9e9eb4;
  --text-dim: #5c5c70;
  
  --gold-primary: #d4af37;
  --gold-light: #f6eaac;
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --emerald: #00e699;
  --emerald-glow: rgba(0, 230, 153, 0.2);
  
  --font-display: 'Syne', sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 15px;
  background: var(--bg-dark);
  position: relative;
}

/* Interactive Cursor Spotlight Glow */
#spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 230, 153, 0.02) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.5s ease;
}

/* Film Grain Texture Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e2230;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.font-display {
  font-family: var(--font-display);
}

.font-editorial {
  font-family: var(--font-editorial);
}

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.gold-gradient {
  background: linear-gradient(135deg, #ffffff 10%, #f6eaac 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emerald-gradient {
  background: linear-gradient(135deg, #ffffff 20%, #a3f7bf 60%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1240px);
  z-index: 100;
  padding: 12px 28px;
  background: rgba(10, 12, 18, 0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 230, 153, 0.1);
  border: 1px solid rgba(0, 230, 153, 0.35);
  color: var(--emerald);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.08) 100%);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.45) 0%, rgba(212,175,55,0.2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 6vw 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 25%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
              radial-gradient(circle at 20% 75%, rgba(0, 230, 153, 0.04) 0%, transparent 60%);
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Clean Video Showcase (ZERO SIDEBARS) */
.hero-video-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px var(--gold-glow);
  background: #000;
  aspect-ratio: 9/16;
  max-width: 380px;
  margin: 0 auto;
}

.hero-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-audio-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.hero-audio-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Animated Stats Banner */
.stats-banner {
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .stats-banner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.stat-box {
  text-align: left;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* BEFORE & AFTER SHOWCASE (FEATURING VIDEO 1 AND VIDEO 2 - CLEAN, NO SIDEBARS) */
.before-after-section {
  padding: 130px 6vw;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0c12 50%, var(--bg-dark) 100%);
}

.video-dual-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .video-dual-grid { grid-template-columns: 1fr; }
}

.clean-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
  background: #000;
  aspect-ratio: 9/16;
  transition: var(--transition);
}

.clean-video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.clean-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-tags {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.video-overlay-tags span {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.tag-raw {
  background: rgba(0, 0, 0, 0.65);
  color: #d0d0d8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag-final {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.video-control-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.ctrl-btn:hover {
  color: var(--gold-light);
}

/* Interactive Drag Split Comparison Tool */
.split-slider-wrapper {
  max-width: 440px;
  margin: 60px auto 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 35px 90px rgba(0,0,0,0.8), 0 0 35px var(--gold-glow);
  aspect-ratio: 9/16;
  user-select: none;
  cursor: ew-resize;
}

.split-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-overlay {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--gold-primary);
  z-index: 2;
}

.layer-overlay video {
  width: 440px;
  max-width: none;
}

.split-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-primary);
  z-index: 12;
  pointer-events: none;
  box-shadow: 0 0 15px var(--gold-primary);
}

.split-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 20px var(--gold-primary);
  pointer-events: none;
  z-index: 15;
}

/* Portfolio Showcase (DISTINCT CARDS) */
.portfolio-section {
  padding: 130px 6vw;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.portfolio-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.project-card {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow);
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

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

.project-card:hover .card-media img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 230, 153, 0.15);
  border: 1px solid rgba(0, 230, 153, 0.4);
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.card-content {
  padding: 26px;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Process Section */
.process-section {
  padding: 130px 6vw;
  background: radial-gradient(circle at 50% 50%, rgba(14, 16, 22, 0.9) 0%, var(--bg-dark) 100%);
}

.timeline-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.process-card {
  padding: 36px 26px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}

.step-num {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(212, 175, 55, 0.22);
  line-height: 1;
  margin-bottom: 14px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Estimator Widget */
.estimator-section {
  padding: 130px 6vw;
}

.estimator-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 35px var(--gold-glow);
}

.estimator-group {
  margin-bottom: 34px;
}

.group-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}

.chips-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.chip.selected {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #fff;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.estimator-result {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.result-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald);
}

/* FAQ Accordion */
.faq-section {
  padding: 130px 6vw;
  background: var(--bg-dark);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 26px;
  font-size: 1.12rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 26px 26px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open {
  border-color: var(--gold-primary);
}

/* Footer */
.footer {
  padding: 90px 6vw 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 44px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 25px var(--gold-primary);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Video Lightbox Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: min(92%, 920px);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
