@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&family=Exo+2:wght@300;400;600;800&display=swap");
html,
body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
* {
  box-sizing: border-box !important;
}
body.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.chat-open {
  overflow: hidden;
  height: 100vh;
}
body.chat-open #online-badge,
body.chat-open #scroll-top,
body.chat-open #wa-float-btn {
  display: none !important;
}
#my-chat-modal.show {
  z-index: 2147483647 !important;
}
#my-chat-header {
  position: relative;
  z-index: 5;
}
#my-chat-input-row {
  position: relative;
  z-index: 5;
}
.chat-upload-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 4px 0;
  font-family: "Exo 2", sans-serif;
  font-size: 12px;
  color: #aaccee;
  align-self: flex-start;
  max-width: 85%;
}
.chat-upload-progress .cup-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-upload-progress .cup-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-upload-progress .cup-bar-wrap {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.chat-upload-progress .cup-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sky), var(--sky3));
  border-radius: 4px;
  transition: width 0.15s ease;
}
.chat-upload-progress .cup-pct {
  min-width: 34px;
  text-align: right;
  color: #fff;
  font-weight: 700;
}
.chat-upload-progress.cup-error {
  border-color: rgba(255, 80, 80, 0.4);
  color: #ffb3b3;
}
.chat-upload-progress.cup-error .cup-bar {
  background: #ff5050;
}
:root {
  --sky: #00bfff;
  --sky2: #0099cc;
  --sky3: #33d4ff;
  --white: #ffffff;
  --light: #f0faff;
  --mid: #e0f5ff;
  --dark: #003366;
  --accent: #ff6b35;
  --gold: #ffd700;
  --bg: #f5fbff;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 8px 32px rgba(0, 191, 255, 0.18);
  --glow: 0 0 24px rgba(0, 191, 255, 0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--dark);
  font-family: "Exo 2", "Rajdhani", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 80, 0.97) 0%,
    rgba(0, 100, 180, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sky);
  box-shadow: 0 4px 24px rgba(0, 191, 255, 0.3);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoSpin 8s linear infinite;
  animation-play-state: var(--logo-spin-state, paused);
  filter: drop-shadow(0 0 12px var(--sky));
}
@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 0 16px var(--sky);
}
.logo-text span {
  color: var(--sky3);
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--sky3);
  transition: all 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(0, 191, 255, 0.15);
}
.nav-links a:hover::before,
.nav-links a.active::before {
  left: 10%;
  right: 10%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--sky2)) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 16px rgba(0, 191, 255, 0.4);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(0, 191, 255, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(0, 191, 255, 0.8);
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
#online-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 60, 0.95),
    rgba(0, 80, 140, 0.95)
  );
  border: 1.5px solid var(--sky);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: badgeBounce 3s ease-in-out infinite;
  font-family: "Exo 2", sans-serif;
}
@keyframes badgeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.online-dot {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: dotBlink 1.2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
#online-badge span {
  color: var(--white);
  font-size: 12px;
}
#online-count {
  color: #00ff88;
  font-weight: 700;
  font-size: 14px;
}
.page {
  display: none;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 70px);
  margin-top: calc(70px + var(--banner-h, 0px));
}
.page.active {
  display: block;
}
#page-home {
  min-height: calc(100vh - 70px);
  display: none;
  flex-direction: column;
}
#page-home.active {
  display: flex;
}
:root {
  --banner-h: 0px;
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001830 0%, #003366 40%, #0066aa 100%);
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.2);
  animation: circleExpand 6s ease-in-out infinite;
}
.hero-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.hero-circle:nth-child(2) {
  width: 500px;
  height: 500px;
  top: -10%;
  right: 5%;
  animation-delay: 1.5s;
}
.hero-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 40%;
  animation-delay: 3s;
}
@keyframes circleExpand {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}
.hero-content {
  text-align: center;
  z-index: 2;
  padding: 40px 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--sky3);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-title .highlight {
  color: var(--sky3);
  text-shadow: 0 0 40px var(--sky);
  position: relative;
}
.hero-subtitle {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky), #0077aa);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 6px 24px rgba(0, 191, 255, 0.5);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 191, 255, 0.7);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--sky3);
  color: var(--sky3);
  transform: translateY(-3px);
  background: rgba(0, 191, 255, 0.08);
}
.filter-btn {
  background: rgba(0, 191, 255, 0.08);
  color: var(--dark);
  border: 2px solid rgba(0, 102, 170, 0.35);
  padding: 9px 22px;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.filter-btn:hover {
  border-color: var(--sky);
  background: rgba(0, 191, 255, 0.18);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.35);
}
.stats-strip {
  background: linear-gradient(90deg, #002244, #003d70, #002244);
  padding: 28px 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(0, 191, 255, 0.3);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
}
.stat-item {
  text-align: center;
  animation: fadeSlideUp 0.8s ease both;
}
.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--sky3);
  text-shadow: 0 0 20px var(--sky);
  display: block;
}
.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
}
.marquee-wrap {
  background: linear-gradient(90deg, var(--sky2), var(--sky), var(--sky2));
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  padding: 0 40px;
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-item::after {
  content: "◆";
  color: rgba(255, 255, 255, 0.5);
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.featured-services {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--sky2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span {
  color: var(--sky2);
}
.section-desc {
  color: #557799;
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: "Exo 2", sans-serif;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky2), var(--sky3));
  border-radius: 2px;
  margin: 20px auto 0;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feat-card {
  will-change: transform;
  background: var(--card);
  border: 1.5px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 191, 255, 0.25);
  border-color: var(--sky);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  animation: iconBob 3s ease-in-out infinite;
}
@keyframes iconBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.feat-title {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.feat-desc {
  color: #6688aa;
  font-size: 13.5px;
  line-height: 1.6;
  font-family: "Exo 2", sans-serif;
}
.feat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  font-family: "Exo 2", sans-serif;
}
.why-section {
  background: linear-gradient(135deg, #001830 0%, #003366 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.12) 0%,
    transparent 70%
  );
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(0, 191, 255, 0.12);
  border-color: var(--sky);
  transform: translateY(-6px);
}
.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.why-title {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sky3);
  margin-bottom: 10px;
}
.why-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  font-family: "Exo 2", sans-serif;
}
#page-services {
  padding: 40px 20px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.services-arena {
  position: relative;
  width: 100%;
  min-height: 700px;
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f8ff 0%, #f0faff 50%, #e0f4ff 100%);
  box-shadow: inset 0 0 60px rgba(0, 191, 255, 0.08);
}
.arena-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Orbitron", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 191, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 10px;
}
.service-chip {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(230, 248, 255, 0.97)
  );
  border: 2px solid rgba(0, 191, 255, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: grab;
  user-select: none;
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.2s, border-color 0.2s;
  max-width: 180px;
  text-align: center;
  backdrop-filter: blur(10px);
  z-index: 10;
  transform: rotate(var(--chip-rot, 0deg));
}
.service-chip:active {
  cursor: grabbing;
}
.service-chip.dragging {
  box-shadow: 0 16px 48px rgba(0, 191, 255, 0.5), 0 0 0 3px var(--sky);
  border-color: var(--sky);
  z-index: 100;
  cursor: grabbing;
  transform: scale(1.05) rotate(var(--chip-rot, 0deg));
}
.service-chip.chip-blasting {
  animation: chipBlast 0.35s ease-out forwards;
  pointer-events: none;
  z-index: 200;
}
.service-chip.chip-respawn {
  animation: chipRespawn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes chipBlast {
  0% {
    transform: scale(1) rotate(var(--chip-rot, 0deg));
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.7) rotate(calc(var(--chip-rot, 0deg) + 25deg));
    opacity: 0.75;
    filter: brightness(2.2);
  }
  100% {
    transform: scale(0.15) rotate(calc(var(--chip-rot, 0deg) + 50deg));
    opacity: 0;
    filter: brightness(3);
  }
}
@keyframes chipRespawn {
  0% {
    transform: scale(0) rotate(var(--chip-rot, 0deg));
    opacity: 0;
  }
  65% {
    transform: scale(1.18) rotate(var(--chip-rot, 0deg));
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(var(--chip-rot, 0deg));
    opacity: 1;
  }
}
.service-chip.chip-pending-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1) rotate(var(--chip-rot, 0deg));
}
.service-chip.chip-revealing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 7s ease-in-out;
}
.service-chip.chip-revealing.chip-revealed-active {
  opacity: 1;
}
.service-chip .chip-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
  pointer-events: none;
}
.service-chip .chip-title {
  font-family: "Exo 2", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  pointer-events: none;
  letter-spacing: 0.3px;
}
.service-chip .chip-desc {
  font-size: 10px;
  color: #7799bb;
  margin-top: 4px;
  display: none;
  pointer-events: none;
}
.service-chip:hover .chip-desc {
  display: block;
}
.service-chip:hover {
  border-color: var(--sky);
  box-shadow: 0 10px 32px rgba(0, 191, 255, 0.3);
}
.service-chip.chip-bright .chip-title {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.service-chip.chip-bright .chip-desc {
  color: rgba(255, 255, 255, 0.9);
}
.service-chip.chip-bright {
  border-color: rgba(255, 255, 255, 0.55);
}
.arena-instruction {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 40, 80, 0.85);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: "Exo 2", sans-serif;
  border: 1px solid rgba(0, 191, 255, 0.3);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
#page-about {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-logo-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366, #0066aa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 191, 255, 0.4),
    inset 0 0 40px rgba(0, 191, 255, 0.1);
  position: relative;
}
.about-logo-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 191, 255, 0.4);
  animation: ringRotate 12s linear infinite;
}
.about-logo-ring::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 255, 0.2);
  animation: ringRotate 20s linear infinite reverse;
}
@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-logo-big {
  font-size: 100px;
  width: 238px;
  height: 238px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoSpin 8s linear infinite;
  animation-play-state: var(--logo-spin-state, paused);
  filter: drop-shadow(0 0 20px var(--sky));
}
.about-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text h2 span {
  color: var(--sky2);
}
.about-text p {
  color: #557799;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
  font-family: "Exo 2", sans-serif;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(0, 191, 255, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--sky);
  transition: all 0.3s;
}
.about-feat-item:hover {
  background: rgba(0, 191, 255, 0.12);
  transform: translateX(6px);
}
.about-feat-item span:first-child {
  font-size: 20px;
}
.about-feat-item span:last-child {
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
}
.team-section {
  margin-top: 80px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  background: var(--card);
  border: 1.5px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.35s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 191, 255, 0.25);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}
