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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.65;
  color: #0f172a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100%;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Smooth Scroll Offset */
html {
  scroll-padding-top: 5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2274FF, #3b82f6);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1e5dd6, #2563eb);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100vw;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo a:hover .logo-img {
  transform: scale(1.05);
}

.logo-accent {
  color: #2274FF;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2274FF, #60a5fa);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #2274FF;
}

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

/* Dropdown Styles */
.has-dropdown {
  position: relative;
}

.dropdown-icon {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  color: #475569;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: linear-gradient(135deg, rgba(34, 116, 255, 0.08) 0%, rgba(34, 116, 255, 0.12) 100%);
  color: #2274FF;
  transform: translateX(4px);
}

.nav-btn {
  background: linear-gradient(135deg, #2274FF 0%, #1d63ed 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(34, 116, 255, 0.25);
}

.nav-btn:hover {
  background: linear-gradient(135deg, #1557cc 0%, #1557cc 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.35);
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 60;
}

.nav-hamburger:hover {
  color: #2274FF;
  background-color: rgba(34, 116, 255, 0.08);
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

/* Mobile Navigation Panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  height: calc(100vh - 4.5rem);
  background-color: #ffffff;
  z-index: 999999;
  overflow-y: auto;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background-color: #ffffff;
  min-height: 100%;
}

.nav-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus {
  color: #2274FF;
  background-color: rgba(34, 116, 255, 0.06);
}

/* Mobile Contact Button */
.nav-mobile-cta {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #2274FF 0%, #1d63ed 100%);
  text-decoration: none;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
  transition: all 0.3s ease;
}

.nav-mobile-cta:hover {
  background: linear-gradient(135deg, #1557cc 0%, #1557cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.35);
}

/* Mobile Dropdown */
.nav-mobile .has-dropdown {
  display: flex;
  flex-direction: column;
}

.nav-mobile .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-mobile .dropdown-toggle:hover {
  color: #2274FF;
  background-color: rgba(34, 116, 255, 0.06);
}

.nav-mobile .dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.nav-mobile .has-dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.nav-mobile .dropdown-menu {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: #f8fafc;
  border-radius: 0.75rem;
  margin: 0.5rem 0 0 1rem;
  padding: 0.5rem;
  list-style: none;
}

.nav-mobile .has-dropdown.open .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-mobile .dropdown-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-mobile .dropdown-link:hover {
  color: #2274FF;
  background-color: white;
}

/* Show hamburger on mobile, hide on desktop */
@media (max-width: 767px) {
  .nav-hamburger {
    display: block;
  }

  .nav-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  overflow: hidden;
  padding-top: 4.5rem;
  height: 80vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-height: 700px) {
  .hero-section {
    height: 100vh;
    min-height: 100vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.hero-shape-1 {
  top: 5rem;
  right: 2.5rem;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
}

.hero-shape-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
  animation-delay: 1s;
}

.hero-shape-3 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

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

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-image-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    display: block;
    position: relative;
  }
}

.hero-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.5s ease;
  max-height: 500px;
}

.hero-image-container:hover {
  transform: scale(1.05);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 116, 255, 0.3) 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fade-in 0.6s ease-out;
  letter-spacing: 0.01em;
}

.hero-badge-pulse {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.pulse-ring {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: white;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background-color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: slide-up 0.8s ease-out;
}

.hero-title-line {
  display: block;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 50%, #cffafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.6;
  animation: slide-up 0.8s ease-out 0.1s backwards;
  font-weight: 500;
}

.hero-text {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  animation: slide-up 0.8s ease-out 0.2s backwards;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slide-up 0.8s ease-out 0.3s backwards;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary {
  background-color: white;
  color: #2274FF;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25), 0 2px 8px rgba(255, 255, 255, 0.15);
}

.hero-btn-primary:hover {
  background: linear-gradient(90deg, #ffffff 0%, #f0f9ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.35), 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-arrow,
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(0.5rem);
}

.hero-btn-secondary:hover .btn-icon {
  transform: rotate(90deg);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.about-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 245, 249, 0.4) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(34, 116, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  color: #2274FF;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(34, 116, 255, 0.15);
  box-shadow: 0 2px 8px rgba(34, 116, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

.section-badge-white {
  background: linear-gradient(90deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-badge-contact {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.contact-title {
  color: white;
}

.title-gradient {
  background: linear-gradient(90deg, #2274FF 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.65;
}

.about-card-wrapper {
  position: relative;
  margin-bottom: 5rem;
}

.about-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 116, 255, 0.2) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(59, 130, 246, 0.2) 100%);
  border-radius: 1.5rem;
  filter: blur(40px);
  transition: filter 0.5s ease;
}

.about-card-wrapper:hover .about-card-glow {
  filter: blur(60px);
}

.about-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.card-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.card-decoration-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(219, 234, 254, 0.6) 0%, transparent 70%);
  margin-right: -8rem;
  margin-top: -8rem;
}

.card-decoration-2 {
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(207, 250, 254, 0.6) 0%, transparent 70%);
  margin-left: -6rem;
  margin-bottom: -6rem;
}

.about-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  position: relative;
  z-index: 10;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Why Section */
.why-section {
  padding: 4.5rem 0 5rem;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background-color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 8px 16px -4px rgba(34, 116, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, transparent 100%);
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.2);
}

.icon-svg {
  width: 1.125rem;
  height: 1.125rem;
  color: white;
}

.feature-text {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.5) 100%);
}

.services-content {
  max-width: 64rem;
  margin: 0 auto;
}

.services-intro {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 2.5rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background-color: white;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 4px 12px -2px rgba(34, 116, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(34, 116, 255, 0.4);
}

.service-item:hover .service-dot {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(34, 116, 255, 0.6);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.service-text {
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Icon Size Fixes - Prevent oversized icons */
.availability-icon {
  width: 4rem !important;
  height: 4rem !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.availability-icon svg {
  width: 2.5rem !important;
  height: 2.5rem !important;
  color: white;
}

/* Ensure all service icons are properly sized */
.service-icon,
.feature-icon,
.feature-icon-service {
  width: 3.5rem !important;
  height: 3.5rem !important;
  min-width: 3.5rem;
  min-height: 3.5rem;
  max-width: 3.5rem;
  max-height: 3.5rem;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon svg,
.feature-icon svg,
.feature-icon-service svg {
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem;
  min-height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
}

/* Fix for checkmark icons in lists */
.feature-item svg,
.step-icon svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  flex-shrink: 0;
}


/* Process Section */
.process-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34, 116, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.process-steps {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, transparent 100%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover .step-bg {
  opacity: 1;
}

.step-number {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  color: white;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.25);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.35);
}

.step-text {
  position: relative;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-top: 0.375rem;
  font-weight: 500;
}

/* Clients Section */
.clients-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

.client-card {
  position: relative;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.client-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.client-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2274FF 0%, #1557cc 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(34, 116, 255, 0.3);
  transition: all 0.3s ease;
}

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

.icon-inner {
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.5rem;
}

.client-title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.client-card-simple {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.client-card-simple:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.client-card-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(147, 51, 234, 0.3) 50%, rgba(6, 182, 212, 0.5) 100%);
  opacity: 0;
  border-radius: 1rem;
  transition: opacity 0.5s ease;
}

.client-card-simple:hover::before {
  opacity: 1;
}

.client-text {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  text-align: center;
  line-height: 1.75;
}

/* Rich Client Cards */

.clients-grid-rich.custom-voorwie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.clients-grid-rich.custom-voorwie-grid .client-card-rich {
  width: calc(32% - 1.5rem);
  min-width: 280px;
  min-height: 440px;
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .clients-grid-rich.custom-voorwie-grid {
    gap: 1.5rem;
  }

  .clients-grid-rich.custom-voorwie-grid .client-card-rich {
    width: calc(48% - 1rem);
    min-width: 240px;
  }
}

@media (max-width: 600px) {
  .clients-grid-rich.custom-voorwie-grid {
    gap: 1.25rem;
  }

  .clients-grid-rich.custom-voorwie-grid .client-card-rich {
    width: 100%;
    min-width: 0;
  }
}

/* Eye-catching, interactive card styles */
.interactive-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.90) 100%);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.interactive-card:hover {
  box-shadow: 0 20px 60px 0 rgba(34, 116, 255, 0.25), 0 12px 32px rgba(0, 0, 0, 0.12), inset 0 2px 4px rgba(34, 116, 255, 0.08), 0 0 0 4px rgba(34, 116, 255, 0.08);
  transform: translateY(-12px) scale(1.04) rotate(-1.5deg);
  border: 2px solid #2274FF;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 0.98) 100%);
}

.gradient-border {
  border-radius: 1.75rem 1.75rem 0 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.gradient-border:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 40%, #60a5fa 70%, #a5b4fc 100%);
  opacity: 0.15;
  pointer-events: none;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 0.15;
    transform: translateX(0) scale(1);
  }

  50% {
    opacity: 0.25;
    transform: translateX(5%) scale(1.05);
  }
}

