/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Modern dark blue theme */
  --background: #1a1b2e;
  --foreground: #f8f9fa;
  --card: #22243a;
  --card-foreground: #f8f9fa;
  --primary: #6366f1;
  --primary-foreground: #f8f9fa;
  --secondary: #2d2f4a;
  --muted: #3d3f5a;
  --muted-foreground: #9ca3af;
  --accent: #22d3ee;
  --accent-foreground: #1a1b2e;
  --border: #3d3f5a;
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 700;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #60a5fa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-x 15s ease infinite;
}

/* Animations */
@keyframes gradient-x {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(20px);
  }
  75% {
    transform: translateY(20px) translateX(10px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 20s ease-in-out infinite;
}
.animate-float-delayed {
  animation: float 25s ease-in-out infinite;
  animation-delay: -5s;
}
.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}
.animate-shimmer {
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}
.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(26, 27, 46, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 63, 90, 0.5);
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s;
}

.logo:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 249, 250, 0.7);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6, var(--primary));
  background-size: 200% auto;
  animation: gradient-x 15s ease infinite;
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--foreground);
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(56, 189, 248, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(6, 182, 212, 0.1) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: gradient-x 20s ease infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-orb-1 {
  top: 5rem;
  right: 10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.1), transparent);
  animation: float 20s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: 5rem;
  left: 5%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(34, 211, 238, 0.15), rgba(6, 182, 212, 0.1), transparent);
  animation: float 25s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 48rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: slide-up 0.6s ease-out forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: slide-up 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  animation: slide-up 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: slide-up 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--card), rgba(99, 102, 241, 0.05), var(--card));
}

.stats-border-top,
.stats-border-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.stats-border-top {
  top: 0;
}
.stats-border-bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  cursor: default;
  transition: transform 0.5s;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.3);
  background: rgba(34, 36, 58, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.stat-item:hover .stat-icon {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.stat-item:hover .stat-icon svg {
  stroke: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.stat-item:hover .stat-label {
  color: var(--foreground);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

/* Services Section */
.services-section {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--card);
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.services-section::before {
  top: 0;
}
.services-section::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}

.services-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(225deg, rgba(99, 102, 241, 0.05), rgba(59, 130, 246, 0.03), transparent);
}

.services-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33%;
  height: 50%;
  background: linear-gradient(45deg, rgba(34, 211, 238, 0.05), transparent);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted-foreground);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.5s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(59, 130, 246, 0.05), rgba(34, 211, 238, 0.05));
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-bg {
  opacity: 1;
}

.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--secondary);
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), #3b82f6, var(--accent));
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--foreground);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.5s;
}

.service-card:hover .service-icon svg {
  stroke: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: auto;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-link svg {
  transform: translateX(8px);
}

/* Why Choose Us Section */
.why-us {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--card), var(--background), var(--card));
}

.why-us-orb {
  position: absolute;
  top: 25%;
  right: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(225deg, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.why-us-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits-list {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: default;
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s;
}

.benefit-item:hover svg {
  transform: scale(1.1);
}

.benefit-item span {
  color: var(--foreground);
  transition: color 0.3s;
}

.benefit-item:hover span {
  color: var(--primary);
}

.image-wrapper {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
  border-radius: 1.5rem;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.7s;
}

.image-wrapper:hover .image-glow {
  opacity: 1;
}

.image-container {
  aspect-ratio: 1;
  border-radius: 1rem;
  background: var(--muted);
  overflow: hidden;
  transition: transform 0.5s;
}

.image-wrapper:hover .image-container {
  transform: scale(1.02);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(34, 36, 58, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 200px;
  transition: transform 0.5s;
}

.image-wrapper:hover .image-badge {
  transform: translateY(-8px);
}

.image-badge-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #60a5fa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.image-badge-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0 8rem;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #2563eb, var(--accent));
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }
}

.cta-card:hover {
  transform: scale(1.01);
}

.cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto;
}

.cta .btn {
  margin-top: 2rem;
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--card), var(--background));
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer-orb-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.footer-orb-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 250px;
  height: 250px;
  background: linear-gradient(315deg, rgba(34, 211, 238, 0.05), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.footer-content {
  padding: 4rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: rgba(248, 249, 250, 0.7);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact span {
  color: rgba(248, 249, 250, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(248, 249, 250, 0.7);
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.footer-bottom p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn-whatsapp {
  background: #25d366;
  color: white;
}

.floating-btn-call {
  background: var(--primary);
  color: white;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  cursor: default;
  transition: transform 0.3s;
}

.contact-method:hover {
  transform: translateX(8px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-method:hover .contact-method-icon {
  background: linear-gradient(135deg, var(--primary), #3b82f6, var(--accent));
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.contact-method:hover .contact-method-icon svg {
  stroke: white;
}

.contact-method h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.contact-method:hover h3 {
  color: var(--primary);
}

.contact-method p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.why-work-card {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.5s;
}

.why-work-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.why-work-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-work-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-work-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  cursor: default;
  transition: transform 0.3s;
}

.why-work-card li:hover {
  transform: translateX(4px);
}

.why-work-card li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.why-work-card li:hover span {
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.1));
  border-radius: 1.5rem;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s;
}

.contact-form-wrapper:hover .contact-form-glow {
  opacity: 1;
}

.contact-form-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form-wrapper:hover .contact-form-card {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

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

/* Service Detail Page */
.service-detail-hero {
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .service-detail-hero {
    padding: 10rem 0 5rem;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.back-link:hover {
  color: var(--primary);
}

.back-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.back-link:hover svg {
  transform: translateX(-4px);
}

.service-detail-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), #3b82f6, var(--accent));
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
  transition: all 0.5s;
}

.service-detail-icon:hover {
  transform: scale(1.1) rotate(3deg);
}

.service-detail-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.service-detail-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-detail-content > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.features-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.5s;
}

.features-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
}

.features-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: default;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s;
}

.feature-item:hover svg {
  transform: scale(1.1);
}

.feature-item span {
  color: var(--foreground);
  transition: color 0.3s;
}

.feature-item:hover span {
  color: var(--primary);
}

/* Process Section */
.process-section {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--card), var(--background), var(--card));
}

.process-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.05), rgba(59, 130, 246, 0.05), rgba(34, 211, 238, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-item {
  text-align: center;
  cursor: default;
  transition: transform 0.3s;
}

.process-item:hover {
  transform: translateY(-8px);
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(96, 165, 250, 0.3), rgba(34, 211, 238, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.process-item:hover .process-number {
  background: linear-gradient(135deg, var(--primary), #60a5fa, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.process-item h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.process-item:hover h3 {
  color: var(--primary);
}

.process-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: rgba(26, 27, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

@media (max-width: 767px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(248, 249, 250, 0.8);
  transition: all 0.3s;
  padding-left: 0;
  border-left: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  padding-left: 0.75rem;
  border-left-color: var(--primary);
}

/* Services Page Hero */
.services-hero {
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 10rem 0 5rem;
  }
}

/* Utilities */
.text-muted {
  color: var(--muted-foreground);
}
.text-primary {
  color: var(--primary);
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.relative {
  position: relative;
}