.team-name {
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.team-role {
  color: var(--sky2);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
}
#page-contact {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1.5px solid rgba(0, 191, 255, 0.2);
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.contact-item:hover {
  border-color: var(--sky);
  transform: translateX(6px);
}
.contact-icon {
  font-size: 24px;
  min-width: 30px;
}
.contact-label {
  font-family: "Exo 2", sans-serif;
  font-size: 11px;
  color: #99aacc;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-val {
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
}
.contact-val a {
  color: var(--sky2);
  text-decoration: none;
}
.contact-val a:hover {
  color: var(--sky);
}
.contact-form-wrap {
  background: var(--card);
  border: 1.5px solid rgba(0, 191, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(0, 191, 255, 0.25);
  border-radius: 10px;
  background: rgba(240, 250, 255, 0.8);
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
  background: var(--white);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#page-register {
  padding: 60px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
}
#page-register.active {
  display: flex;
}
.register-wrap {
  width: 100%;
  max-width: 520px;
}
.register-card {
  background: var(--card);
  border: 1.5px solid rgba(0, 191, 255, 0.25);
  border-radius: 28px;
  padding: 50px 44px;
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.register-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.1) 0%,
    transparent 70%
  );
}
.register-logo {
  text-align: center;
  margin-bottom: 32px;
}
.register-logo .logo-img-wrap {
  margin: 0 auto 12px;
  display: block;
  width: 60px;
  height: 60px;
}
.register-logo h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  color: var(--dark);
}
.register-logo p {
  color: #88aacc;
  font-size: 13px;
  margin-top: 6px;
  font-family: "Exo 2", sans-serif;
}
.register-success {
  display: none;
  text-align: center;
  padding: 20px;
}
.register-success .success-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  animation: successBounce 0.6s ease;
}
@keyframes successBounce {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.register-success h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}
.register-success p {
  color: #88aacc;
  font-size: 14px;
  font-family: "Exo 2", sans-serif;
}
#page-gallery {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 16px;
  will-change: transform;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0, 191, 255, 0.2);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 191, 255, 0.3);
  border-color: var(--sky);
}
.gallery-item-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-item-bg {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 40, 80, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-text {
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.site-footer {
  background: linear-gradient(135deg, #001830 0%, #002a50 100%);
  padding: 60px 40px 30px;
  border-top: 2px solid rgba(0, 191, 255, 0.3);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.footer-brand .logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo-text span {
  color: var(--sky3);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
  font-family: "Exo 2", sans-serif;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(0, 191, 255, 0.25);
  border-color: var(--sky);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  color: var(--sky3);
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--sky3);
  padding-left: 6px;
}
.footer-col ul li a::before {
  content: "›";
  color: var(--sky2);
}
.footer-bottom {
  border-top: 1px solid rgba(0, 191, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-family: "Exo 2", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a {
  color: var(--sky3);
  text-decoration: none;
}
#toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 80, 0.97),
    rgba(0, 100, 180, 0.97)
  );
  color: var(--white);
  padding: 14px 16px 14px 22px;
  border-radius: 12px;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  z-index: 99999;
  border: 1px solid var(--sky);
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
  transform: translateX(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 14px;
}
#toast-msg {
  flex: 1;
}
#toast-close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}
#toast-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
#toast.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0s;
}
#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.5);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  border: none;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 191, 255, 0.7);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 30, 60, 0.98);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.3);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 13px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .register-card {
    padding: 36px 24px;
  }
  #page-services,
  #page-about,
  #page-gallery,
  #page-contact {
    padding-left: 20px;
    padding-right: 20px;
  }
  .admin-shell {
    padding: 0 4px;
  }
  .admin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .admin-tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .admin-panel-box {
    padding: 18px 16px;
  }
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 40, 80, 0.88) 0%,
      transparent 75%
    );
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns button {
    width: 100%;
  }
  .hero-content {
    padding: 24px 18px;
  }
  .hero {
    min-height: 68vh;
  }
  .hero-eyebrow {
    margin-bottom: 12px;
  }
  .hero-subtitle {
    margin: 0 auto 26px;
  }
  .feat-grid,
  .why-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .feat-card,
  .why-card,
  .team-card {
    padding: 18px 14px !important;
  }
  .feat-icon,
  .why-icon {
    font-size: 26px !important;
  }
  .feat-title,
  .why-title {
    font-size: 14px !important;
  }
  .feat-desc,
  .why-text {
    font-size: 11.5px !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  #online-badge {
    bottom: 16px;
    left: 16px;
    padding: 8px 14px;
    animation: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 40, 75, 0.97);
  }
  #online-badge span {
    font-size: 11px;
  }
  .social-btn {
    width: 44px;
    height: 44px;
  }
  #toast {
    left: 16px;
    right: 16px;
    bottom: 84px;
    max-width: none;
    text-align: center;
    transform: translateY(120%);
  }
  #toast.show {
    transform: translateY(0);
  }
  #scroll-top {
    width: 46px;
    height: 46px;
    bottom: 16px;
    right: 16px;
  }
  .register-card,
  .admin-panel-box {
    border-radius: 16px;
  }
  .register-card {
    padding: 30px 18px;
  }
  #page-register {
    padding: 10px 12px;
    min-height: 100dvh;
    align-items: center;
  }
  .register-wrap {
    max-width: 380px;
  }
  .register-card {
    padding: 16px 16px;
  }
  .register-logo {
    margin-bottom: 10px;
  }
  .register-logo .logo-img-wrap {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
  }
  .register-logo h2 {
    font-size: 15px;
  }
  .register-logo p {
    font-size: 10.5px;
    margin-top: 2px;
  }
  #register-form-area .form-group,
  #login-form-area .form-group {
    margin-bottom: 8px;
  }
  #register-form-area .form-row {
    gap: 8px;
  }
  #register-form-area label,
  #login-form-area label {
    font-size: 10.5px;
    margin-bottom: 3px;
  }
  #register-form-area input,
  #login-form-area input {
    padding: 8px 10px;
    font-size: 12.5px;
  }
  #register-form-area > div[style*="margin-bottom:20px"] {
    margin-bottom: 8px !important;
  }
  #register-form-area label[for="reg-agree"] {
    font-size: 10.5px !important;
  }
  #register-form-area button.btn-primary,
  #login-form-area button.btn-primary {
    padding: 10px !important;
    font-size: 12.5px;
  }
  #register-form-area p,
  #login-form-area p {
    font-size: 10.5px !important;
    margin-top: 8px !important;
  }
  #reg-count-badge {
    font-size: 10.5px;
  }
  .register-wrap > div[style*="margin-top:20px"] {
    margin-top: 8px !important;
  }
  .register-success .success-icon {
    font-size: 32px;
  }
  .register-success h3 {
    font-size: 15px;
  }
  .register-success p {
    font-size: 11px;
  }
  .register-logo h2 {
    font-size: 18px;
  }
  .section-title {
    font-size: 28px !important;
  }
  .about-logo-ring {
    width: 180px;
    height: 180px;
  }
  .about-logo-big {
    font-size: 70px;
  }
  #page-about {
    padding: 40px 20px;
  }
  .footer-col h4 {
    margin-top: 8px;
  }
  .admin-color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services-arena.arena-mobile {
  position: static;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  box-sizing: border-box;
}
.service-chip.chip-static {
  position: static;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  cursor: default;
}
.service-chip.chip-static .chip-desc-mobile {
  display: block !important;
  margin-top: 6px;
}
@media (max-width: 420px) {
  .services-arena.arena-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .services-arena.arena-mobile .chip-icon {
    font-size: 22px;
  }
  .services-arena.arena-mobile .chip-title {
    font-size: 12px;
  }
  .services-arena.arena-mobile .chip-desc-mobile {
    font-size: 10px;
  }
}
.site-banner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
}
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.admin-users-table {
  min-width: 480px;
}
@media (max-width: 900px) {
  button,
  .btn-primary,
  .btn-secondary,
  .btn-login,
  .btn-logout,
  .admin-save-btn,
  .admin-danger-btn {
    min-height: 44px;
  }
  .admin-tab-btn {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}
.fade-in {
  animation: fadeIn 0.6s ease both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}
.btn-login {
  background: transparent;
  border: 2px solid var(--sky);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.btn-logout {
  background: linear-gradient(135deg, var(--accent), #cc4a1f);
  border: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.auth-hidden {
  display: none !important;
}
#page-login {
  padding: 60px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
}
#page-login.active {
  display: flex;
}
#page-login .register-card {
  max-width: 420px;
}
.admin-link-row {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #88aacc;
  font-family: "Exo 2", sans-serif;
}
#page-admin {
  background: #001427;
  min-height: 100vh;
  padding: 90px 20px 60px;
}
.admin-shell {
  max-width: 1100px;
  margin: 0 auto;
}
.admin-title {
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  margin-bottom: 6px;
}
.admin-sub {
  color: var(--sky3);
  font-size: 13px;
  margin-bottom: 24px;
  font-family: "Exo 2", sans-serif;
}
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.admin-tab-btn {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid var(--sky);
  color: var(--sky3);
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  position: relative;
}
.admin-tab-btn.active {
  background: var(--sky);
  color: #001427;
}
.admin-tab-btn.has-unread::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3355;
  box-shadow: 0 0 0 2px rgba(0, 20, 40, 0.9), 0 0 8px #ff3355;
}
.admin-msg-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3355;
  box-shadow: 0 0 6px #ff3355;
  margin-right: 8px;
  vertical-align: middle;
}
.admin-panel-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  display: none;
}
.admin-panel-box.active {
  display: block;
}
.admin-panel-box h3 {
  color: var(--white);
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
}
.admin-field {
  margin-bottom: 14px;
}
.admin-field label {
  display: block;
  color: #aaccee;
  font-size: 12.5px;
  margin-bottom: 5px;
  font-family: "Exo 2", sans-serif;
}
.admin-field input[type="text"],
.admin-field input[type="password"],
.admin-field input[type="email"],
.admin-field input[type="url"],
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: rgba(0, 20, 40, 0.6);
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
}
.admin-field input[type="color"] {
  width: 60px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: transparent;
  cursor: pointer;
}
.admin-field textarea {
  min-height: 90px;
  resize: vertical;
}
.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.admin-checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--sky);
}
.admin-checkbox-row label {
  color: #aaccee;
  font-size: 13px;
  font-family: "Exo 2", sans-serif;
}
.admin-save-btn {
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Exo 2", sans-serif;
  margin-top: 6px;
}
.admin-danger-btn {
  background: linear-gradient(135deg, #cc3322, #991a10);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Exo 2", sans-serif;
  margin-top: 6px;
}
.admin-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.admin-color-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-users-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  color: #cde;
}
.admin-users-table th,
.admin-users-table td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}
.admin-user-del {
  color: #ff6b6b;
  cursor: pointer;
  font-weight: 700;
}
.admin-log-line {
  color: #7fa;
  font-size: 12px;
  font-family: "Exo 2", sans-serif;
  margin-top: 10px;
}
.admin-back-home {
  color: var(--sky3);
  cursor: pointer;
  font-size: 13px;
  font-family: "Exo 2", sans-serif;
  display: inline-block;
  margin-bottom: 16px;
}
.site-banner {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  color: #221100;
  text-align: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  position: relative;
  z-index: 9998;
  display: none;
}
.site-banner.show {
  display: block;
}
#maintenance-screen {
  position: fixed;
  inset: 0;
  background: #001427;
  z-index: 99999999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  padding: 20px;
}
#maintenance-screen.show {
  display: flex;
}
#page-blur-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 12, 26, 0.28);
  pointer-events: none;
}
.inline-edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  vertical-align: middle;
  background: rgba(0, 191, 255, 0.85);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 191, 255, 0.5);
  z-index: 50;
}
.inline-edit-btn:hover {
  background: var(--sky2);
}
[contenteditable="true"] {
  outline: 2px dashed var(--sky2) !important;
  outline-offset: 3px;
  background: rgba(0, 191, 255, 0.06);
  border-radius: 4px;
}
#admin-chat-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 18, 0.75);
  z-index: 999999999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#admin-chat-modal.show {
  display: flex;
}
#admin-chat-box {
  width: 100%;
  max-width: 480px;
  height: 82vh;
  max-height: 640px;
  min-height: 0;
  background: #0b1626;
  border-radius: 16px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#admin-chat-header {
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  color: #fff;
  padding: 14px 16px;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Exo 2", sans-serif;
  flex-shrink: 0;
}
#admin-chat-header button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
#admin-chat-messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #08111f;
}
@media (max-width: 600px) {
  #admin-chat-modal {
    padding: 0;
  }
  #admin-chat-box {
    max-width: none;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    border: none;
  }
}
#my-chat-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a1626;
  z-index: 999999999;
  padding: 0;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.32s ease;
  overscroll-behavior: contain;
}
#my-chat-modal.show {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
#my-chat-box {
  width: 100%;
  max-width: 600px;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  max-height: none;
  min-height: 0;
  background: #0b1626;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}
