:root {
  --primary: #ffce3a;
  --secondary: #7f5dff;
  --accent: #ff6fb5;
  --dark: #050b2b;
  --light: #fdf6ff;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1b2a6b, #050b2b 55%, #02030f);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 43, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 0.0625px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  transition: transform 0.3s;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 11, 43, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-list a {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  transition: color 0.3s;
}

.mobile-nav-list a:hover {
  color: #ffce3a;
}

@media (max-width: 1100px) {
  nav ul {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .logo-sub {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
  }

  nav ul {
    gap: 0.25rem;
  }

  nav a {
    padding: 0.35rem 0.5rem;
  }

  .btn-primary {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #ffce3a 40%, #ff6fb5 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 206, 58, 0.7);
}

.logo span {
  display: block;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.2rem;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.75rem;
  font-size: 0.95rem;
  align-items: center;
}

nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  color: #050b2b;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(255, 111, 181, 0.6);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Hero section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.hero h1 span.highlight {
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 0.0625px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 11, 43, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn-secondary {
  border-radius: 999px;
  padding: 0.42rem 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Hero right: rocket & orbits */
.hero-visual {
  position: relative;
  min-height: 260px;
}

.planet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #ffce3a 30%, #ff6fb5 70%);
  box-shadow:
    0 0 30px rgba(255, 206, 58, 0.65),
    0 0 70px rgba(127, 93, 255, 0.75);
  width: 170px;
  height: 170px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 0.0625px dashed rgba(255, 255, 255, 0.25);
  animation: spin 26s linear infinite;
}

.orbit.small {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit.medium {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 30s;
}

.orbit.large {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 36s;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rocket {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(145deg, #ffffff, #ffce3a);
  top: 5%;
  left: 10%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-18deg);
}

.rocket::after {
  content: "🚀";
  font-size: 2rem;
}

.planet-chip {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 11, 43, 0.75);
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  backdrop-filter: blur(6px);
}

.chip-montessori {
  top: 20%;
  right: 2%;
}

.chip-kindergarten {
  bottom: 18%;
  left: 4%;
}

.chip-daycare {
  bottom: 5%;
  right: 22%;
}

.stars {
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.8) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 80% 30%, rgba(255, 255, 255, 0.7) 0, transparent 50%),
    radial-gradient(1.2px 1.2px at 30% 80%, rgba(255, 255, 255, 0.6) 0, transparent 50%),
    radial-gradient(1.8px 1.8px at 60% 60%, rgba(255, 255, 255, 0.9) 0, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

/* Sections below hero */
main {
  flex: 1;
}

.section {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title span.icon {
  font-size: 1.4rem;
}

.section-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

/* Highlights cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(5, 11, 43, 0.9);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0.9rem 1rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 111, 181, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.card-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.45rem;
}

.card-tag {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* YouTube section */
.youtube-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.youtube-card {
  background: rgba(5, 11, 43, 0.9);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.14);
  padding: 0.85rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.youtube-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.18);
  background: #000;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-text h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.youtube-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.7rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}

.stat-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.0625px solid rgba(255, 255, 255, 0.14);
}

footer {
  border-top: 0.0625px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 11, 43, 0.95);
  margin-top: auto;
}

.footer-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Page Headers (from about.html/contact.html) */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.25rem 1.5rem;
}