.client-card-image img {
  position: relative;
  z-index: 1;
  border-radius: 1.75rem 1.75rem 0 0;
  box-shadow: 0 2px 20px rgba(34, 116, 255, 0.12);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-card:hover .client-card-image img {
  filter: brightness(1.1) saturate(1.25) contrast(1.05) drop-shadow(0 8px 24px #2274FF44);
  transform: scale(1.1) rotate(-1.5deg);
}

.interactive-card .client-card-overlay {
  background: linear-gradient(180deg, rgba(34, 116, 255, 0.08) 0%, rgba(34, 116, 255, 0.28) 60%, rgba(15, 23, 42, 0.15) 100%);
  opacity: 0.75;
  transition: all 0.4s ease;
}

.interactive-card:hover .client-card-overlay {
  background: linear-gradient(180deg, rgba(34, 116, 255, 0.20) 0%, rgba(34, 116, 255, 0.50) 60%, rgba(15, 23, 42, 0.25) 100%);
  opacity: 1;
}

.interactive-card .client-card-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  box-shadow: 0 6px 20px rgba(34, 116, 255, 0.20), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(34, 116, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.interactive-card:hover .client-card-icon {
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 60%, #60a5fa 100%);
  border: 2px solid #60a5fa;
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 30px rgba(34, 116, 255, 0.40), 0 4px 12px rgba(34, 116, 255, 0.30);
}

.interactive-card .client-icon-svg {
  color: #2274FF;
  filter: drop-shadow(0 2px 6px rgba(34, 116, 255, 0.25));
  transition: all 0.3s ease;
}

.interactive-card:hover .client-icon-svg {
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.60)) drop-shadow(0 0 8px rgba(96, 165, 250, 0.80));
  animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.interactive-card .client-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #0f172a;
  text-shadow: 0 2px 8px rgba(34, 116, 255, 0.08);
  transition: all 0.35s ease;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.interactive-card:hover .client-card-title {
  color: transparent;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 50%, #60a5fa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 6px 20px rgba(34, 116, 255, 0.35);
  transform: translateX(3px);
}

.interactive-card .client-card-description {
  color: #475569;
  font-size: 1.0125rem;
  font-weight: 500;
  margin-top: 0.625rem;
  text-shadow: 0 1px 4px rgba(34, 116, 255, 0.06);
  transition: all 0.3s ease;
  line-height: 1.7;
}

.interactive-card:hover .client-card-description {
  color: #1e293b;
  text-shadow: 0 2px 10px rgba(34, 116, 255, 0.15);
  transform: translateX(2px);
}

.interactive-card:after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1.75rem;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(34, 116, 255, 0.15) 50%, transparent 100%);
  box-shadow: 0 0 40px 12px rgba(34, 116, 255, 0.25), inset 0 0 20px rgba(96, 165, 250, 0.20);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  animation: glowPulse 3s ease-in-out infinite;
}