body.chat-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
@media (min-width: 701px) {
  #my-chat-modal {
    background: rgba(0, 8, 18, 0.82);
    align-items: center;
  }
  #my-chat-box {
    height: 88vh;
    max-height: 760px;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 20px 80px rgba(0, 191, 255, 0.25);
  }
}
#my-chat-header {
  background: linear-gradient(135deg, #003366 0%, var(--sky) 100%);
  color: #fff;
  padding: 14px 16px;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Exo 2", sans-serif;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
#my-chat-header .my-chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
#my-chat-header .my-chat-hinfo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
#my-chat-header .my-chat-hname {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#my-chat-header .my-chat-hstatus {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
#my-chat-header .my-chat-hstatus .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
  flex-shrink: 0;
}
#my-chat-close-btn {
  background: rgba(255, 255, 255, 0.16);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
#my-chat-close-btn:hover,
#my-chat-close-btn:active {
  background: rgba(255, 255, 255, 0.32);
}
#my-chat-messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #0e1b2e;
  background-image: radial-gradient(
      circle at 20% 10%,
      rgba(0, 191, 255, 0.05) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(0, 191, 255, 0.05) 0%,
      transparent 45%
    );
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 191, 255, 0.4) transparent;
}
#my-chat-messages::-webkit-scrollbar {
  width: 6px;
}
#my-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.35);
  border-radius: 6px;
}
#my-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: #0b1626;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  flex-shrink: 0;
  min-height: 62px;
}
#my-chat-input-row input[type="text"] {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(0, 191, 255, 0.25);
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 16px;
  font-family: "Exo 2", sans-serif;
}
#my-chat-input-row input[type="text"]:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.1);
}
#my-chat-input-row button {
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.4);
}
#my-chat-input-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chat-bubble {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 12px;
  font-family: "Exo 2", sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  word-break: break-word;
}
.chat-bubble.from-user {
  align-self: flex-start;
  background: #1c2b40;
  color: #dce8f5;
  border-bottom-left-radius: 3px;
}
.chat-bubble.from-admin {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  color: #fff;
  border-bottom-right-radius: 3px;
}
.chat-bubble img,
.chat-bubble video {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 6px;
  display: block;
}
.chat-bubble .chat-time {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 4px;
}
#admin-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: #0b1626;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  flex-shrink: 0;
}
#admin-chat-input-row input[type="text"] {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.25);
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 16px;
  font-family: "Exo 2", sans-serif;
}
#admin-chat-input-row button {
  background: var(--sky);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
}
#admin-chat-input-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#my-chat-launcher {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--sky2);
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  display: none;
  align-items: center;
  gap: 10px;
}
#my-chat-launcher.show {
  display: inline-flex;
}
#navbar,
#stars-canvas,
.hero-circle,
.marquee-track,
.service-chip,
#scroll-top,
#my-chat-box,
#admin-chat-box,
.page.active {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}
.page {
  contain: layout style paint;
  content-visibility: auto;
  contain-intrinsic-size: 1px 3000px;
  isolation: isolate;
}
.feat-card,
.why-card,
.team-card,
.service-chip,
.gallery-item,
.testimonial-card,
#my-chat-modal,
#admin-chat-modal,
.admin-panel-box {
  contain: layout style paint;
  isolation: isolate;
}
html.is-interacting .marquee-track {
  animation-play-state: paused;
}
html.is-interacting .hero-circle {
  animation-play-state: paused;
}

