/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #000000;
  --secondary-black: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #404040;
  --light-gray: #8a8a8a;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --accent-white: #f0f0f0;

  /* Removed blue and orange colors for cleaner glassmorphism theme */

  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --gradient-primary: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  --gradient-hover: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  --gradient-enhanced: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Neue Montreal", "Inter", sans-serif;
  background: var(--primary-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* Glass Effect */
.glass-effect {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px;
  box-shadow: var(--shadow-glass) !important;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-text,
.loader-logo {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.loader-logo img {
  width: 200px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.loader-bar {
  width: 300px;
  height: 4px;
  background: var(--dark-gray);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--white), var(--light-gray));
  border-radius: 2px;
  animation: loadProgress 2s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* Navigation - Oval Glass Dock */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  min-width: 1000px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-logo img {
  width: 120px;
  height: auto;
  max-height: 30px;
  filter: none;
  object-fit: contain;
}

/* Remove logo text styling since we're using image only */
.nav-logo .logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    top: 15px;
    border-radius: 25px;
    padding: 8px 16px;
    min-width: 90%;
    max-width: 95%;
  }

  .nav-container {
    gap: 1rem;
  }

  .nav-logo img {
    width: 100px;
    max-height: 35px;
  }

  .nav-logo .logo-text {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    width: calc(100% - 40px);
    left: 20px;
    text-align: center;
    padding: 1.5rem 0;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  .nav-link {
    padding: 15px 0;
    margin: 0;
    border-radius: 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for navbar */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    var(--secondary-black) 0%,
    var(--primary-black) 70%
  );
}

/* Hero illustration styling */
.hero-illustration {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  opacity: 0.1;
  z-index: 1;
}

.hero-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Show raw SVG without color modification */
}

/* Contact illustration styling */
.contact-illustration {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 250px;
  opacity: 0.1;
  z-index: 1;
}

.contact-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Show raw SVG without color modification */
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Remove large bubble shapes - keep only particles/stars */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatCenter 12s ease-in-out infinite;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: starFloat 20s linear infinite;
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  animation: starTwinkle 3s ease-in-out infinite;
}