.interactive-card:hover:after {
  opacity: 1;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 40px 12px rgba(34, 116, 255, 0.25), inset 0 0 20px rgba(96, 165, 250, 0.20);
  }

  50% {
    box-shadow: 0 0 60px 16px rgba(34, 116, 255, 0.35), inset 0 0 30px rgba(96, 165, 250, 0.30);
  }
}

.client-card-rich {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 480px;
}

.client-card-rich:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 116, 255, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(34, 116, 255, 0.3);
}

.client-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.client-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card-rich:hover .client-card-image img {
  transform: scale(1.08);
}

.client-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(34, 116, 255, 0.05) 0%,
      rgba(34, 116, 255, 0.35) 100%);
  transition: opacity 0.4s ease;
}

.client-card-rich:hover .client-card-overlay {
  background: linear-gradient(180deg,
      rgba(34, 116, 255, 0.15) 0%,
      rgba(34, 116, 255, 0.45) 100%);
}

.client-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}

.client-card-rich:hover .client-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
}

.client-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2274FF;
  transition: color 0.3s ease;
}

.client-card-rich:hover .client-icon-svg {
  color: white;
}

.client-card-content {
  padding: 1.5rem 1.5rem;
}

.client-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.client-card-rich:hover .client-card-title {
  color: #2274FF;
}

