/* Manchester Cleaning Company - Modern Minimalism Premium Design */

/* Design Tokens CSS Variables */
:root {
  /* Colors - Brand Colors */
  --primary: #E91E63;  /* Brand pink */
  --primary-50: #FCE4EC;
  --primary-100: #F8BBD0;
  --primary-200: #F48FB1;
  --primary-300: #F06292;
  --primary-400: #EC407A;
  --primary-500: #E91E63;
  --primary-600: #D81B60;
  --primary-700: #C2185B;
  --primary-800: #AD1457;
  --primary-900: #880E4F;
  
  /* Neutral Colors */
  --neutral-50: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-200: #EEEEEE;
  --neutral-300: #E0E0E0;
  --neutral-400: #BDBDBD;
  --neutral-500: #9E9E9E;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #333333;
  
  /* System Colors */
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #616161;
  --text-disabled: #9E9E9E;
  --text-inverse: #FFFFFF;
  
  /* Background Colors */
  --background: #FFFFFF;
  --background-alt: var(--neutral-50);
  --background-surface: #FFFFFF;
  
  /* Typography */
  --font-heading: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes (Desktop) */
  --text-hero: 64px;
  --text-hero-mobile: 40px;
  --text-title: 48px;
  --text-title-mobile: 32px;
  --text-subtitle: 32px;
  --text-subtitle-mobile: 24px;
  --text-large: 20px;
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  
  /* Font Weights */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.1;
  --leading-normal: 1.3;
  --leading-relaxed: 1.6;
  
  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-slight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.01em;
  
  /* Spacing (8-Point Grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-modal: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  
  /* Animation */
  --duration-fast: 200ms;
  --duration-normal: 250ms;
  --duration-slow: 300ms;
  --easing-out: cubic-bezier(0.33, 1, 0.68, 1);
  --easing-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Sizing */
  --button-height: 48px;
  --button-height-large: 56px;
  --input-height: 48px;
  --navigation-height: 80px;
  --logo-height: 48px;
  --icon-small: 20px;
  --icon-medium: 32px;
  --icon-large: 48px;
  
  /* Container */
  --container-max-width: 1200px;
  --container-max-width-wide: 1400px;
}

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

/* Professional Page Load Animation */
.page-load-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

.page-load-animation.loaded {
  opacity: 0;
}

.page-load-animation::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-100);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: loader 0.8s ease-in-out infinite;
}

@keyframes loader {
  to { transform: rotate(360deg); }
}

/* Improve font rendering */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--neutral-100);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for Webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--primary-700));
  border-radius: 5px;
  border: 2px solid var(--neutral-100);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--primary-600), var(--primary-800));
}

/* Smooth Scroll Offsets */
:target {
  scroll-margin-top: calc(var(--navigation-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--font-regular);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-title); }
h3 { font-size: var(--text-subtitle); }
h4 { font-size: var(--text-large); }
h5 { font-size: var(--text-body); }
h6 { font-size: var(--text-small); }

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--duration-normal) var(--easing-out);
  position: relative;
}

a:hover {
  color: var(--primary-700);
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Improve link accessibility */
.nav-link:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Utility Classes */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: var(--container-max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-success { color: var(--success-500); }

.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-slight { letter-spacing: var(--tracking-slight); }

/* Layout */
.section,
.about-section,
.services-section,
.why-choose-section,
.testimonials-section,
.gallery-section {
  padding: var(--space-3xl) 0;
  margin: var(--space-md) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navigation-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  z-index: 1000;
  transition: all var(--duration-normal) var(--easing-out);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  height: calc(var(--navigation-height) * 0.9);
}

.nav-container {
  max-width: var(--container-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: var(--space-xs) 0;
  flex-shrink: 0;
}

.nav-logo {
  height: calc(var(--logo-height) * 0.9);
  width: calc(var(--logo-height) * 0.9);
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--easing-out);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-link {
  font-size: 13px;
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  transition: all var(--duration-normal) var(--easing-out);
  padding: var(--space-xs) var(--space-xs);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: calc(var(--navigation-height) * 0.5);
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 0;
  background: var(--primary-500);
  transition: width 0.3s var(--easing-out);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--primary-500);
  background: linear-gradient(to bottom, transparent 0%, var(--primary-50) 100%);
}

.nav-link:hover::before {
  width: 70%;
}

.nav-link.active {
  color: var(--primary-500);
  background: linear-gradient(to bottom, transparent 0%, var(--primary-50) 100%);
}

.nav-link.active::before {
  width: 70%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-200);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--duration-normal) var(--easing-out);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--easing-out);
  z-index: 1001;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--background-surface);
  box-shadow: var(--shadow-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--easing-out);
  z-index: 1002;
  padding-top: calc(var(--navigation-height) + var(--space-sm));
  border-left: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 var(--space-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-height: calc(100vh - var(--navigation-height) - var(--space-xl));
  overflow-y: auto;
}

