:root {
  --primary-dark: #0d1b2a;
  --brand: #1b3a5f;
  --accent: #00aeef;
  --accent-soft: #5bc0eb;
  --light-bg: #f5f7fa;
  --card: #1b3a5f;
  --text: #0d1b2a;
  --text-on-dark: #f5f7fa;
  --muted: #8ea6c2;
  --line: rgba(91, 192, 235, 0.25);
  --blue-glow: rgba(0, 174, 239, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 0%, #e5f0ff 0%, var(--light-bg) 45%);
  color: var(--text);
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  background: rgba(13, 27, 42, 0.92);
  border: 1px solid rgba(91, 192, 235, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  width: min(1140px, 92%);
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.2);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 0.35rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-header-link {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(91, 192, 235, 0.28);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-header-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.cart-header-count {
  position: absolute;
  top: -7px;
  left: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  font-size: 0.98rem;
}

.brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--blue-glow);
}

.brand.brand-image {
  gap: 0;
}

.brand.brand-image::before {
  display: none;
}

.brand-logo-img {
  width: auto;
  height: 36px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(91, 192, 235, 0.15);
  padding: 0.3rem;
  border-radius: 999px;
}

.main-nav a {
  color: #d4e4f8;
  transition: color 0.2s ease, background 0.2s ease;
  font-size: 0.9rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--accent);
  background: rgba(91, 192, 235, 0.1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 4px 0;
}

[dir="rtl"] .hero-grid {
  direction: rtl;
}

.section {
  padding: 5rem 0;
}

#solutions,
#testimonials {
  background: linear-gradient(180deg, rgba(27, 58, 95, 0.08), transparent);
}

.hero {
  padding: 6rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.04;
}

.lead {
  color: #486683;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.76rem 1.15rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 22px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-ghost,
.btn-outline {
  border: 1px solid rgba(91, 192, 235, 0.55);
  background: transparent;
  color: var(--text-on-dark);
  font-size: 0.86rem;
  padding: 0.66rem 0.95rem;
}

.lang-btn {
  min-width: 52px;
  font-weight: 800;
  border-color: rgba(91, 192, 235, 0.45);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.08), 0 12px 30px rgba(13, 27, 42, 0.12);
}

.hero-visual img {
  height: 460px;
  object-fit: cover;
}

.hero h1 {
  color: var(--primary-dark);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.section-head p {
  margin: 0.4rem 0 0;
  color: #486683;
}

.card-grid,
.stats-grid,
.testimonial-grid,
.products-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.stat-card,
.testimonial-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.08);
  color: var(--text-on-dark);
}

.feature-card {
  padding: 1rem;
}

.feature-card .icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(91, 192, 235, 0.42));
}

.feature-card h3 {
  margin: 0.75rem 0 0.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.glow-strip {
  background: linear-gradient(180deg, rgba(27, 58, 95, 0.14), transparent);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 1rem;
  text-align: center;
}

.stat-card h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent-soft);
  text-shadow: 0 0 18px rgba(91, 192, 235, 0.45);
}

.stat-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card-home {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--text-on-dark);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.08);
}

.product-card-home img {
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 1rem;
}

.product-content h3 {
  margin: 0.55rem 0 0.45rem;
}

.product-content p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.main-nav a.is-active {
  color: var(--accent);
  background: rgba(91, 192, 235, 0.12);
}

.products-hero {
  padding-top: 7rem;
  padding-bottom: 1.4rem;
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.filter-btn {
  border: 1px solid rgba(91, 192, 235, 0.35);
  background: #ffffff;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--text-on-dark);
}

.product-item img {
  height: 220px;
  object-fit: cover;
}

.product-item-content {
  padding: 1rem;
}

.product-foot {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.product-foot strong {
  color: var(--accent-soft);
  font-size: 1.05rem;
}

.details-btn {
  color: var(--text-on-dark);
}

.product-details-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--text-on-dark);
}

.product-details-image img {
  height: 100%;
  object-fit: cover;
}