.client-card-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 400;
}

/* Contact Section */
.contact-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.contact-shape-1 {
  top: 2.5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-shape-2 {
  bottom: 2.5rem;
  left: 5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-content {
  max-width: 1024px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-company {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-form-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  background-color: white;
  color: #2274FF;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.form-submit:hover {
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(34, 116, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Page Hero Section */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  padding: 8rem 0 5rem;
  overflow: hidden;
  margin-top: 4.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.page-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content Section */
.content-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.intro-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
}

/* Service Detailed Cards */
.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detailed-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detailed-card:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-detailed-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
}

.service-detailed-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-detailed-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-detailed-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-features-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 116, 255, 0.4);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #2274FF 0%, #1d63ed 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1557cc 0%, #1557cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 116, 255, 0.35);
}

.btn-secondary {
  background: white;
  color: #2274FF;
  border: 1.5px solid #2274FF;
  box-shadow: 0 2px 8px rgba(34, 116, 255, 0.15);
}

.btn-secondary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: none;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-image {
  width: 100%;
  position: relative;
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

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

/* Mission Section */
.mission-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.mission-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.25);
}

.mission-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.mission-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.mission-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-description {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.team-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-feature:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 8px 16px rgba(34, 116, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.team-feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.2);
}

.team-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.team-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.team-feature p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

/* Active Link State */
.nav-link.active {
  color: #2274FF;
}

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

/* Caregiver Page Styles */
.caregiver-intro-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.caregiver-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.caregiver-intro-content {
  max-width: none;
}

.caregiver-intro-image {
  width: 100%;
  position: relative;
}

/* Offer Section */
.offer-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.offer-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.offer-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.25);
}

.offer-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.offer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.offer-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* Requirements Section */
.requirements-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-item:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 8px 16px rgba(34, 116, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.requirement-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.2);
}

.requirement-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: white;
}

.requirement-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding-top: 0.25rem;
}