/* ======================================================================
   MOBILE-FIRST RESPONSIVE OVERHAUL  (max-width: 768px)
   Everything below intentionally overrides the desktop rules above it
   using higher specificity / !important so nothing needs to be touched
   further up the file. This is the single source of truth for phones.
   ====================================================================== */
@media (max-width: 768px) {
  /* ---------- 1. GLOBAL RESET & LAYOUT CONSTRAINT ---------- */
  html,
  body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100% !important;
  }
  * {
    box-sizing: border-box !important;
  }
  #navbar,
  .page,
  .hero,
  .featured-services,
  .why-section,
  .stats-strip,
  .marquee-wrap,
  #page-services,
  #page-about,
  #page-gallery,
  #page-contact,
  #page-register,
  #page-login,
  #page-admin,
  .admin-shell,
  .site-footer,
  .feat-grid,
  .why-grid,
  .team-grid,
  .gallery-grid,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .services-arena,
  .register-card,
  .contact-form-wrap,
  .admin-panel-box,
  .form-row,
  .form-group,
  .hero-content,
  .hero-btns,
  .about-visual,
  .about-text {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  #page-services,
  #page-about,
  #page-gallery,
  #page-contact,
  .featured-services,
  .why-section,
  #page-admin {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ---------- 2. GRID / FLEX -> SINGLE COLUMN ---------- */
  .feat-grid,
  .why-grid,
  .team-grid,
  .about-grid,
  .contact-grid,
  .form-row,
  .footer-grid,
  .admin-color-grid,
  .testimonial-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .testimonial-grid {
    margin-top: 24px !important;
  }
  .testimonial-grid .feat-card {
    text-align: center !important;
    margin: 0 auto !important;
  }
  .testimonial-grid .feat-card > div[style*="display:flex"] {
    justify-content: center !important;
  }
  .stats-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px 12px !important;
  }
  .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .hero-btns button,
  .hero-btns a {
    width: 100% !important;
  }

  /* gallery keeps a compact 2-up icon grid by design (single column would
     make each tile absurdly wide/short) — but gap + sizing is normalized */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .services-arena.arena-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Cards inside the new single-column stacks: consistent spacing so
     nothing visually touches or overlaps its neighbour */
  .feat-card,
  .why-card,
  .team-card,
  .contact-item,
  .about-feat-item {
    width: 100% !important;
    margin: 0 !important;
  }

  /* ---------- 3. FIXED BADGES / OVERLAYS: NEVER BLOCK CLICKS ---------- */
  .page {
    padding-bottom: 70px !important;
  }

  #online-badge {
    position: fixed !important;
    z-index: 10 !important;
    pointer-events: none !important;
    transform: scale(0.85) !important;
    transform-origin: bottom left !important;
  }
  #online-badge * {
    pointer-events: none !important;
  }

  #scroll-top {
    z-index: 10 !important;
    width: 44px !important;
    height: 44px !important;
  }

  #wa-float-btn {
    z-index: 10 !important;
  }

  /* everything a user can actually interact with sits above the floaters */
  .feat-card,
  .why-card,
  .team-card,
  .contact-item,
  .gallery-item,
  .service-chip.chip-static,
  .form-group,
  .contact-form-wrap,
  .btn-primary,
  .btn-secondary,
  .btn-login,
  .btn-logout,
  .admin-save-btn,
  .admin-danger-btn,
  .nav-links a {
    position: relative !important;
    z-index: 20 !important;
  }

  /* ---------- TOUCH TARGETS: 48px MINIMUM ---------- */
  button,
  .btn-primary,
  .btn-secondary,
  .btn-login,
  .btn-logout,
  .admin-save-btn,
  .admin-danger-btn,
  .filter-btn,
  .social-btn,
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea,
  .form-group input,
  .form-group select,
  .nav-links a,
  .hamburger,
  #scroll-top,
  .admin-tab-btn {
    min-height: 48px !important;
  }
  .form-group textarea {
    min-height: 110px !important;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  } /* stops iOS auto-zoom */

  /* ---------- 4. HERO & ARENA: FLUID SCALING ---------- */
  .hero {
    min-height: auto !important;
    padding: 48px 0 32px !important;
  }
  .hero-content {
    padding: 20px 16px !important;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 42px) !important;
  }
  .hero-subtitle {
    font-size: 15px !important;
  }
  .about-logo-ring,
  .about-logo-big,
  .logo-img-wrap,
  img,
  svg,
  canvas {
    max-width: 100% !important;
    height: auto !important;
  }
  .about-logo-ring {
    width: min(70vw, 220px) !important;
    height: min(70vw, 220px) !important;
  }
  .about-logo-big {
    width: min(64vw, 200px) !important;
    height: min(64vw, 200px) !important;
    font-size: min(24vw, 84px) !important;
  }
  .services-arena {
    min-height: 0 !important;
  }
  .service-chip {
    max-width: 100% !important;
  }

  /* Admin color/customizer previews & swatches */
  .admin-color-item,
  .admin-field input[type="color"] {
    max-width: 100% !important;
  }
  .admin-color-grid {
    grid-template-columns: 1fr !important;
  }
  .admin-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
  }

  /* ---------- MISC OVERLAP CLEANUP FROM QA SCREENSHOTS ---------- */
  .gallery-item {
    aspect-ratio: 4/3 !important;
  }
  .gallery-item-bg {
    font-size: 30px !important;
    align-items: flex-start !important;
    padding-top: 14px !important;
  }
  .gallery-overlay {
    align-items: flex-end !important;
    padding: 8px 10px !important;
    background: linear-gradient(
      to top,
      rgba(0, 30, 60, 0.92) 0%,
      rgba(0, 30, 60, 0.35) 55%,
      transparent 85%
    ) !important;
  }
  .gallery-overlay-text {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  /* Keep Business Hours box clear of the fixed online-badge corner */
  .business-hours-box {
    margin-bottom: 64px !important;
  }
}