.mobile-menu li {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s var(--easing-out);
  transition-delay: calc(var(--i) * 0.1s);
}

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

.mobile-menu a {
  font-size: var(--text-body);
  color: var(--text-primary);
  display: block;
  padding: var(--space-xs) var(--space-sm);
  transition: all 0.3s var(--easing-out);
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: transparent;
}

.mobile-menu a:hover {
  color: var(--primary-500);
  transform: translateX(5px);
  background: var(--primary-50);
}

.mobile-menu a.btn {
  margin: var(--space-md) var(--space-md);
  font-size: var(--text-small);
  padding: var(--space-xs) var(--space-md);
}

.mobile-menu a.btn.btn-primary {
  color: white;
  width: calc(100% - var(--space-md) * 2);
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px var(--space-lg);
  font-size: var(--text-small);
  font-weight: var(--font-bold);
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-align: center;
  min-height: calc(var(--button-height) * 0.8);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn span {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--easing-out);
}

.btn-primary {
  background: transparent;
  color: var(--text-inverse);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: var(--primary);
  transform: skew(25deg);
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: translate3d(100%, 0, 0);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--primary);
  transition: 0.5s;
}

.btn-secondary:hover {
  background: var(--primary);
  border: 2px solid var(--primary-700);
  color: white;
}

.btn-large {
  padding: 16px var(--space-xl);
  min-height: var(--button-height-large);
  font-size: var(--text-large);
}

/* Professional CTA Banner */
.cta-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary));
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  animation: slideUpFade 0.5s var(--easing-out) 1s forwards;
}

.cta-banner-content {
  color: white;
}

.cta-banner-title {
  font-size: var(--text-large);
  font-weight: var(--font-bold);
  margin-bottom: 4px;
}

.cta-banner-text {
  font-size: var(--text-small);
  opacity: 0.9;
}

.cta-banner-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cta-banner-close:hover {
  opacity: 1;
}

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

/* Trust Indicators */
.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(233, 30, 99, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  color: var(--primary-700);
  font-weight: var(--font-medium);
}

.trust-indicator svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  z-index: 1000;
  border: 1px solid var(--neutral-200);
  max-width: 400px;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUpFade 0.5s var(--easing-out) 2s forwards;
}

.cookie-text {
  font-size: var(--text-small);
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-xs);
}

/* Cards */
.card {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, 
    rgba(233, 30, 99, 0.1),
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
}

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

.card-service {
  text-align: center;
}

.card-service .icon {
  width: var(--icon-large);
  height: var(--icon-large);
  margin: 0 auto var(--space-md);
  color: var(--primary-500);
}

.card-testimonial {
  text-align: left;
}

.testimonial-quote {
  font-size: var(--text-large);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.testimonial-author {
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.testimonial-role {
  font-size: var(--text-small);
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  min-height: calc(100vh - var(--navigation-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--background) 100%);
  padding-top: var(--navigation-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, var(--primary-100) 0%, transparent 25%),
    radial-gradient(circle at 80% 80%, var(--primary-200) 0%, transparent 25%);
  opacity: 0.5;
  animation: heroGradientFloat 20s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23E91E63" fill-opacity="0.05"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  z-index: 2;
  animation: heroContentFadeIn 1s var(--easing-out);
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight);
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.hero-subtitle {
  font-size: var(--text-large);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-relaxed);
  position: relative;
  padding: 0 var(--space-lg);
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '"';
  position: absolute;
  font-size: 4em;
  color: var(--primary-200);
  opacity: 0.3;
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-subtitle::before {
  left: 0;
  top: -20px;
}

.hero-subtitle::after {
  right: 0;
  bottom: -40px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  position: relative;
}

.hero-ctas::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-200) 25%, 
    var(--accent-200) 50%, 
    var(--primary-200) 75%, 
    transparent 100%
  );
  top: -var(--space-xl);
  left: -10%;
  opacity: 0.3;
}