/* Application CTA Section */
.application-cta-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.application-cta-card {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(34, 116, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.application-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.application-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.application-cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 10;
}

.application-cta-card .btn {
  position: relative;
  z-index: 10;
}

.application-cta-card .btn-primary {
  background: white;
  color: #2274FF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.application-cta-card .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid-rich {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .client-card-image {
    height: 180px;
  }

  .client-card-rich {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-container {
    padding: 6rem 1.5rem 9rem;
  }

  .about-section {
    padding: 5.5rem 0 6rem;
  }

  .about-card {
    padding: 2.5rem;
  }

  .about-text {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .services-intro {
    font-size: 1.125rem;
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .step-text {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-grid-rich {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .client-card-image {
    height: 200px;
  }

  .client-card-rich {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-container,
  .section-container {
    padding: 0 2rem;
  }

  .services-detailed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero-title {
    font-size: 4rem;
  }
}

/* Additional Responsive Enhancements */
@media (min-width: 768px) {
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-title {
    font-size: 3.5rem;
  }

  .page-hero-subtitle {
    font-size: 1.5rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .caregiver-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-cta-card {
    padding: 4rem 3rem;
  }

  .application-cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .services-detailed-grid {
    gap: 2rem;
  }

  .mission-grid {
    gap: 2rem;
  }

  .offer-grid {
    gap: 2rem;
  }
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: white;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2274FF;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================
   FOOTER STYLING FIXES
   ====================================== */

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #2274FF;
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.9375rem;
}

.footer-contact a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #2274FF;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2274FF;
}

/* ======================================
   LIVE CHAT BUTTON - FIXED TO BOTTOM RIGHT
   ====================================== */

.live-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.live-chat-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}

.live-chat-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.live-chat-button:active {
  transform: translateY(-1px) scale(1.02);
}

.chat-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.chat-text {
  font-weight: 600;
}

@media (max-width: 640px) {
  .live-chat-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .chat-text {
    display: none;
  }

  .live-chat-button {
    padding: 1rem;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
  }
}

/* ======================================
   HOMEPAGE HERO - NO IMAGE VERSION
   ====================================== */

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 4.5rem);
  padding: 3rem 0;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ======================================
   SERVICES GRID - CENTERED 5 CARDS
   ====================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  justify-items: center;
}

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

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

  /* Center the last 2 cards when there are 5 items */
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  /* If exactly 5 cards, make last row centered */
  .services-grid:has(.service-card:nth-child(5):last-child) {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-grid:has(.service-card:nth-child(5):last-child) .service-card {
    grid-column: span 2;
  }

  .services-grid:has(.service-card:nth-child(5):last-child) .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

/* ======================================
   IMAGE SLIDER - SLIDING ANIMATION + ARROWS
   ====================================== */

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}

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

/* Slider Arrow Controls */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2274FF;
}

.slider-arrow-prev {
  left: 1.5rem;
}

.slider-arrow-next {
  right: 1.5rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slider-container {
    height: 350px;
  }

  .slider-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .slider-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ======================================
   WHY CHOOSE US SECTION
   ====================================== */

.why-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-description {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2274FF;
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.why-image {
  width: 100%;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

/* ======================================
   GET IN TOUCH / CONTACT CTA SECTION
   ====================================== */

.contact-cta-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(34, 116, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.contact-cta-text {
  position: relative;
  z-index: 10;
}

.contact-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.contact-cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.contact-cta-buttons .btn-primary {
  background: white;
  color: #2274FF;
}

.contact-cta-buttons .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.contact-cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-2px);
}

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

  .contact-cta-title {
    font-size: 2.5rem;
  }
}

/* ======================================
   CONTACT PAGE - CONTACT DETAILS SECTION
   ====================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-method-content {
  flex: 1;
}

.contact-method-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-method-detail {
  font-size: 1rem;
  color: #2274FF;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method-detail a {
  color: #2274FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method-detail a:hover {
  color: #1557cc;
}

.contact-method-hours {
  font-size: 0.875rem;
  color: #64748b;
}

.text-link {
  color: #2274FF;
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #1557cc;
  text-decoration: underline;
}

.contact-emergency {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 1.25rem;
  border: 1px solid #fecaca;
  margin-top: 1rem;
}

.emergency-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.emergency-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #7f1d1d;
  margin-bottom: 0.5rem;
}

.emergency-text {
  font-size: 0.9375rem;
  color: #991b1b;
  line-height: 1.6;
}

.emergency-text strong {
  font-weight: 700;
  color: #7f1d1d;
}

/* ======================================
   CONTACT FORM STYLING
   ====================================== */

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.form-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #0f172a;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: white;
  border-color: #2274FF;
  box-shadow: 0 0 0 3px rgba(34, 116, 255, 0.1);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card {
    padding: 3rem;
  }
}

/* ======================================
   FAQ SECTION
   ====================================== */

.faq-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-question::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  color: white;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  padding-left: 2.75rem;
}

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

/* ======================================
   EXPECTATIONS SECTION
   ====================================== */

.expectations-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.expectations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.expectation-item {
  background: white;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.expectation-item:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.expectation-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.25);
}

.expectation-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.expectation-content {
  flex: 1;
}

.expectation-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.expectation-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

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

/* ======================================
   AVAILABILITY HIGHLIGHT SECTION
   ====================================== */

.availability-highlight-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.availability-highlight-card {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid rgba(34, 116, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transition: all 0.3s ease;
}

.availability-highlight-card:hover {
  border-color: rgba(34, 116, 255, 0.4);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.18);
  transform: translateY(-4px);
}

.availability-highlight-icon {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.3);
}

.availability-highlight-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.availability-highlight-content {
  flex: 1;
}