.page-header-inner {
  max-width: 1450px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-header .highlight {
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections (from about.html) */
.content-section {
  max-width: 1450px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.content-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1.2rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 93, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.content-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: #ffce3a;
  font-weight: 600;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.philosophy-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.philosophy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(127, 93, 255, 0.4);
}

.philosophy-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.philosophy-card .card-emoji {
  font-size: 1.4rem;
}

.philosophy-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Timeline (about.html) */
.growth-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(255, 206, 58, 0.5);
  flex-shrink: 0;
}

.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.age-badge {
  display: inline-block;
  background: rgba(255, 206, 58, 0.2);
  border: 0.0625px solid rgba(255, 206, 58, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

/* Common CTA Section */
.cta-section {
  max-width: 1450px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, rgba(127, 93, 255, 0.3), rgba(255, 111, 181, 0.3));
  border-radius: 1.2rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.cta-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page Specifics */
.content-wrapper {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.contact-info-section {
  position: sticky;
  top: 90px;
}

.info-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.2rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffce3a;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
}

.info-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.info-item a:hover {
  color: #ffce3a;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.social-btn.facebook:hover {
  border-color: #1877f2;
}

.social-btn.instagram:hover {
  border-color: #e4405f;
}

.social-btn.youtube:hover {
  border-color: #ff0000;
}

.social-btn.twitter:hover {
  border-color: #1da1f2;
}

.social-btn.whatsapp:hover {
  border-color: #25d366;
}

.social-btn.linkedin:hover {
  border-color: #0a66c2;
}

.hours-list {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 0.0625px solid rgba(255, 255, 255, 0.08);
}

.hours-item:last-child {
  border-bottom: none;
}

.form-section {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1.2rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.8rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.form-section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.optional {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.6rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffce3a;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background-color: #050b2b;
  color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  color: #050b2b;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 111, 181, 0.6);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.15s;
}

.submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.8rem;
  text-align: center;
}

.anonymous-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76, 217, 100, 0.15);
  border: 0.0625px solid rgba(76, 217, 100, 0.3);
  color: #4cd964;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.map-section {
  max-width: 1450px;
  margin: 2rem auto 0;
  padding: 0 1.25rem;
}

.map-section>div {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #1b2a6b 0%, #050b2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  text-align: center;
  z-index: 2;
}

.map-placeholder .emoji {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* franchise.html specific */
.benefits-section {
  position: sticky;
  top: 90px;
}

.benefit-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.benefit-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(127, 93, 255, 0.2), rgba(255, 111, 181, 0.2));
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem;
  margin-top: 1.2rem;
}