@keyframes heroGradientFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-2%, 2%) scale(1.05);
  }
  100% {
    transform: translate(2%, -2%) scale(0.95);
  }
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  padding: var(--space-3xl) 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.about-section::before,
.services-section::before,
.why-choose-section::before,
.testimonials-section::before,
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-200) 25%, 
    var(--accent-200) 50%, 
    var(--primary-200) 75%, 
    transparent 100%
  );
  opacity: 0.15;
}

.about-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.about-text h2 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
}

.about-description {
  font-size: var(--text-large);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--easing-out);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.3s var(--easing-out);
  transform-origin: left;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--duration-normal) var(--easing-out);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  transition: transform var(--duration-normal) var(--easing-out);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  color: white;
}

.feature-item:hover .feature-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.feature-text h3 {
  color: var(--text-primary);
  font-size: var(--text-large);
  margin-bottom: var(--space-sm);
}

.feature-text p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (max-width: 1024px) {
  .about-features {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-item {
    padding: var(--space-lg);
  }

  .about-description {
    font-size: var(--text-body);
  }
}

/* Services Section */
.services-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--background) 100%);
}

.services-header,
.about-text,
.why-choose-header,
.testimonials-header,
.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2,
.about-text h2,
.why-choose-header h2,
.testimonials-header h2,
.gallery-header h2 {
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    font-size: var(--text-title);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
}.services-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.service-item,
.achievement-item,
.testimonial-card,
.feature-item {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--duration-normal) var(--easing-out);
    position: relative;
    border: 1px solid var(--neutral-100);
}

.service-item:hover,
.achievement-item:hover,
.testimonial-card:hover,
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-100);
}.service-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--easing-out);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.service-content {
  padding: var(--space-xl);
  background: var(--background);
  position: relative;
}

.service-content h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-large);
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: var(--leading-relaxed);
}

.custom-service {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--easing-out);
  border: 1px solid rgba(255,255,255,0.1);
}

.custom-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.custom-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23000000" fill-opacity="0.05"/></svg>');
  opacity: 0.5;
}

.custom-service-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.custom-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
  transition: all var(--duration-normal) var(--easing-out);
}

.custom-service:hover .custom-service-icon {
  transform: rotateY(180deg);
}

.custom-service-icon svg {
  width: 40px;
  height: 40px;
  transition: all var(--duration-normal) var(--easing-out);
}

.custom-service h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-subtitle);
  line-height: 1.2;
}

.custom-service h3 span {
  display: block;
  color: var(--primary);
}

.custom-service p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-large);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-relaxed);
}

.custom-service-cta {
  display: inline-flex;
  position: relative;
}

.custom-service-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-large);
  transition: all var(--duration-normal) var(--easing-out);
}

.custom-service-cta .btn svg {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-normal) var(--easing-out);
}

.custom-service-cta .btn:hover svg {
  transform: translateX(5px);
}

.custom-service-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-300) 100%);
  border-radius: var(--radius-full);
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation: floatShape 20s infinite alternate;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  right: -75px;
  animation: floatShape 15s infinite alternate-reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 10%;
  animation: floatShape 10s infinite alternate;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(20px, 20px) rotate(360deg);
  }
}

/* Gallery Section */
.gallery-section {
  padding: var(--space-3xl) 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-200) 25%, 
    var(--accent-200) 50%, 
    var(--primary-200) 75%, 
    transparent 100%
  );
  opacity: 0.3;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.gallery-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.gallery-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: 0 auto;
  max-width: var(--container-max-width);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}



.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing-out);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, 
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.4s var(--easing-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery-caption {
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s var(--easing-out);
}

.gallery-caption h4 {
  color: white;
  font-size: var(--text-large);
  margin-bottom: var(--space-xs);
}

.gallery-caption p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-body);
  margin: 0;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  
  gap: var(--space-sm);
  
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Add responsive styles */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  
  .hero-title {
    font-size: var(--text-hero-mobile);
  }
  
  .hero-subtitle {
    font-size: var(--text-large);
    padding: 0 var(--space-md);
  }
  
  .hero-subtitle::before,
  .hero-subtitle::after {
    font-size: 3em;
  }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--background) 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.testimonials-header .section-tag {
    display: block;
    width: fit-content;
    margin: 0 auto var(--space-md);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--text-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-medium);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.testimonials-header .section-title {
    color: var(--text-primary);
    margin: 0;
    position: relative;
    display: block;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-100);
    transition: all var(--duration-normal) var(--easing-out);
}