.availability-highlight-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.availability-highlight-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.availability-highlight-text strong {
  color: #2274FF;
  font-weight: 700;
}

@media (min-width: 768px) {
  .availability-highlight-card {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
    padding: 3rem;
  }
}

/* ======================================
   INTAKE CTA SECTION
   ====================================== */

.intake-cta-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.intake-cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.intake-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.intake-cta-text {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

  .intake-cta-title {
    font-size: 2.5rem;
  }
}

/* ======================================
   CONTACT CTA SECTION
   ====================================== */

.contact-cta-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
}

.contact-cta-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.contact-cta-text {
  flex: 1;
}

.contact-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.contact-cta-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact-cta-section .btn-primary {
  background: white;
  color: #2274FF;
}

.contact-cta-section .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.contact-cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-cta-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .contact-cta-title {
    font-size: 2.5rem;
  }
}



/* To hide COLLECT.CHAT default opening message box */
.chat-bot-message-label,
.chat-bot-message-close,
.chat-bot-button-wrapper {
  display: none !important;
}

/* ======================================
   BLOG DETAIL PAGE (SINGLE POST)
   ====================================== */

/* Article Hero Section */
.single-post {
  background: #ffffff;
}

.article-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 116, 255, 0.08) 0%, transparent 70%);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.article-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2274FF;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 116, 255, 0.2);
}

.category-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2274FF;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.article-date {
  font-size: 0.875rem;
  color: #64748b;
}

.article-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #2274FF;
}

/* Featured Image Section */
.article-featured-image {
  padding: 3rem 0;
  background: #ffffff;
}

.featured-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Content Section */
.article-content-section {
  padding: 3rem 0 5rem;
  background: #ffffff;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.article-main {
  max-width: 100%;
}

.article-content {
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.article-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.article-content a {
  color: #2274FF;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.article-content a:hover {
  color: #1557cc;
}

.article-content strong {
  font-weight: 700;
  color: #0f172a;
}

.article-content blockquote {
  border-left: 4px solid #2274FF;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #475569;
}

/* Tags Section */
.article-tags {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.tags-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-item:hover {
  background: #eff6ff;
  color: #2274FF;
  border-color: rgba(34, 116, 255, 0.3);
  transform: translateY(-2px);
}

/* Share Buttons Section */
.article-share {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.share-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.share-facebook {
  background: #1877f2;
  color: white;
}

.share-facebook:hover {
  background: #0c63d4;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-twitter:hover {
  background: #0d8bd9;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(29, 161, 242, 0.3);
}

.share-linkedin {
  background: #0077b5;
  color: white;
}

.share-linkedin:hover {
  background: #005885;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 119, 181, 0.3);
}

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

.share-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* Author Bio Section */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 3rem;
}

.author-bio-avatar {
  flex-shrink: 0;
}

.author-bio-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #2274FF;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.author-bio-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.post-nav-previous,
.post-nav-next {
  min-height: 100px;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.post-nav-link:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.12);
  transform: translateY(-2px);
}

.post-nav-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2274FF;
}

.post-nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.post-nav-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 0.75rem;
}

.category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-item a:hover {
  background: #eff6ff;
  color: #2274FF;
  transform: translateX(4px);
}

.category-count {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Recent Posts Widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  overflow: hidden;
}

.recent-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-thumbnail:hover img {
  transform: scale(1.1);
}

.recent-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recent-post-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.recent-post-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-title a:hover {
  color: #2274FF;
}

.recent-post-date {
  font-size: 0.8125rem;
  color: #64748b;
}

/* Sidebar CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(34, 116, 255, 0.25);
}

.sidebar-cta .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sidebar-cta .btn-primary {
  width: 100%;
  background: white;
  color: #2274FF;
}

.sidebar-cta .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

/* Related Posts Section */
.related-posts-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.related-posts-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-meta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.link-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.blog-card-link:hover .link-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .article-meta {
    flex-direction: row;
  }

  .article-title {
    font-size: 3rem;
  }

  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }

  .post-nav-next .post-nav-link {
    text-align: right;
  }

  .post-nav-next .post-nav-label {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr 350px;
    gap: 4rem;
  }

  .article-hero {
    padding: 8rem 0 5rem;
  }
}