.product-details-content {
  padding: 1.1rem;
}

.product-details-content h2 {
  margin: 0.6rem 0 0.7rem;
}

.product-details-content p {
  color: var(--muted);
}

.details-list {
  margin: 0 0 1rem;
  padding: 0 1rem;
  color: #dce9fb;
}

.details-list li {
  margin-bottom: 0.35rem;
}

.details-back {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--accent-soft);
  text-decoration: underline;
}

.related-section {
  padding-top: 1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--text-on-dark);
}

.related-card img {
  height: 190px;
  object-fit: cover;
}

.related-content {
  padding: 0.9rem;
}

.related-content h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: 1.02rem;
}

.related-content p {
  margin: 0;
  color: var(--muted);
}

.related-price {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--accent-soft);
  font-size: 1.06rem;
}

.related-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-info-card,
.contact-form-card,
.map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--text-on-dark);
  padding: 1rem;
}

.contact-info-card h3,
.contact-form-card h3,
.map-card h3 {
  margin-top: 0;
}

.contact-info-card p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 0.78rem;
  border-radius: 0.9rem;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 0.65rem;
}

.contact-form-card #contactForm {
  grid-template-columns: 1fr;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-form-card select {
  border: 1px solid var(--line);
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 0.78rem;
  border-radius: 999px;
  font-family: inherit;
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.2rem 0 0.55rem;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 0.85rem;
}

.site-footer-main {
  margin-top: 2rem;
  background: var(--primary-dark);
  color: var(--text-on-dark);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  padding: 2rem 0 1.5rem;
}

.site-footer-main h3,
.site-footer-main h4 {
  margin-top: 0;
}

.site-footer-main p,
.site-footer-main a {
  color: #cfe0f5;
}

.site-footer-main a {
  display: block;
  margin: 0.25rem 0;
}

.site-footer-main a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(91, 192, 235, 0.2);
  padding: 0.8rem 0 1rem;
  text-align: center;
}

.services-grid-page,
.process-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-block,
.process-card,
.plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--text-on-dark);
  padding: 1rem;
}

.service-block .icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(91, 192, 235, 0.42));
}

.service-thumb {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  margin-bottom: 0.55rem;
}

.service-block h3,
.process-card h3,
.plan-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.service-block p,
.process-card p,
.plan-card p {
  margin: 0;
  color: var(--muted);
}

.process-card span {
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 1.1rem;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.2);
}

.testimonial-card {
  padding: 1rem;
}

.testimonial-card p {
  margin-top: 0;
  color: #e0ecfb;
}

.testimonial-card h4 {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card p {
  color: var(--muted);
}

#contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.65rem;
}

#contactForm input {
  border: 1px solid var(--line);
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 0.78rem;
  border-radius: 999px;
}

#formMessage {
  display: block;
  margin-top: 0.6rem;
  color: var(--blue-soft);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 80;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 32px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-call {
  position: fixed;
  right: 18px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #0088cc 100%);
  color: #ffffff;
  text-align: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.4), 0 8px 32px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 174, 239, 0.6), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mobile-call svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
}

.cart-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item-content h3 {
  margin: 0 0 0.35rem;
  color: var(--text-on-dark);
}