@media (max-width: 480px) {
  .feat-grid,
  .why-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid,
  .services-arena.arena-mobile {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-title {
    font-size: clamp(24px, 9vw, 32px) !important;
  }
  .page {
    padding-bottom: 70px !important;
  }
}
/* ==================== END MOBILE OVERHAUL ==================== */

/* ==================== COMPACT MOBILE PASS (non-Services/Gallery sections) ==================== */
/* Tightens spacing/typography ~2x on mobile for hero, stats, featured,
   why-choose-us, about, contact, footer, register/login, reviews.
   .gallery-* / .services-arena / .service-card are intentionally excluded. */
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding: 34px 0 !important;
  }
  .hero-content {
    padding: 18px 16px !important;
  }
  .hero-eyebrow {
    margin-bottom: 8px !important;
  }
  .hero-title {
    margin: 8px 0 !important;
  }
  .hero-subtitle {
    margin: 10px 0 18px !important;
  }
  .featured-services,
  .why-section,
  #page-about,
  #page-contact,
  #page-register,
  #page-login {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .section-header,
  #page-services > div:first-child,
  #page-gallery > div:first-child {
    margin-bottom: 20px !important;
  }
  .section-title {
    font-size: clamp(20px, 6vw, 26px) !important;
    margin-bottom: 8px !important;
  }
  .section-desc {
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }
  .feat-card,
  .why-card {
    padding: 16px !important;
  }
  .feat-icon {
    font-size: 26px !important;
    margin-bottom: 8px !important;
  }
  .feat-title,
  .why-card h3 {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  .feat-desc,
  .why-card p {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
  .testimonial-grid .feat-card {
    padding: 14px !important;
  }
  .testimonial-grid .feat-card > div:first-child {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }
  .testimonial-grid .feat-card p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }
  .testimonial-grid .feat-card div[style*="width:40px"] {
    width: 26px !important;
    height: 26px !important;
    font-size: 13px !important;
  }
  .testimonial-grid .feat-card div[style*="font-size:12px"] {
    font-size: 10px !important;
  }
  .testimonial-grid .feat-card div[data-ek^="reviewName"] {
    font-size: 10.5px !important;
  }
  .contact-info {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .contact-info h3 {
    grid-column: 1 / -1 !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  .contact-info .business-hours-box {
    grid-column: 1 / -1 !important;
  }
  .contact-info .contact-item {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
    gap: 8px !important;
    padding: 9px 10px !important;
    margin-bottom: 0 !important;
    align-items: flex-start !important;
  }
  .contact-info .contact-icon {
    font-size: 13px !important;
    min-width: 0 !important;
  }
  .contact-info .contact-label {
    font-size: 8.5px !important;
    margin-bottom: 2px !important;
  }
  .contact-info .contact-val {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  .business-hours-box {
    padding: 12px !important;
  }
  .about-visual,
  .about-text {
    padding: 14px !important;
  }
  .contact-form-wrap,
  .register-card {
    padding: 18px !important;
  }
  .form-group {
    margin-bottom: 8px !important;
  }
  .form-group label {
    font-size: 10.5px !important;
    margin-bottom: 3px !important;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 7px 10px !important;
    font-size: 12.5px !important;
  }
  .contact-form-wrap h3 {
    font-size: 15px !important;
    margin-bottom: 12px !important;
  }
  .contact-form-wrap button.btn-primary {
    padding: 10px !important;
    font-size: 12.5px !important;
  }
  .site-footer {
    padding: 30px 16px 16px !important;
  }
  .footer-grid {
    gap: 20px !important;
  }
  .footer-brand p {
    font-size: 12.5px !important;
  }
  .footer-col h4 {
    margin-bottom: 8px !important;
    font-size: 13px !important;
  }
  .footer-col ul li {
    margin-bottom: 6px !important;
    font-size: 12.5px !important;
  }
  .footer-bottom {
    padding-top: 14px !important;
    font-size: 11px !important;
  }
}
/* ==================== END COMPACT MOBILE PASS ==================== */

/* ==================== MOBILE ANTI-OVERLAP SAFETY PASS ==================== */
@media (max-width: 768px) {
  body, p, span, div, a, h1, h2, h3, h4, h5, h6, li, td, th, label, input, textarea, select, button {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .contact-val, .contact-card, .footer-col, .footer-brand, .footer-bottom,
  [data-ek], .card, .feat-card, .why-card, .review-card {
    max-width: 100% !important;
  }
  .footer-grid, .contact-grid, .grid, [class*=grid] {
    row-gap: 16px !important;
  }
  h1, h2, h3 { line-height: 1.3 !important; }
  p, li, span { line-height: 1.5 !important; }
}
/* ==================== END MOBILE ANTI-OVERLAP SAFETY PASS ==================== */

/* ==================== GPU / RENDERING PERFORMANCE PASS ==================== */
.container, .page, main, #app, .wrap, .site-wrap, header, .header, footer, .footer,
.modal, .chat-window, .card, .feat-card, .why-card {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.card, .feat-card, .why-card, .review-card, .modal-content {
  content-visibility: auto;
  contain: layout style paint;
}
.scroll-area, .chat-messages, [class*=scroll] {
  isolation: isolate;
}
/* ==================== END GPU / RENDERING PERFORMANCE PASS ==================== */