.testimonial-card:hover {
    border-color: var(--primary-100);
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: var(--text-body);
    line-height: var(--leading-relaxed);
    margin: 0 0 var(--space-sm) 0;
    font-style: italic;
}

.testimonial-card .username {
    color: var(--primary);
    font-size: var(--text-small);
    font-weight: var(--font-medium);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card p {
        font-size: var(--text-body);
    }
}





/* Professional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp var(--duration-slow) var(--easing-out) forwards;
}

.animate-left {
  opacity: 0;
  animation: slideInLeft var(--duration-slow) var(--easing-out) forwards;
}

.animate-right {
  opacity: 0;
  animation: slideInRight var(--duration-slow) var(--easing-out) forwards;
}

.animate-scale {
  opacity: 0;
  animation: scaleIn var(--duration-slow) var(--easing-out) forwards;
}

/* Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-link {
    font-size: 12px;
    padding: var(--space-xs) calc(var(--space-xs) * 0.8);
  }

  .btn {
    padding: 10px var(--space-md);
  }
}

@media (max-width: 1024px) {
  :root {
    --text-hero: 56px;
    --text-title: 40px;
    --text-subtitle: 28px;
  }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .nav-menu {
    display: none;
  }
  
  .nav-container {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  :root {
    --text-hero: var(--text-hero-mobile);
    --text-title: var(--text-title-mobile);
    --text-subtitle: var(--text-subtitle-mobile);
    --space-3xl: var(--space-xl);
    --space-2xl: var(--space-lg);
  }
  
  .container,
  .container-wide {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero-content {
    padding: var(--space-xl) var(--space-sm);
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;  /* Show nav toggle on small screens */
  }

  .nav a.btn.btn-primary {
    display: none;  /* Hide the primary button in navbar on small screens */
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    gap: var(--space-md);
  }
  
  .trust-badge {
    height: 32px;
  }
  
  .tabs {
    flex-direction: column;
  }
  
  .service-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  
  .hero-ctas {
    gap: var(--space-sm);
  }
  
  .trust-badges {
    gap: var(--space-sm);
  }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
    color: var(--neutral-200);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--neutral-700);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary-700) 50%,
        var(--primary) 100%
    );
    box-shadow: 0 0 20px var(--primary-500);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--primary-900) 0%, transparent 60%),
                radial-gradient(circle at bottom left, var(--primary-900) 0%, transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.footer-top {
    padding: var(--space-3xl) 0 var(--space-2xl);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-company h3 {
    color: white;
    font-size: var(--text-subtitle);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--primary-300) 0%, var(--primary-500) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.footer-company h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-full);
}

.footer-company p {
    color: var(--neutral-300);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
    font-size: var(--text-body);
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--neutral-300);
    transition: all var(--duration-normal) var(--easing-out);
    padding: var(--space-xs) 0;
    border-radius: var(--radius-sm);
}

.contact-item:hover {
    color: var(--primary-200);
    transform: translateX(5px);
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.05));
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-300);
}

.footer h4 {
    color: white;
    font-size: var(--text-large);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-xs);
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary-700) 50%,
        transparent 100%
    );
    border-radius: var(--radius-full);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: calc(var(--space-xs) * 0.75);  /* Reduced from space-sm */
}

.footer-links ul a,
.footer-services ul a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: all var(--duration-normal) var(--easing-out);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: calc(var(--space-xs) * 0.5) 0;  /* Reduced padding */
    position: relative;
    width: fit-content;
}

.footer-links ul a::before,
.footer-services ul a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-300) 100%);
    transition: width 0.3s var(--easing-out);
    border-radius: var(--radius-full);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--primary-200);
    transform: translateX(5px);
}

.footer-links ul a:hover::before,
.footer-services ul a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-700) 0%, var(--neutral-800) 100%);
    border-radius: var(--radius-full);
    color: white;
    transition: all var(--duration-normal) var(--easing-out);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--easing-out);
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--easing-out);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-900) 25%,
        var(--primary-900) 75%,
        transparent 100%
    );
}

.footer-bottom p {
    color: var(--neutral-400);
    margin: 0;
    font-size: var(--text-small);
}

.footer-bottom a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: all var(--duration-normal) var(--easing-out);
    position: relative;
    padding: 0 var(--space-xs);
}

.footer-bottom a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--easing-out);
}