.cart-item-content p {
  margin: 0 0 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-actions input {
  width: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem;
}

.cart-summary {
  padding: 1rem;
  align-self: start;
}

.cart-empty {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .products-grid,
  .products-page-grid,
  .product-details-card,
  .related-grid,
  .services-grid-page,
  .process-grid,
  .plans-grid,
  .contact-page-grid,
  .cart-layout {
    grid-template-columns: 1fr 1fr;
  }

  #contactForm {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    border-radius: 0.55rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(91, 192, 235, 0.2);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border: 1px solid rgba(91, 192, 235, 0.2);
    border-radius: 14px;
    padding: 0.65rem;
    flex-direction: column;
    width: calc(100% - 16px);
    margin: 0 auto;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-grid,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .products-grid,
  .products-page-grid,
  .product-details-card,
  .related-grid,
  .services-grid-page,
  .process-grid,
  .plans-grid,
  .contact-page-grid,
  .cart-layout,
  .footer-grid,
  #contactForm {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-visual img {
    height: 320px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 76px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .mobile-call {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .mobile-call svg {
    width: 24px;
    height: 24px;
  }

  .header-actions {
    margin-inline-start: auto;
    gap: 0.4rem;
  }
}

/* Admin panel */
.admin-auth-wrap {
  max-width: 520px;
}

.admin-auth-card {
  margin-top: 4rem;
}

.admin-auth-title {
  margin-top: 0;
}

.admin-auth-subtitle {
  margin-bottom: 1rem;
}

.admin-auth-form input {
  width: 100%;
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
  background: var(--light-bg);
  color: var(--primary-dark);
  padding: 0.78rem;
  border-radius: 999px;
  font-family: inherit;
}

.admin-auth-submit {
  width: 100%;
}

.admin-auth-error {
  display: block;
  margin-top: 0.8rem;
  color: #ffb4b4;
}

.admin-header {
  margin-top: 12px;
}

.admin-section-compact {
  padding-top: 0;
}

.admin-card-title {
  margin-top: 0;
}

.admin-alert-text {
  color: #ffb4b4;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  color: #dce9fb;
}

.admin-table th,
.admin-table td {
  text-align: right;
  padding: 0.6rem;
}

.admin-table th {
  border-bottom: 1px solid rgba(91, 192, 235, 0.25);
}

.admin-table td {
  border-bottom: 1px solid rgba(91, 192, 235, 0.1);
}

.admin-success-text {
  color: #86e1ff;
}

.admin-data-table {
  min-width: 1000px;
}

.admin-cell-input {
  width: 100%;
  border: 1px solid rgba(91, 192, 235, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #dce9fb;
  padding: 0.45rem;
  border-radius: 0.45rem;
}

.admin-actions-cell {
  min-width: 160px;
  display: flex;
  gap: 0.4rem;
}

.admin-btn-small {
  padding: 0.42rem 0.75rem;
  font-size: 0.8rem;
}

.admin-add-form {
  margin-top: 1rem;
  border-top: 1px dashed rgba(91, 192, 235, 0.3);
  padding-top: 0.8rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.admin-form-grid input {
  border: 1px solid rgba(91, 192, 235, 0.35);
  background: #f8fbff;
  color: #0d1b2a;
  padding: 0.62rem;
  border-radius: 0.6rem;
}

.admin-form-grid select {
  border: 1px solid rgba(91, 192, 235, 0.35);
  background: #f8fbff;
  color: #0d1b2a;
  padding: 0.62rem;
  border-radius: 0.6rem;
}

.admin-form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-inline-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #dce9fb;
  margin-bottom: 0.6rem;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  background: radial-gradient(circle at 20% 0%, #e5f0ff 0%, var(--light-bg) 45%);
}

.admin-sidebar {
  background: #0f2135;
  border-inline-end: 1px solid rgba(91, 192, 235, 0.2);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar-head p {
  margin: 0.5rem 0 0;
  color: #9cb6d2;
  font-size: 0.9rem;
}

.admin-side-nav {
  display: grid;
  gap: 0.45rem;
}

.admin-side-nav a {
  color: #d6e6f9;
  padding: 0.7rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
  background: rgba(91, 192, 235, 0.12);
  border-color: rgba(91, 192, 235, 0.25);
  color: #ffffff;
}

.admin-sidebar-actions {
  margin-top: auto;
}

.admin-main-content {
  padding: 1.5rem;
}

.admin-content-head h1 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.admin-content-head p {
  margin-top: 0.5rem;
  color: #486683;
}

.admin-block {
  margin-top: 1rem;
}

.admin-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-main-content {
    padding: 1rem;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-grid-3 {
    grid-template-columns: 1fr;
  }
}
