/* Live-server cleanup styles */
/* Hide live-server injected elements */
script[src*="live-server"],
script[src*="browser-sync"] {
  display: none !important;
}

/* Prevent live-server visual issues */
body::after,
body::before {
  content: none !important;
}

/* Override any live-server overlay styles */
[id*="live-server"],
[class*="live-server"],
[id*="browser-sync"],
[class*="browser-sync"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Custom CSS Variables and Base Styles */
/* Responsive Base Styles */
html {
  font-size: 16px;
}

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

/* Container responsive fixes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Grid system fixes */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Spacing utilities */
.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 640px) {
  .sm\:gap-6 {
    gap: 1.5rem;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:gap-12 {
    gap: 3rem;
  }
  .lg\:gap-16 {
    gap: 4rem;
  }
}

/* Text sizing */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 640px) {
  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .xl\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

/* Padding utilities */
.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

@media (min-width: 640px) {
  .sm\:p-4 {
    padding: 1rem;
  }
  .sm\:p-6 {
    padding: 1.5rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:p-10 {
    padding: 2.5rem;
  }
  .lg\:p-16 {
    padding: 4rem;
  }
}

/* Margin utilities */
.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .sm\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .lg\:mb-24 {
    margin-bottom: 6rem;
  }
}

/* Width and Height utilities */
.w-full {
  width: 100%;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

@media (min-width: 640px) {
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:h-12 {
    height: 3rem;
  }
  .sm\:h-16 {
    height: 4rem;
  }
  .sm\:h-20 {
    height: 5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:h-12 {
    height: 3rem;
  }
  .lg\:h-20 {
    height: 5rem;
  }
}

/* Display utilities */
.hidden {
  display: none;
}

.block {
  display: block;
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  .lg\:block {
    display: block;
  }
}

@media (min-width: 1280px) {
  .xl\:flex {
    display: flex;
  }
}

/* Rounded utilities */
.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

/* Background utilities */
.bg-white {
  background-color: rgb(255 255 255);
}

.bg-slate-50 {
  background-color: rgb(248 250 252);
}

.bg-slate-900 {
  background-color: rgb(15 23 42);
}

/* Text color utilities */
.text-white {
  color: rgb(255 255 255);
}

.text-slate-600 {
  color: rgb(71 85 105);
}

.text-slate-700 {
  color: rgb(51 65 85);
}

/* Font weight utilities */
.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

* {
  font-family: "Montserrat", system-ui, sans-serif;
}

body {
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hero Section Styles */
.hero-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #cbd5e1 70%, #94a3b8 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(21, 101, 192, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(121, 134, 203, 0.06) 0%, transparent 50%);
  animation: pulse-slow 8s ease-in-out infinite;
}

.globe-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.08;
  z-index: 1;
}

@media (min-width: 640px) {
  .globe-container {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 768px) {
  .globe-container {
    width: 500px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .globe-container {
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 1280px) {
  .globe-container {
    width: 700px;
    height: 700px;
  }
}

.globe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(79, 195, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(21, 101, 192, 0.2) 0%, transparent 50%),
    conic-gradient(from 0deg, transparent, rgba(79, 195, 247, 0.15), transparent, rgba(121, 134, 203, 0.1), transparent);
  border: 2px solid rgba(79, 195, 247, 0.2);
  animation: rotate 30s linear infinite;
  position: relative;
}

.globe::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.15);
}

.globe::after {
  content: "";
  position: absolute;
  top: 16%;
  left: 16%;
  right: 16%;
  bottom: 16%;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.1);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(79, 195, 247, 0.6);
  border-radius: 50%;
  animation: float-particle 20s infinite linear;
}

@media (min-width: 640px) {
  .particle {
    width: 4px;
    height: 4px;
  }
}

.particle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  background: rgba(79, 195, 247, 0.6);
}
.particle:nth-child(2) {
  top: 75%;
  right: 15%;
  animation-delay: -5s;
  background: rgba(21, 101, 192, 0.6);
}
.particle:nth-child(3) {
  bottom: 35%;
  left: 20%;
  animation-delay: -10s;
  background: rgba(121, 134, 203, 0.6);
}
.particle:nth-child(4) {
  top: 45%;
  right: 25%;
  animation-delay: -15s;
  background: rgba(79, 195, 247, 0.6);
}
.particle:nth-child(5) {
  top: 25%;
  left: 70%;
  animation-delay: -20s;
  background: rgba(21, 101, 192, 0.6);
}
.particle:nth-child(6) {
  bottom: 60%;
  right: 40%;
  animation-delay: -8s;
  background: rgba(121, 134, 203, 0.6);
}

@keyframes float-particle {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(60px);
    opacity: 0;
  }
}

@media (min-width: 640px) {
  @keyframes float-particle {
    0% {
      transform: translateY(0px) translateX(0px);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-150px) translateX(80px);
      opacity: 0;
    }
  }
}