.highlight-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.highlight-box ul {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-box li::before {
  content: "✨ ";
  margin-right: 0.3rem;
}

.required {
  color: #ff6fb5;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.82rem;
  margin-bottom: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
}

/* locate.html specific */
.search-section {
  max-width: 1450px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.25rem;
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.search-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-box {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  border-color: #ffce3a;
  background: rgba(255, 255, 255, 0.08);
}

.search-btn {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  color: #050b2b;
  border: none;
  border-radius: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 6px 15px rgba(255, 111, 181, 0.5);
}

.search-btn:hover {
  opacity: 0.95;
}

.stats-row {
  max-width: 1450px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 0.9rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.stat-emoji {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 0.0625px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover,
.filter-pill.active {
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  color: #050b2b;
  border-color: transparent;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.branch-card {
  background: rgba(5, 11, 43, 0.7);
  border-radius: 1rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 93, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(127, 93, 255, 0.4);
}

.branch-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.8rem;
}

.branch-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.branch-status {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(76, 217, 100, 0.2);
  border: 0.0625px solid rgba(76, 217, 100, 0.4);
  color: #4cd964;
}

.branch-info {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.branch-info div {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.branch-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.btn-small {
  flex: 1;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-small:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-small.primary {
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  color: #050b2b;
  border: none;
  font-weight: 600;
}

.btn-small.primary:hover {
  opacity: 0.95;
}

/* gallery.html specific */
.filter-row {
  max-width: 1450px;
  margin: 0 auto 1.5rem;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.gallery-grid {
  max-width: 1450px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(5, 11, 43, 0.8);
  border: 0.0625px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(127, 93, 255, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(5, 11, 43, 0.8);
  font-size: 0.7rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0.0625px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.gallery-label span {
  white-space: nowrap;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.lightbox-caption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsiveness */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
    padding-bottom: 2.2rem;
  }

  .hero-visual {
    order: -1;
  }

  .youtube-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-info-section {
    position: static;
  }

  .benefits-section {
    position: static;
  }
}

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
    /* Show hamburger on mobile */
  }

  nav ul {
    display: none;
  }

  .nav-actions {
    display: none;
    /* Hide buttons in main header on small mobile if needed, or keep them */
  }

  /* Adjust header for mobile to make space for hamburger */
  .nav-container {
    padding: 0.5rem 1rem;
  }

  .logo-main {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-top: 1.6rem;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  /* Shrink orbits on mobile to prevent overflow */
  .orbit.large {
    width: 320px;
    height: 320px;
  }

  .orbit.medium {
    width: 260px;
    height: 260px;
  }

  .orbit.small {
    width: 200px;
    height: 200px;
  }

  .planet {
    width: 140px;
    height: 140px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline-icon {
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .branches-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-box {
    flex-direction: column;
  }

  .search-input {
    min-width: 100%;
  }

  .gallery-item img {
    height: 190px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 0 1rem 2rem;
  }

  .page-header {
    padding: 2.5rem 1rem 2rem;
  }

  .content-section {
    padding: 0 1rem;
  }

  .cta-section {
    padding: 1.5rem 1rem;
  }
}

/* Chat System CSS */
.chat-container {
  display: flex;
  height: 700px;
  background: rgba(5, 11, 43, 0.95);
  border-radius: 12px;
  border: 0.0625px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.back-btn {
  display: none;
  background: none;
  border: none;
  color: #ffce3a;
  font-size: 1.2rem;
  cursor: pointer;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}

.chat-sidebar {
  width: 320px;
  background: rgba(5, 11, 43, 0.9);
  border-right: 0.0625px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.chat-sidebar-header {
  height: 60px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  border-bottom: 0.0625px solid rgba(255, 255, 255, 0.05);
}

.chat-list {
  flex: 1;
  overflow-y: auto;
}

.chat-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 0.0625px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.chat-item:hover,
.chat-item.active {
  background: rgba(255, 255, 255, 0.08);
}

.chat-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffce3a, #ff6fb5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
  color: #fff;
}

.chat-info {
  flex: 1;
  min-width: 0;
}

.chat-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.chat-last-msg {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unread-badge {
  background: #2ecc71;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  font-weight: bold;
}

.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #0d1418;

  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd' /%3E%3C/svg%3E");
  display: none;
}

.chat-main.active {
  display: flex;
}

@media (max-width: 768px) {
  .chat-container {
    height: calc(100vh - 120px);
    border-radius: 0;
  }

  .chat-sidebar {
    width: 100%;
    border-right: none;
  }

  .chat-sidebar.hidden {
    display: none;
  }

  .chat-main {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0d1418;
    z-index: 10;
  }

  .chat-main.mobile-active {
    display: flex;
  }

  .back-btn {
    display: flex;
  }

  .chat-sidebar-header {
    height: 70px;
  }
}

.chat-header {
  height: 60px;
  padding: 0 20px;
  background: rgba(32, 44, 51, 0.95);
  display: flex;
  align-items: center;
  border-bottom: 0.0625px solid rgba(255, 255, 255, 0.1);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-bubble {
  max-width: 60%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  position: relative;
  line-height: 1.4;
  word-wrap: break-word;
}

.message-bubble.received {
  align-self: flex-start;
  background: #202c33;
  color: #fff;
  border-top-left-radius: 0;
}

.message-bubble.sent {
  align-self: flex-end;
  background: #005c4b;
  color: #fff;
  border-top-right-radius: 0;
}

.date-separator {
  align-self: center;
  margin: 1rem 0;
  padding: 0.3rem 0.8rem;
  background: rgba(32, 44, 51, 0.9);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.msg-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  float: right;
  margin-left: 8px;
  margin-top: 4px;
}

.chat-input-area {
  height: 62px;
  background: rgba(32, 44, 51, 0.95);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background: #2a3942;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  color: #fff;
  font-family: inherit;
  outline: none;
}

.btn-send {
  background: transparent;
  border: none;
  color: #00a884;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full Screen Admin Chat Layout */
.admin-chat-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  height: auto;
  overflow: hidden;
}

/* Allow chat container to fill height in admin mode */
.chat-container.full-height {
  flex: 1;
  height: 100% !important;
  margin: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

/* Refined Sidebar Items for Admin Chat */
.chat-sidebar {
  background: #111b21;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-sidebar-header {
  height: 60px;
  background: #202c33;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-item {
  height: 72px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-item:hover {
  background: #202c33;
}

.chat-item.active {
  background: #2a3942;
}

.chat-avatar {
  width: 49px;
  height: 49px;
  font-size: 1.2rem;
}

/* Right side header */
.chat-main .chat-header {
  height: 60px;
  background: #202c33;
  padding: 10px 16px;
}

/* Empty State */
.empty-state {
  padding: 2rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.empty-chat-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 2rem;
  user-select: none;
}

.empty-chat-placeholder h3 {
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.empty-chat-placeholder p {
  font-size: 0.9rem;
}

/* Chat Sidebar Search */
.chat-search-bar {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #111b21;
}

.search-input-wrapper {
  background: #202c33;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.search-icon {
  color: #aebac1;
  margin-right: 15px;
  font-size: 0.9rem;
}

.search-box-field {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  outline: none;
  font-size: 0.9rem;
}

.search-box-field::placeholder {
  color: #aebac1;
}

.parent-chat-container {
  height: 500px;
  background: #0d1418;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd' /%3E%3C/svg%3E");
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0.0625px solid rgba(255, 255, 255, 0.1);
}