.footer-bottom a:hover {
    color: var(--primary-200);
}

.footer-bottom a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-company,
    .footer-links,
    .footer-services,
    .footer-social {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact Page Styles */
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--duration-normal) var(--easing-out);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: var(--text-large);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-description {
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

.service-description a {
    color: var(--primary);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: color var(--duration-normal) var(--easing-out);
}

.service-description a:hover {
    color: var(--primary-700);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-sm);
}

.coverage-item {
    background: var(--primary-50);
    color: var(--primary-700);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: var(--font-medium);
    transition: all var(--duration-normal) var(--easing-out);
}

.coverage-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Professional FAQ Styles */
.faq-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(233, 30, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--background);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-50), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    user-select: none;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-xl);
    right: var(--space-xl);
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        var(--neutral-200),
        transparent
    );
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: var(--text-body);
    color: var(--text-primary);
    font-weight: var(--font-medium);
    transition: all 0.4s ease;
    position: relative;
    padding-right: var(--space-xl);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--primary-50);
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    transform-origin: center;
    border: 2px solid transparent;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item:hover .faq-toggle {
    background: var(--primary-100);
    transform: scale(1.1);
    border-color: var(--primary-200);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    padding: 0 var(--space-xl);
    transform: translateY(-10px);
}

.faq-answer p {
    margin: 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--neutral-100);
}

/* Active States */
.faq-item.active {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-200);
    transform: translateY(-2px);
    background: linear-gradient(
        to right,
        rgba(233, 30, 99, 0.02),
        rgba(233, 30, 99, 0.05)
    );
}

.faq-item.active::before {
    opacity: 0.1;
}

.faq-item.active .faq-question::after {
    opacity: 0;
}

.faq-item.active .faq-question {
    background: transparent;
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
    transform: translateX(10px);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(135deg) scale(1.1);
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Hover States */
.faq-item:hover {
    border-color: var(--primary-200);
}

.faq-question:hover h3 {
    color: var(--primary);
    transform: translateX(10px);
}

/* FAQ Animation Keyframes */
@keyframes faqSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Grid Layout */
.faq-grid {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-question:hover .faq-toggle {
    transform: rotate(45deg) scale(1.1);
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: var(--space-md);
    }
    
    .faq-answer {
        padding: 0 var(--space-md);
    }
    
    .faq-item.active .faq-answer {
        padding: var(--space-md);
        padding-top: 0;
    }
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-lg);
    background: var(--neutral-50);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: var(--font-medium);
    font-size: var(--text-large);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--duration-normal) var(--easing-out);
    position: relative;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    transition: all var(--duration-normal) var(--easing-out);
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.faq-question:hover {
    color: var(--primary);
    background: var(--primary-50);
    transform: translateX(5px);
}

.faq-question.active {
    color: var(--primary);
    background: var(--primary-50);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    background: white;
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-normal) var(--easing-out);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: var(--leading-relaxed);
}

.faq-answer p {
    margin: 0;
    padding: var(--space-lg);
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--duration-normal) var(--easing-out);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer.active p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .faq-question {
        font-size: var(--text-body);
        padding: var(--space-sm) 0;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: var(--space-3xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-200) 25%, 
        var(--primary-300) 50%, 
        var(--primary-200) 75%, 
        transparent 100%
    );
    opacity: 0.3;
}

.why-choose-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.why-choose-header .section-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--text-small);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-medium);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.why-choose-header h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.why-choose-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-full);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-md);
}

.achievement-item {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--duration-normal) var(--easing-out);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--neutral-100);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent-100);
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s var(--easing-out);
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary-700);
    transition: all var(--duration-normal) var(--easing-out);
}

.achievement-item:hover .achievement-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.achievement-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.achievement-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-large);
}

.achievement-item p {
    color: var(--text-secondary);
    font-size: var(--text-body);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.achievement-stars,
.achievement-count,
.achievement-availability,
.achievement-price,
.achievement-badge {
    font-size: var(--text-subtitle);
    font-weight: var(--font-bold);
    color: var(--primary);
    font-family: var(--font-heading);
}

.achievement-stars {
    color: #FFD700;
}

.achievement-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: var(--text-title);
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--space-md);
        padding: var(--space-sm);
    }

    .achievement-item {
        padding: var(--space-lg);
    }

    .achievement-icon {
        width: 56px;
        height: 56px;
    }

    .achievement-icon svg {
        width: 28px;
        height: 28px;
    }
}