.star::before {
  content: "★";
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.particle-1 {
  top: 10%;
  left: 5%;
  animation: floatLeft 25s linear infinite;
  animation-delay: 0s;
}
.particle-2 {
  top: 30%;
  left: 15%;
  animation: starFloat 18s linear infinite;
  animation-delay: 2s;
}
.particle-3 {
  top: 50%;
  left: 25%;
  animation: floatCenter 22s linear infinite;
  animation-delay: 4s;
}
.particle-4 {
  top: 70%;
  left: 35%;
  animation: floatRight 20s linear infinite;
  animation-delay: 6s;
}
.particle-5 {
  top: 20%;
  right: 5%;
  animation: floatRight 28s linear infinite;
  animation-delay: 1s;
}
.particle-6 {
  top: 40%;
  right: 15%;
  animation: floatCenter 16s linear infinite;
  animation-delay: 3s;
}
.particle-7 {
  top: 60%;
  right: 25%;
  animation: starFloat 24s linear infinite;
  animation-delay: 5s;
}
.particle-8 {
  top: 80%;
  right: 35%;
  animation: floatLeft 19s linear infinite;
  animation-delay: 7s;
}

.star-1 {
  top: 15%;
  left: 10%;
  animation: starTwinkle 4s ease-in-out infinite;
  animation-delay: 0s;
}
.star-2 {
  top: 25%;
  left: 80%;
  animation: starTwinkle 3.5s ease-in-out infinite;
  animation-delay: 1s;
}
.star-3 {
  top: 45%;
  left: 60%;
  animation: starTwinkle 2.8s ease-in-out infinite;
  animation-delay: 2s;
}
.star-4 {
  top: 65%;
  left: 30%;
  animation: starTwinkle 3.2s ease-in-out infinite;
  animation-delay: 3s;
}
.star-5 {
  top: 75%;
  left: 85%;
  animation: starTwinkle 2.5s ease-in-out infinite;
  animation-delay: 4s;
}
.star-6 {
  top: 35%;
  left: 45%;
  animation: starTwinkle 3.8s ease-in-out infinite;
  animation-delay: 5s;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

.shape-5 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 50%;
  animation-delay: 3s;
  animation: floatReverse 8s ease-in-out infinite;
}

.shape-6 {
  width: 90px;
  height: 90px;
  bottom: 40%;
  right: 40%;
  animation-delay: 5s;
  animation: floatSlow 10s ease-in-out infinite;
}

.shape-7 {
  width: 70px;
  height: 70px;
  top: 80%;
  left: 70%;
  animation-delay: 1.5s;
  animation: floatFast 4s ease-in-out infinite;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle 15s linear infinite;
}

.particle-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.particle-2 {
  top: 30%;
  left: 15%;
  animation-delay: 2s;
}
.particle-3 {
  top: 50%;
  left: 25%;
  animation-delay: 4s;
}
.particle-4 {
  top: 70%;
  left: 35%;
  animation-delay: 6s;
}
.particle-5 {
  top: 20%;
  right: 5%;
  animation-delay: 1s;
}
.particle-6 {
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}
.particle-7 {
  top: 60%;
  right: 25%;
  animation-delay: 5s;
}
.particle-8 {
  top: 80%;
  right: 35%;
  animation-delay: 7s;
}

@keyframes starFloat {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translateY(75vh) translateX(20px) rotate(90deg);
  }
  50% {
    transform: translateY(50vh) translateX(-15px) rotate(180deg);
  }
  75% {
    transform: translateY(25vh) translateX(10px) rotate(270deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(-5px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes floatLeft {
  0% {
    transform: translateY(100vh) translateX(50px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translateY(75vh) translateX(-30px) rotate(120deg);
  }
  50% {
    transform: translateY(50vh) translateX(40px) rotate(240deg);
  }
  75% {
    transform: translateY(25vh) translateX(-20px) rotate(300deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(30px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatRight {
  0% {
    transform: translateY(100vh) translateX(-40px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    transform: translateY(70vh) translateX(25px) rotate(100deg);
  }
  60% {
    transform: translateY(40vh) translateX(-35px) rotate(200deg);
  }
  80% {
    transform: translateY(20vh) translateX(15px) rotate(280deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatCenter {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    transform: translateY(80vh) translateX(-15px) rotate(72deg);
  }
  40% {
    transform: translateY(60vh) translateX(25px) rotate(144deg);
  }
  60% {
    transform: translateY(40vh) translateX(-10px) rotate(216deg);
  }
  80% {
    transform: translateY(20vh) translateX(20px) rotate(288deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(0px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatReverse {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(15px) rotate(90deg);
  }
  50% {
    transform: translateY(10px) translateX(-25px) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) translateX(20px) rotate(270deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) translateX(-15px) rotate(240deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
  }
}

@keyframes floatFast {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) translateX(20px) rotate(180deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
  }
}

@keyframes particle {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    transform: translateY(75vh) translateX(15px) rotate(90deg);
  }
  50% {
    transform: translateY(50vh) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(25vh) translateX(8px) rotate(270deg);
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) translateX(-5px) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced star and dot animations */
.particle-9 {
  top: 15%;
  left: 75%;
  animation: floatLeft 30s linear infinite;
  animation-delay: 8s;
}
.particle-10 {
  top: 85%;
  right: 25%;
  animation: floatRight 35s linear infinite;
  animation-delay: 9s;
}

.star-7 {
  top: 55%;
  left: 15%;
  animation: starTwinkle 4.2s ease-in-out infinite;
  animation-delay: 6s;
}
.star-8 {
  top: 25%;
  right: 45%;
  animation: starTwinkle 2.3s ease-in-out infinite;
  animation-delay: 7s;
}

/* Floating dots - smaller and more subtle */
.floating-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: dotFloat 25s linear infinite;
}

.dot-1 {
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}
.dot-2 {
  top: 28%;
  left: 22%;
  animation-delay: 2.5s;
}
.dot-3 {
  top: 45%;
  left: 18%;
  animation-delay: 5s;
}
.dot-4 {
  top: 62%;
  left: 12%;
  animation-delay: 7.5s;
}
.dot-5 {
  top: 78%;
  left: 28%;
  animation-delay: 10s;
}
.dot-6 {
  top: 18%;
  right: 15%;
  animation-delay: 1.5s;
}
.dot-7 {
  top: 38%;
  right: 8%;
  animation-delay: 4s;
}
.dot-8 {
  top: 58%;
  right: 22%;
  animation-delay: 6.5s;
}
.dot-9 {
  top: 72%;
  right: 18%;
  animation-delay: 9s;
}
.dot-10 {
  top: 88%;
  right: 12%;
  animation-delay: 11.5s;
}

@keyframes dotFloat {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    transform: translateY(75vh) translateX(8px) rotate(90deg);
  }
  50% {
    transform: translateY(50vh) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(25vh) translateX(3px) rotate(270deg);
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) translateX(-2px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroTitleAnimation 1.5s ease 2.5s forwards;
}

.title-line {
  display: block;
  transform: translateY(100px);
  animation: slideUpLine 1s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 2.5s;
}

.title-line:nth-child(2) {
  animation-delay: 2.7s;
}

.title-line:nth-child(3) {
  animation-delay: 2.9s;
}

.highlight {
  background: linear-gradient(45deg, var(--white), var(--light-gray));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes heroTitleAnimation {
  to {
    opacity: 1;
  }
}

@keyframes slideUpLine {
  to {
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 3.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 3.5s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-black);
  border-color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInUp 1s ease 4s forwards;
}

.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid var(--glass-border);
  border-radius: 25px;
  position: relative;
}

.scroll-dot::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Page Hero (for Services and Contact pages) */
.page-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for navbar */
}

.page-hero-content {
  text-align: center;
  z-index: 2;
  max-width: 600px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

/* Services Preview Section */
.services-preview {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpCard 0.8s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elevated);
  background: var(--gradient-hover);
}

@keyframes slideUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 1.5;
}

.service-svg {
  width: 40px;
  height: 40px;
  /* Show raw SVGs without color modification */
  opacity: 0.9;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--white);
}

.service-card:hover .service-icon svg {
  stroke: var(--primary-black);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Technology Showcase */
.tech-showcase {
  padding: 100px 0;
  background: var(--secondary-black);
  position: relative;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.tech-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.tech-features {
  list-style: none;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.tech-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.tech-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.tech-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.tech-device {
  width: 300px;
  height: 200px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-glass);
}

.device-screen {
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  border-radius: 10px;
  padding: 15px;
  position: relative;
}

.detection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
}

.detection-point {
  border-radius: 50%;
  background: var(--dark-gray);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.detection-point.active {
  background: var(--white);
  opacity: 1;
  animation: alertPulse 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes alertPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--dark-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Detail (Services Page) */
.services-detail {
  padding: 100px 0;
}

.service-detail-item {
  margin-bottom: 120px;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.service-detail-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.service-features li {
  padding: 0.7rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.tech-badge {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

/* Service Detail Visuals */
.browser-mockup {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.browser-header {
  padding: 15px;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 20px 20px 0 0;
}

.browser-buttons {
  display: flex;
  gap: 8px;
}

.browser-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-button.red {
  background: #ff5f57;
}
.browser-button.yellow {
  background: #ffbd2e;
}
.browser-button.green {
  background: #28ca42;
}

.browser-content {
  padding: 20px;
  background: var(--primary-black);
  border-radius: 0 0 20px 20px;
  min-height: 200px;
}

.code-lines {
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.code-line {
  margin-bottom: 8px;
  animation: typewriter 0.5s ease forwards;
  opacity: 0;
}

.code-line:nth-child(1) {
  animation-delay: 1s;
}
.code-line:nth-child(2) {
  animation-delay: 1.3s;
}

@keyframes typewriter {
  to {
    opacity: 1;
  }
}

.code-keyword {
  color: #ff79c6;
}
.code-variable {
  color: #50fa7b;
}
.code-operator {
  color: #ff79c6;
}
.code-function {
  color: #8be9fd;
}
.code-string {
  color: #f1fa8c;
}
.code-bracket {
  color: #f8f8f2;
}
.code-dot {
  color: #ff79c6;
}

/* Enhanced Browser Interface */
.browser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.02);
}

.browser-url {
  flex: 1;
  margin-left: 20px;
}

.url-bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.web-interface {
  height: 100%;
  color: var(--white);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.header-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.header-nav {
  display: flex;
  gap: 16px;
}

.nav-item {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.card-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.card-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.progress-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.7));
  border-radius: 3px;
  animation: progressLoad 2s ease forwards;
}

@keyframes progressLoad {
  from {
    width: 0%;
  }
}

.phone-mockup {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.phone-screen {
  width: 250px;
  height: 400px;
  padding: 20px;
  border-radius: 30px;
}

.app-interface {
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  border-radius: 20px;
  padding: 15px;
}

.app-header {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-gray);
  margin-bottom: 20px;
}

.status-bar {
  width: 60px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  margin: 0 auto 10px;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-card {
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  animation: slideInCard 0.8s ease forwards;
  opacity: 0;
}

.app-card:nth-child(1) {
  animation-delay: 1.2s;
}
.app-card:nth-child(2) {
  animation-delay: 1.4s;
}
.app-card:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes slideInCard {
  to {
    opacity: 1;
    transform: translateX(0);
  }
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.ai-vision-demo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.camera-feed {
  aspect-ratio: 16/9;
  background: var(--primary-black);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.detection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.detection-box {
  position: absolute;
  border: 2px solid var(--white);
  border-radius: 5px;
  animation: detectPulse 2s infinite;
}

.detection-box.box-1 {
  top: 30%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.detection-box.box-2 {
  top: 50%;
  right: 25%;
  width: 60px;
  height: 60px;
  animation-delay: 0.5s;
  border-color: #ff4444;
}

.detection-label {
  position: absolute;
  top: -25px;
  left: 0;
  background: var(--white);
  color: var(--primary-black);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.detection-box.box-2 .detection-label {
  background: #ff4444;
  color: var(--white);
}

@keyframes detectPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.camera-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.camera-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
}

.status-dot.active {
  background: #4ade80;
  animation: pulse 2s infinite;
}

.timestamp {
  color: var(--text-muted);
}

.support-dashboard {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-header h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.support-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
}

.metric {
  padding: 15px 10px;
  background: var(--primary-black);
  border-radius: 10px;
  border: 1px solid var(--dark-gray);
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Marketing Demo */
.marketing-demo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.marketing-dashboard {
  width: 100%;
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.marketing-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--primary-black);
  border-radius: 10px;
  border: 1px solid var(--dark-gray);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateX(5px);
  border-color: var(--white);
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo-icon,
.whatsapp-icon,
.design-icon {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.metric-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.metric-info {
  flex: 1;
}

.metric-card .metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.metric-card .metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.campaign-preview {
  margin-top: 15px;
}

.poster-mockup {
  height: 120px;
  background: var(--gradient-enhanced);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.poster-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(0, 0, 0, 0.3)
  );
}

.poster-content {
  text-align: center;
  z-index: 2;
}

.poster-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.poster-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--secondary-black);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--white);
  color: var(--primary-black);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  padding: 3rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--white);
  background: var(--glass-bg);
}

.form-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.form-input:focus ~ .form-focus-line,
.form-select:focus ~ .form-focus-line,
.form-textarea:focus ~ .form-focus-line {
  width: 100%;
}

.form-select option {
  background: var(--primary-black);
  color: var(--white);
}

.form-submit {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-submit.loading .btn-text {
  opacity: 0;
}

.form-submit.loading .btn-loader {
  opacity: 1;
}

.loader-dots {
  display: flex;
  gap: 4px;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-black);
  animation: dotPulse 1.5s infinite ease-in-out;
}

.loader-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.loader-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 2.5rem;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.contact-method-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-method-info {
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.response-time {
  padding: 1.5rem;
  background: var(--primary-black);
  border-radius: 15px;
  border: 1px solid var(--dark-gray);
}

.response-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.response-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.response-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-black);
}

.response-text h4 {
  margin-bottom: 0.3rem;
  color: var(--white);
}

.response-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* FAQ */
.faq-card {
  padding: 2rem;
}

/* Instagram Link Styling */
.instagram-link {
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  color: var(--white) !important;
  text-shadow: 0 0 10px var(--accent-white);
}

/* New FAQ Section - Full Width */
.faq-section {
  padding: 4rem 0;
  margin-top: 2rem;
}

.faq-full-width {
  padding: 3rem;
  max-width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--white);
}

.faq-list,
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-hover);
}

.faq-question h4 {
  font-weight: 600;
  color: var(--white);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.success-message.show .success-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-black);
  stroke-width: 3;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.success-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.success-close:hover {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  padding: 4rem 3rem;
}

.cta-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

/* Footer */
.footer {
  background: var(--secondary-black);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* Instagram Footer Link */
.instagram-footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-footer-link:hover {
  color: var(--white) !important;
  text-shadow: 0 0 10px var(--accent-white);
}

.instagram-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-gray);
  color: var(--text-muted);
}

/* Clients Page Styles */
.client-stats {
  padding: 80px 0;
  background: var(--secondary-black);
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-highlight-item {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.stat-highlight-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-highlight-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-highlight-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-highlight-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-highlight-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-enhanced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-highlight-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.featured-clients {
  padding: 100px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.client-card {
  padding: 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpCard 0.8s ease forwards;
}

.client-card:nth-child(1) {
  animation-delay: 0.1s;
}
.client-card:nth-child(2) {
  animation-delay: 0.2s;
}
.client-card:nth-child(3) {
  animation-delay: 0.3s;
}
.client-card:nth-child(4) {
  animation-delay: 0.4s;
}
.client-card:nth-child(5) {
  animation-delay: 0.5s;
}
.client-card:nth-child(6) {
  animation-delay: 0.6s;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elevated);
  background: var(--gradient-hover);
}

.client-logo {
  margin-bottom: 1.5rem;
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.logo-placeholder.enhanced {
  background: var(--gradient-enhanced);
  border-color: var(--glass-border);
}

.company-initial {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.client-card:hover .logo-placeholder {
  transform: scale(1.1);
  background: var(--white);
}

.client-card:hover .company-initial {
  color: var(--primary-black);
}

.client-info {
  text-align: center;
}

.client-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.client-industry {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.client-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.client-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: left;
}

.service-tag {
  padding: 0.3rem 0.8rem;
  background: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.client-card:hover .service-tag {
  background: var(--white);
  color: var(--primary-black);
  border-color: var(--white);
}

/* Client Testimonials */
.client-testimonials {
  padding: 100px 0;
  background: var(--secondary-black);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 2rem;
}

.testimonial-card {
  padding: 3rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  transform: translateX(50px);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}

.testimonial-quote {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar.enhanced {
  background: var(--gradient-enhanced);
  border-color: var(--glass-border);
}

.author-initial {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.author-position {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--white);
  color: var(--primary-black);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  display: flex;
  gap: 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Client Success */
.client-success {
  padding: 100px 0;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.success-category {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.success-category:nth-child(1) {
  animation-delay: 0.1s;
}
.success-category:nth-child(2) {
  animation-delay: 0.2s;
}
.success-category:nth-child(3) {
  animation-delay: 0.3s;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-item {
  padding: 1.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.metric-item:hover {
  background: var(--gradient-hover);
  transform: translateY(-5px);
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.metric-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-illustration,
  .contact-illustration {
    display: none;
  }

  .service-svg {
    width: 35px;
    height: 35px;
  }

  .star {
    width: 6px;
    height: 6px;
  }

  .star::before {
    font-size: 6px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .tech-content,
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-full-width {
    padding: 2rem 1rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info-card,
  .faq-card {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .page-hero {
    height: 50vh;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Hide some floating shapes on mobile for better performance */
  .shape-5,
  .shape-6,
  .shape-7,
  .particle-5,
  .particle-6,
  .particle-7,
  .particle-8 {
    display: none;
  }

  /* Improve touch targets */
  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .contact-method {
    padding: 1rem 0;
  }

  /* Better mobile service cards */
  .service-card:hover {
    transform: translateY(-5px);
  }

  /* Mobile-friendly carousel controls */
  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .carousel-indicators {
    gap: 0.8rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .phone-screen {
    width: 200px;
    height: 320px;
  }

  .browser-mockup {
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info-card,
  .faq-card {
    padding: 1.5rem 1rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .btn {
    padding: 14px 20px;
    font-size: 16px;
  }

  /* Ultra small screen adjustments */
  .hero-content {
    padding: 0 10px;
  }

  .container {
    padding: 0 10px;
  }

  .navbar {
    width: calc(100% - 10px);
    top: 5px;
  }

  .nav-container {
    padding: 10px 15px;
  }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large tablet and small desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-gray);
}

/* Selection */
::selection {
  background: var(--white);
  color: var(--primary-black);
}

::-moz-selection {
  background: var(--white);
  color: var(--primary-black);
}

/* Vertical Moving Stars and Dots */
.vertical-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.moving-star,
.moving-dot {
  position: absolute;
  opacity: 0;
  animation: moveUpVertical 8s linear infinite;
}

.moving-star {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.moving-star:nth-child(odd) {
  animation-duration: 10s;
  background: rgba(255, 255, 255, 0.8);
}

.moving-star:nth-child(3n) {
  animation-duration: 12s;
  width: 2px;
  height: 2px;
}

.moving-dot {
  width: 6px;
  height: 6px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.moving-dot:nth-child(even) {
  animation-duration: 9s;
  width: 3px;
  height: 3px;
}

.moving-dot:nth-child(4n) {
  animation-duration: 11s;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 70%
  );
}

@keyframes moveUpVertical {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(var(--drift, 0px));
    opacity: 0;
  }
}

.moving-star:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  --drift: 20px;
}
.moving-star:nth-child(2) {
  left: 15%;
  animation-delay: -1s;
  --drift: -15px;
}
.moving-star:nth-child(3) {
  left: 25%;
  animation-delay: -2s;
  --drift: 10px;
}
.moving-star:nth-child(4) {
  left: 35%;
  animation-delay: -3s;
  --drift: -25px;
}
.moving-star:nth-child(5) {
  left: 45%;
  animation-delay: -4s;
  --drift: 30px;
}
.moving-star:nth-child(6) {
  left: 55%;
  animation-delay: -5s;
  --drift: -10px;
}
.moving-star:nth-child(7) {
  left: 65%;
  animation-delay: -6s;
  --drift: 20px;
}
.moving-star:nth-child(8) {
  left: 75%;
  animation-delay: -7s;
  --drift: -20px;
}
.moving-star:nth-child(9) {
  left: 85%;
  animation-delay: -8s;
  --drift: 15px;
}
.moving-star:nth-child(10) {
  left: 95%;
  animation-delay: -9s;
  --drift: -30px;
}

.moving-dot:nth-child(11) {
  left: 10%;
  animation-delay: -0.5s;
  --drift: -20px;
}
.moving-dot:nth-child(12) {
  left: 20%;
  animation-delay: -1.5s;
  --drift: 25px;
}
.moving-dot:nth-child(13) {
  left: 30%;
  animation-delay: -2.5s;
  --drift: -15px;
}
.moving-dot:nth-child(14) {
  left: 40%;
  animation-delay: -3.5s;
  --drift: 30px;
}
.moving-dot:nth-child(15) {
  left: 50%;
  animation-delay: -4.5s;
  --drift: -25px;
}
.moving-dot:nth-child(16) {
  left: 60%;
  animation-delay: -5.5s;
  --drift: 20px;
}
.moving-dot:nth-child(17) {
  left: 70%;
  animation-delay: -6.5s;
  --drift: -30px;
}
.moving-dot:nth-child(18) {
  left: 80%;
  animation-delay: -7.5s;
  --drift: 25px;
}
.moving-dot:nth-child(19) {
  left: 90%;
  animation-delay: -8.5s;
  --drift: -20px;
}
.moving-dot:nth-child(20) {
  left: 3%;
  animation-delay: -9.5s;
  --drift: 35px;
}

/* Code Typing Animation */
.browser-title {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-left: 1rem;
  font-family: "Courier New", monospace;
}

.code-keyword {
  color: #ff6b6b;
}
.code-variable {
  color: #4ecdc4;
}
.code-function {
  color: #45b7d1;
}
.code-string {
  color: #96ceb4;
}
.code-operator {
  color: #feca57;
}
.code-bracket {
  color: #ffffff;
}
.code-dot {
  color: #ffffff;
}

/* Global Alignment Fixes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Cards Alignment */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 280px;
}

/* Section Headers Alignment */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Content Alignment */
.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Service Detail Content Alignment */
.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile Responsive Alignment */
@media (max-width: 768px) {
  .service-detail-content,
  .service-detail-content.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-content {
    padding: 0 15px;
  }

  .container {
    padding: 0 15px;
  }
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.1);
}

/* Support Dashboard Styling */
.support-dashboard {
  width: 320px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}

.status-dot.active {
  background: #4caf50;
}

.status-indicator span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.support-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--light-gray);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}
