* {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: #ffffff;
}

/* Updated cookie popup with modern dark theme */
.cookie-popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-width: 500px;
  width: 90%;
  transition: bottom 0.5s ease;
  border: 1px solid #2a2a2a;
}

.cookie-popup.show {
  bottom: 20px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Added smooth fade-in animations */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Modern header with backdrop blur */
header {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(255, 1, 200, 0.5);
  background: rgba(114, 19, 107, 0.9) !important;
}

input.border-red-500,
textarea.border-red-500 {
  border-color: #ef4444 !important;
}

input.border-green-500,
textarea.border-green-500 {
  border-color: #10b981 !important;
}

/* Added modern card hover effects */
.service-card,
.team-card {
  transition: all 0.3s ease;
}

.service-card:hover,
.team-card:hover {
  transform: translateY(-5px);
}

/* Added grid dot pattern for modern tech aesthetic */
.grid-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Added subtle glow effects for interactive elements */
.glow-on-hover {
  transition: box-shadow 0.3s ease;
}

.glow-on-hover:hover {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: -300px;
  }

  .cookie-popup.show {
    bottom: 10px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

/* Added smooth transitions for all interactive elements */
button,
a {
  transition: all 0.2s ease;
}