/* ===================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   =================================== */

/* Mobile Navigation - Below 768px */
@media (max-width: 767px) {

  /* Make sure hamburger menu button is visible */
  .nav-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .nav-desktop {
    display: none !important;
  }

  /* Mobile menu styling - enhanced */
  .nav-mobile.active {
    display: block !important;
  }

  .nav-mobile-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-mobile-link,
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
  }

  .nav-mobile-link:hover,
  .dropdown-toggle:hover {
    background: rgba(34, 116, 255, 0.06);
    color: #2274FF;
  }

  /* Mobile dropdown - improved */
  .nav-mobile .has-dropdown {
    position: relative;
    flex-direction: column;
  }

  .nav-mobile .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 0.75rem;
    margin: 0.5rem 0 0 1rem;
    padding: 0.5rem;
  }

  .nav-mobile .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-mobile .dropdown-link {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  /* Mobile CTA button in menu - updated class */
  .nav-mobile-cta {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2274FF 0%, #1d63ed 100%);
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 0.75rem;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(34, 116, 255, 0.25);
  }

  /* Hero section mobile */
  .hero-section {
    min-height: auto;
    height: auto;
    padding: 6rem 0 3rem;
  }

  .hero-container {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .hero-text {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }

  /* Page hero mobile */
  .page-hero {
    padding: 6rem 0 2rem;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .page-hero-subtitle,
  .page-hero-description {
    font-size: 1rem;
  }

  /* Section containers mobile */
  .section-container {
    padding: 0 1rem;
  }

  .about-container {
    padding: 0 1rem;
  }

  /* Section titles mobile */
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  /* Section padding mobile */
  .about-section,
  .why-section,
  .services-section,
  .content-section,
  .availability-section {
    padding: 3rem 0;
  }

  /* Cards and grids mobile */
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .stat-card {
    padding: 1.25rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  /* Service cards mobile */
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    margin-bottom: 1rem;
  }

  .service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .service-title {
    font-size: 1.125rem;
  }

  .service-text {
    font-size: 0.9375rem;
  }

  /* Service details grid mobile */
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-detail-card {
    padding: 1.5rem;
  }

  /* Expectations grid mobile */
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .expectation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .expectation-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
  }

  /* Button mobile */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

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

  /* About card mobile */
  .about-card {
    padding: 1.5rem;
  }

  .about-text {
    font-size: 1rem;
  }

  /* Contact section mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

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

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Image slider mobile */
  .image-slider {
    margin: 0;
  }

  .slide-image {
    height: 300px;
    object-fit: cover;
  }

  /* Availability block mobile */
  .availability-block {
    padding: 2rem 1.5rem;
  }

  .availability-title {
    font-size: 1.5rem;
  }

  .availability-text {
    font-size: 1rem;
  }

  /* Availability highlight mobile */
  .availability-highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .availability-highlight-icon {
    margin: 0 auto;
  }

  /* Service page sections mobile */
  .service-content {
    padding: 0 0.5rem;
  }

  .service-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* CTA sections mobile */
  .intake-cta-section,
  .contact-cta-section {
    padding: 3rem 0;
  }

  .intake-cta-content,
  .contact-cta-content {
    padding: 0 1rem;
  }

  .intake-cta-title,
  .contact-cta-title {
    font-size: 1.5rem;
  }

  .contact-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small devices - Below 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .service-icon,
  .feature-icon,
  .expectation-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
  }

  .service-icon svg,
  .feature-icon svg,
  .expectation-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Smaller buttons on very small screens */
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Tablet landscape and small desktop - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expectations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fix for touch devices - make tap areas larger */
@media (hover: none) and (pointer: coarse) {

  .nav-link,
  .dropdown-link,
  .nav-mobile-link,
  .dropdown-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn {
    min-height: 44px;
  }

  .service-card,
  .blog-card {
    touch-action: manipulation;
  }
}

/* Ensure smooth animations on capable devices */
@media (prefers-reduced-motion: no-preference) {
  .nav-mobile {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }

  .nav-mobile:not(.active) {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
}

/* High contrast mode improvements */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid currentColor;
  }

  .nav-link,
  .dropdown-link {
    text-decoration: underline;
  }
}