/* Navigation Styles */
.navbar-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #4fc3f7, #1565c0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* Service Card Styles */
.service-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.08), transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #4fc3f7;
  box-shadow: 0 15px 30px rgba(79, 195, 247, 0.15);
}

@media (min-width: 1024px) {
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.15);
  }
}

.service-card.active {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  border-color: #4fc3f7;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 41, 59, 0.3);
}

@media (min-width: 1024px) {
  .service-card.active {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 41, 59, 0.3);
  }
}

.service-card.active .service-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.service-card.active h3,
.service-card.active p {
  color: white;
}

.service-card.active .mt-4,
.service-card.active .mt-6 {
  color: white;
}

.service-detail {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail.active {
  opacity: 1;
  transform: translateY(0);
  animation: slide-down 0.3s ease-out;
}

/* Hero Social Sidebar */
.hero-social-sidebar {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(79, 195, 247, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fc3f7;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .social-icon {
    width: 52px;
    height: 52px;
  }
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4fc3f7, #1565c0);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon:hover {
  color: white;
  transform: scale(1.1);
  border-color: #4fc3f7;
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

.social-icon i {
  position: relative;
  z-index: 1;
}

/* Logo Carousel */
.logo-carousel {
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .fade-in-up {
    transform: translateY(60px);
  }
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .slide-in-left {
    transform: translateX(-80px);
  }
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .slide-in-right {
    transform: translateX(80px);
  }
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Process Section Styles */
.process-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  z-index: -1;
}

@media (min-width: 1024px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-progress {
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4fc3f7, #1565c0);
  transition: height 0.3s ease;
  z-index: 0;
  height: 0%;
}

@media (min-width: 1024px) {
  .process-progress {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .process-step {
    margin-bottom: 3rem;
  }
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step .process-content {
  padding-left: 4rem;
  padding-right: 1rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .process-step:nth-child(odd) .process-content {
    padding-right: calc(50% + 3rem);
    padding-left: 1rem;
    text-align: right;
  }

  .process-step:nth-child(even) .process-content {
    padding-left: calc(50% + 3rem);
    padding-right: 1rem;
    text-align: left;
  }
}

.process-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 3px solid #4fc3f7;
  color: #1565c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.2);
}

@media (min-width: 640px) {
  .process-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .process-number {
    left: 50%;
  }
}

.process-step.active .process-number {
  background: #4fc3f7;
  color: white;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.process-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}

@media (min-width: 640px) {
  .process-card {
    padding: 2rem;
  }
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-card h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

@media (min-width: 640px) {
  .process-card h3 {
    font-size: 1.25rem;
  }
}

.process-card h3 i {
  margin-right: 0.75rem;
  color: #4fc3f7;
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .process-card h3 i {
    font-size: 1.5rem;
  }
}

.process-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .process-card p {
    font-size: 1rem;
  }
}

.process-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.process-feature {
  background: #f8fafc;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .process-feature {
    font-size: 0.875rem;
  }
}

/* Contact Form Styles */
.contact-form {
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-input {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  color: #1f2937;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  border-color: #4fc3f7;
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.1);
  transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4fc3f7, #1565c0);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}

@media (min-width: 640px) {
  .scroll-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
  }
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 20px 40px rgba(79, 195, 247, 0.4);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #4fc3f7, #1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats and Feature Cards */
.stats-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 195, 247, 0.3);
}

@media (min-width: 768px) {
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
}

/* Modal Styles */
#success-modal {
  backdrop-filter: blur(8px);
}

#success-modal.show #modal-content {
  transform: scale(1);
}

/* Performance optimizations */
.will-change-transform {
  will-change: transform;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn-primary:focus,
.form-input:focus,
.nav-link:focus {
  outline: 2px solid #4fc3f7;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card {
    border-width: 3px;
  }

  .btn-primary {
    border: 2px solid #1565c0;
  }
}

/* Custom Animations */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (min-width: 640px) {
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Mobile-first responsive improvements */
@media (max-width: 639px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-bg {
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .service-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .process-card {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  /* Mobile navigation improvements */
  .navbar-glass {
    padding: 0.5rem 0;
  }

  /* Mobile typography */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
  }

  /* Mobile spacing */
  section {
    padding: 2rem 0 !important;
  }

  .py-16, .py-20, .py-32 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Mobile grid fixes */
  .grid {
    gap: 1rem !important;
  }

  /* Mobile button improvements */
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Mobile image fixes */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Mobile process timeline */
  .process-step .process-content {
    padding-left: 3rem !important;
    padding-right: 0.5rem !important;
  }

  .process-number {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 0.875rem !important;
  }

  /* Mobile service cards */
  .service-icon {
    width: 3rem !important;
    height: 3rem !important;
    margin-bottom: 1rem !important;
  }

  /* Mobile contact form */
  .form-input {
    font-size: 1rem;
    padding: 0.875rem;
  }

  /* Mobile footer */
  footer .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Mobile feature cards grid */
  .feature-card {
    padding: 1rem !important;
  }

  /* Mobile stats cards */
  .stats-card {
    padding: 1rem !important;
  }
}

/* Tablet optimizations */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-social-sidebar {
    display: none;
  }

  .service-card {
    padding: 1.75rem;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Tablet typography */
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  /* Tablet grid improvements */
  .grid-cols-1.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Tablet navigation */
  .navbar-glass {
    padding: 0.75rem 0;
  }

  /* Tablet spacing */
  .py-16 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-20 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-32 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* Tablet process improvements */
  .process-container {
    max-width: 800px;
  }

  .process-step .process-content {
    padding-left: 3.5rem;
    padding-right: 1rem;
  }

  /* Tablet service details */
  .service-detail .grid {
    gap: 2rem;
  }

  /* Tablet contact form */
  .contact-form {
    padding: 2rem;
  }

  /* Tablet logo carousel */
  .logo-carousel {
    padding: 0 1rem;
  }

  /* Tablet feature cards */
  .feature-card {
    padding: 1.5rem;
  }
}

/* Desktop optimizations */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Desktop navigation */
  .navbar-glass {
    padding: 1rem 0;
  }

  /* Desktop typography */
  h1 {
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
  }

  h2 {
    font-size: 2.75rem !important;
    line-height: 1.2 !important;
  }

  /* Desktop grid improvements */
  .grid-cols-1.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .grid-cols-1.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .grid-cols-1.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  /* Desktop spacing */
  .py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-32 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  /* Desktop service cards */
  .service-card {
    padding: 2.5rem;
  }

  /* Desktop process improvements */
  .process-container {
    max-width: 1000px;
  }

  /* Desktop contact improvements */
  .contact-form {
    padding: 2.5rem;
  }

  /* Desktop feature cards */
  .feature-card {
    padding: 2rem;
  }

  /* Desktop hero improvements */
  .hero-bg {
    min-height: 100vh;
    padding-top: 5rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Mobile Touch Interactions */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
  }
  
  .service-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .btn-primary:active {
    transform: scale(0.98);
  }
  
  .feature-card:hover {
    transform: none;
  }
  
  .feature-card:active {
    transform: scale(0.98);
  }
}

/* Better mobile typography scaling */
@media (max-width: 374px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.125rem !important;
  }
  
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Enhanced mobile-first responsive grid */
.responsive-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .responsive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .responsive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .responsive-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

/* Mobile-first button improvements */
.mobile-btn {
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Improved mobile form inputs */
.form-input {
  min-height: 44px;
  font-size: 16px; /* Prevents zoom on iOS */
}

@media (max-width: 639px) {
  .form-input {
    font-size: 16px !important;
    padding: 12px 16px;
  }
}

/* Mobile-optimized navigation */
@media (max-width: 1023px) {
  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }
}

/* Improved mobile spacing system */
.mobile-space-xs { margin: 0.25rem; }
.mobile-space-sm { margin: 0.5rem; }
.mobile-space-md { margin: 1rem; }
.mobile-space-lg { margin: 1.5rem; }
.mobile-space-xl { margin: 2rem; }

@media (max-width: 639px) {
  .mobile-responsive-padding {
    padding: 1rem !important;
  }
  
  .mobile-responsive-margin {
    margin: 0.5rem !important;
  }
  
  .mobile-responsive-text {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }
}

/* Better mobile image handling */
.mobile-img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 639px) {
  .mobile-img-responsive {
    border-radius: 8px;
  }
}

/* Mobile-optimized animations */
@media (prefers-reduced-motion: no-preference) and (max-width: 639px) {
  .mobile-animation {
    animation-duration: 0.3s !important;
  }
}

/* Landscape mobile optimizations */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .hero-bg {
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  
  section {
    padding: 1.5rem 0 !important;
  }
  
  .navbar-glass {
    padding: 0.25rem 0;
  }
}

/* Contact method cards */
.contact-method-card {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Contact method specific styles */
.contact-method-card .fas,
.contact-method-card .fab {
  transition: transform 0.3s ease;
}

.contact-method-card:hover .fas,
.contact-method-card:hover .fab {
  transform: scale(1.1);
}

/* Responsive contact cards */
@media (max-width: 640px) {
  .contact-method-card {
    margin-bottom: 1rem;
  }
  
  .contact-method-card div[class*="p-4"] {
    padding: 1rem !important;
  }
  
  .contact-method-card div[class*="w-12"] {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}

/* Animation improvements */
.contact-method-card,
.feature-card {
  animation: fadeInUp 0.6s ease-out;
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }
.contact-method-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid system fixes */
