/* ===== Google Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --primary: #0080BD;
  --primary-light: #33a3d4;
  --primary-dark: #006a9e;
  --secondary: #262262;
  --secondary-light: #3a3680;
  --accent: #00c9a7;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f0f4f8;
  --gray-100: #e1e8ed;
  --gray-200: #c8d3dc;
  --gray-400: #8a9bae;
  --gray-600: #5a6b7d;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 44px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-logo img {
  height: 38px;
}

/* Logo switching */
.navbar .logo-dark { display: block; }
.navbar .logo-light { display: none; }
.navbar.scrolled .logo-dark { display: none; }
.navbar.scrolled .logo-light { display: block; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-links a {
  color: var(--gray-800);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(0,128,189,0.3);
}
.navbar-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,128,189,0.4) !important;
}
.navbar-cta::after { display: none !important; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.navbar.scrolled .menu-toggle span {
  background: var(--gray-800);
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(0,128,189,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(38,34,98,0.4) 0%, transparent 60%);
  z-index: 1;
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .highlight {
  color: #7dd3fc;
  -webkit-text-fill-color: #7dd3fc;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 16px 48px;
  font-size: 1.1rem;
  box-shadow: 0 6px 25px rgba(0,128,189,0.35);
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,128,189,0.45);
}

/* Hero Image */
.hero-image {
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img,
.hero-image-wrapper video {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(38,34,98,0.15));
  pointer-events: none;
}

/* Hero floating stats */
.hero-stat {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatStat 4s ease-in-out infinite;
}
.hero-stat:nth-child(2) { animation-delay: -1.5s; }

@keyframes floatStat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hero-stat-icon.blue { background: rgba(0,128,189,0.12); color: var(--primary); }
.hero-stat-icon.green { background: rgba(0,201,167,0.12); color: var(--accent); }

.hero-stat-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
}
.hero-stat-text p {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.stat-1 { bottom: -20px; right: -20px; }
.stat-2 { top: -20px; left: -20px; }

/* ===== Features Section ===== */
.features {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,128,189,0.08);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: var(--transition);
}
.feature-icon.icon-1 {
  background: linear-gradient(135deg, rgba(0,128,189,0.1), rgba(0,128,189,0.05));
  color: var(--primary);
}
.feature-icon.icon-2 {
  background: linear-gradient(135deg, rgba(0,201,167,0.1), rgba(0,201,167,0.05));
  color: var(--accent);
}
.feature-icon.icon-3 {
  background: linear-gradient(135deg, rgba(38,34,98,0.1), rgba(38,34,98,0.05));
  color: var(--secondary);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== Form Section ===== */
.form-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.form-info {
  padding-top: 20px;
}
.form-info h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}
.form-info p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,128,189,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}
.form-benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.form-benefit-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.form-group label .required {
  color: #e53e3e;
  margin-right: 4px;
}

/* Radio/Checkbox Group */
.radio-group {
  display: flex;
  gap: 12px;
}
.radio-option {
  flex: 1;
  position: relative;
}
.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.radio-option input:checked + label {
  border-color: var(--primary);
  background: rgba(0,128,189,0.06);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,128,189,0.1);
}
.radio-option label:hover {
  border-color: var(--primary-light);
  background: rgba(0,128,189,0.02);
}

/* Text Inputs */
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--off-white);
  direction: rtl;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,128,189,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Parts selector */
.parts-selector {
  display: none;
  margin-top: 16px;
  animation: fadeSlideIn 0.4s ease-out;
}
.parts-selector.active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.parts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.part-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--off-white);
}
.part-item.selected {
  border-color: var(--primary);
  background: rgba(0,128,189,0.04);
}
.part-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.part-item-info span.part-emoji {
  font-size: 1.3rem;
}
.part-item-info span.part-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: 'Tajawal', sans-serif;
}
.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,128,189,0.05);
}
.qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 24px;
  text-align: center;
  color: var(--secondary);
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 24px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col a,
.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Floating Actions ===== */
.floating-actions {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.fab:hover {
  transform: scale(1.1);
}
.fab-whatsapp {
  background: #25d366;
}
.fab-whatsapp:hover {
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
.fab-phone {
  background: var(--primary);
}
.fab-phone:hover {
  box-shadow: 0 6px 25px rgba(0,128,189,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content { order: 1; }
  .hero-image { order: 2; }
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-title { font-size: 2.8rem; }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }
  .form-info { text-align: center; }
  .form-benefits { align-items: center; }
  .form-benefit-item { text-align: right; }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p { margin: 0 auto; }
  .footer-col a,
  .footer-col p {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
  }
  .navbar-links.active a {
    color: var(--gray-800) !important;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  @keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  .menu-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-image-wrapper img,
  .hero-image-wrapper video { height: 280px; }
  .hero-stat { display: none; }

  .section-title { font-size: 1.8rem; }

  .form-card { padding: 28px 20px; }
  .parts-grid { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }

  .btn { padding: 12px 28px; font-size: 0.95rem; }
  .btn-submit { padding: 14px 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .hero-badge { font-size: 0.8rem; }
  .floating-actions {
    bottom: 16px;
    left: 16px;
  }
  .fab {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* Mobile overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.menu-overlay.active {
  display: block;
}
