/* Elite Deep Cleaner - Professional Design System */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* Elite Color System & Variables */
:root {
  /* Elite Primary Colors */
  --elite-primary: #1e40af;
  --elite-primary-light: #3b82f6;
  --elite-primary-dark: #1e3a8a;
  --elite-secondary: #7c3aed;
  --elite-accent: #f59e0b;
  --elite-gold: #fbbf24;
  
  /* Elite Gradients */
  --elite-gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --elite-gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --elite-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --elite-gradient-premium: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #f59e0b 100%);
  
  /* Elite Neutrals */
  --elite-white: #ffffff;
  --elite-gray-50: #f8fafc;
  --elite-gray-100: #f1f5f9;
  --elite-gray-200: #e2e8f0;
  --elite-gray-300: #cbd5e1;
  --elite-gray-400: #94a3b8;
  --elite-gray-500: #64748b;
  --elite-gray-600: #475569;
  --elite-gray-700: #334155;
  --elite-gray-800: #1e293b;
  --elite-gray-900: #0f172a;
  
  /* Elite Semantic Colors */
  --elite-success: #059669;
  --elite-warning: #d97706;
  --elite-error: #dc2626;
  --elite-info: #0284c7;
  
  /* Elite Shadows */
  --elite-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --elite-shadow-base: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --elite-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --elite-shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --elite-shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Elite Typography */
  --elite-font-display: 'Playfair Display', serif;
  --elite-font-body: 'Inter', sans-serif;
  --elite-font-heading: 'Poppins', sans-serif;
  
  /* Elite Spacing */
  --elite-space-xs: 0.5rem;
  --elite-space-sm: 1rem;
  --elite-space-md: 1.5rem;
  --elite-space-lg: 2rem;
  --elite-space-xl: 3rem;
  --elite-space-2xl: 4rem;
  --elite-space-3xl: 6rem;
  
  /* Backward Compatibility */
  --primary-50: var(--elite-gray-50);
  --primary-100: var(--elite-gray-100);
  --primary-200: var(--elite-gray-200);
  --primary-300: var(--elite-gray-300);
  --primary-400: var(--elite-primary-light);
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  
  --secondary-500: #f59e0b;
  --secondary-600: #d97706;
  
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  --success-500: #10b981;
  --error-500: #ef4444;
  --warning-500: #f59e0b;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --border-radius-sm: 0.375rem;
  --border-radius: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--elite-font-body);
  background-color: var(--elite-gray-50);
  color: var(--elite-gray-800);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Main content positioning to account for fixed navbar */
main {
  margin-top: 0;
  padding-top: 0; /* Remove padding, let hero handle spacing */
}

/* Hero section positioning - minimal top spacing */
.hero-section {
  margin-top: 70px !important; /* Just enough for navbar */
  padding-top: 2rem;
}

/* Hero slideshow adjustments for navbar */
.hero-slideshow {
  height: calc(100vh - 120px) !important; /* Subtract navbar height */
  margin-top: 0 !important;
  position: relative;
  overflow: hidden;
}

/* Enhanced hero image visibility */
.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Enhanced mobile image presentation - Image Only */
@media (max-width: 768px) {
  .hero-image {
    max-width: 90% !important;
    max-height: 70vh !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: brightness(1.1) contrast(1.05) saturate(1.1) !important;
    transform: none !important;
    transition: all 0.3s ease !important;
  }
  
  .hero-image:hover {
    transform: scale(1.02) !important;
    filter: brightness(1.15) contrast(1.1) saturate(1.15) !important;
  }
  
  /* Full screen mobile layout */
  .hero-slide .min-vh-75 {
    min-height: 100vh !important;
  }
  
  /* Clean image presentation */
  .hero-image-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

.hero-slide:hover .hero-image {
  filter: brightness(1.15) contrast(1.15) saturate(1.3);
  transform: scale(1.02);
}

/* Hero slide backgrounds with better visibility */
.hero-slide {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  z-index: 3;
}

/* Remove any extra spacing from sections */
.section-padding {
  padding: 4rem 0 !important;
}

/* ===== MOBILE HERO OPTIMIZATION ===== */

/* Hero Mobile Responsiveness */
/* Mobile Hero Design - Image Only */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 100vh !important;
    min-height: 100vh !important;
    margin-top: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  
  .hero-slide {
    padding: 1rem 0 !important;
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
  
  .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
  }
  
  .hero-slide .container {
    max-width: 100% !important;
    padding: 0 1rem !important;
    width: 100% !important;
  }
  
  .hero-slide .row {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 90vh !important;
  }
  
  .hero-visual {
    order: 1;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-content {
    order: 2;
    width: 100% !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin: 0 0.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .hero-slideshow {
    height: 100vh !important;
    min-height: 100vh !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  
  .hero-slide {
    padding: 0.5rem 0 !important;
    height: 100vh !important;
    min-height: 100vh !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
  
  .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
  }
  
  .hero-visual {
    padding: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-image {
    max-width: 75% !important;
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: brightness(1.1) contrast(1.05) saturate(1.1) !important;
  }
  
  .hero-content {
    padding: 1.5rem 1.25rem !important;
    margin: 0 0.25rem !important;
    border-radius: 18px !important;
  }
  
  .hero-title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
  }
  
  .hero-description {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
    color: #4a5568 !important;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 0.8rem 1.25rem !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }
  
  .hero-actions .btn-hero-primary {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  }
  
  .hero-actions .btn-hero-secondary {
    background: transparent !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
  }
  
  .hero-badge {
    margin-bottom: 1rem !important;
  }
  
  .hero-badge .badge {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
  }
  
  .trust-indicators {
    display: flex !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
  }
  
  .trust-item {
    text-align: center !important;
    flex: 1 !important;
  }
  
  .trust-number {
    font-size: 1.2rem !important;
    color: #667eea !important;
    font-weight: 700 !important;
  }
  
  .trust-label {
    font-size: 0.7rem !important;
    color: #6b7280 !important;
    margin-top: 0.2rem !important;
  }
  
  /* Elite Features and Booking Benefits Styles */
  .elite-features,
  .booking-benefits {
    display: flex !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
  }
  
  .feature-item,
  .benefit-item {
    text-align: center !important;
    flex: 1 !important;
    padding: 0.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .feature-icon,
  .benefit-icon {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    margin-bottom: 0.3rem !important;
  }
  
  .feature-text,
  .benefit-text {
    font-size: 0.7rem !important;
    color: #ffffff !important;
    font-weight: 500 !important;
  }
  
  /* Hide floating cards on mobile for clean design */
  .floating-cards,
  .service-float-card {
    display: none !important;
  }
  
  /* Hide floating cards on mobile for clean design */
  .floating-cards,
  .service-float-card {
    display: none !important;
  }
  
  /* Force hero to be the only visible section on mobile */
  body {
    overflow-x: hidden !important;
  }
  
  /* Ensure full width layout */
  .hero-slide .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
  }
  
  .hero-slide .col-lg-6.hero-visual,
  .hero-slide .col-lg-6.hero-content {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: auto !important;
  }
  
  .trust-label,
  .step-text,
  .price-text {
    font-size: 0.75rem;
  }
  
  .hero-image {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .floating-cards {
    display: none !important; /* Hide floating cards on mobile for better performance */
  }
  /* Slider controls removed for continuous auto-slide */
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-slideshow {
    height: calc(100vh - 80px) !important;
  }
  
  .hero-title {
    font-size: 2.25rem !important;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    flex: 1;
    max-width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-slideshow {
    height: calc(100vh - 100px) !important;
  }
  
  .hero-title {
    font-size: 2.75rem !important;
  }
}

/* Responsive adjustments for larger screens */
@media (max-width: 767px) {
  .hero-section {
    margin-top: 60px !important;
  }
}

.container {
  max-width: 1200px;
}

/* Elite Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--elite-font-heading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.elite-display-title {
  font-family: var(--elite-font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient-primary {
  background: var(--elite-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--elite-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Elite Button System */
.elite-btn-primary {
  background: var(--elite-gradient-primary);
  border: none;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--elite-shadow-base);
}

.elite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--elite-shadow-lg);
  color: white;
}

.elite-btn-secondary {
  background: var(--elite-white);
  border: 2px solid var(--elite-primary);
  color: var(--elite-primary);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.elite-btn-secondary:hover {
  background: var(--elite-primary);
  color: white;
  transform: translateY(-2px);
}

.elite-btn-outline {
  background: transparent;
  border: 2px solid var(--elite-white);
  color: var(--elite-white);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.elite-btn-outline:hover {
  background: var(--elite-white);
  color: var(--elite-primary);
  transform: translateY(-2px);
}

.btn-gradient-primary {
  background: var(--elite-gradient-primary);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--elite-shadow-base);
}

.btn-gradient-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--elite-shadow-lg);
  color: white;
}

/* Typography (Enhanced) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--elite-font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  font-size: 0.875rem;
  font-weight: 500;
}

.top-bar i {
  color: var(--primary-200);
}

/* Elite Top Bar */
.elite-top-bar {
  background: var(--elite-gradient-primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elite-contact-item {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.elite-contact-item i {
  color: rgba(255, 255, 255, 0.8);
  width: 16px;
}

.elite-badges .badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* Elite Navigation */
.elite-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--elite-gray-200);
  box-shadow: var(--elite-shadow-lg);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
}

.elite-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.elite-logo-container {
  display: flex;
  align-items: center;
}

.elite-logo-icon {
  width: 50px;
  height: 50px;
  background: var(--elite-gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--elite-shadow-base);
}

.elite-logo-icon i {
  font-size: 24px;
  color: white;
}

.elite-logo-text .brand-name {
  font-family: var(--elite-font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--elite-gray-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.elite-logo-text .brand-subtitle {
  font-family: var(--elite-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--elite-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.elite-nav-menu {
  gap: 32px;
}

.elite-nav-link {
  font-weight: 600;
  color: var(--elite-gray-700);
  padding: 12px 0;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.elite-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--elite-gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.elite-navbar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.elite-phone-cta {
  text-align: right;
  line-height: 1.3;
}

.elite-phone-cta small {
  font-size: 12px;
  display: block;
}

.elite-phone-cta .fw-bold {
  font-size: 16px;
  font-weight: 700;
}

.elite-book-btn {
  background: var(--elite-gradient-gold);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--elite-shadow-base);
}

.elite-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--elite-shadow-lg);
  color: white;
}

.elite-toggler {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--elite-gray-100);
}

.elite-toggler:focus {
  box-shadow: none;
}

/* Navigation (Legacy) */
.navbar-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  text-decoration: none;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.brand-name {
  font-size: 1.5rem;
  color: var(--gray-800);
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--primary-600);
  font-weight: 500;
  display: block;
  line-height: 1;
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-600);
  background-color: var(--primary-50);
}

/* Custom navbar toggler */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 24px;
  height: 18px;
}

.navbar-toggler-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--gray-700);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Elite Hero Section */
.elite-hero-badge .badge {
  background: var(--elite-gradient-gold);
  color: white;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--elite-shadow-base);
}

.elite-hero-title {
  font-family: var(--elite-font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 24px 0;
}

.elite-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 600px;
}

.elite-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.elite-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.elite-feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.elite-trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.elite-stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.elite-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--elite-shadow-xl);
  background: rgba(255, 255, 255, 0.15);
}

.elite-stat-icon {
  width: 60px;
  height: 60px;
  background: var(--elite-gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--elite-shadow-base);
}

.elite-stat-icon i {
  font-size: 24px;
  color: white;
}

.elite-stat-number {
  font-family: var(--elite-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.elite-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Elite Service Cards */
.elite-service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--elite-shadow-base);
  border: 1px solid var(--elite-gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.elite-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elite-shadow-xl);
  border-color: var(--elite-primary-light);
}

.elite-service-icon {
  width: 80px;
  height: 80px;
  background: var(--elite-gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--elite-shadow-base);
}

.elite-service-icon i {
  font-size: 36px;
  color: white;
}

.elite-service-title {
  font-family: var(--elite-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--elite-gray-900);
  margin-bottom: 12px;
}

.elite-service-price {
  font-family: var(--elite-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--elite-primary);
  margin-bottom: 16px;
}

.elite-service-description {
  color: var(--elite-gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Hero Section Slideshow - Fixed */
.hero-slideshow {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero Slide Base Styles */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Slide Controls */
.slide-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

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

.slide-dot.active {
  background: white;
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Slider controls removed - continuous auto-slide only */

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.min-vh-75 {
  min-height: 75vh;
}

/* Hero Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.2s; }
.animate-fade-up.delay-2 { animation-delay: 0.4s; }
.animate-fade-up.delay-3 { animation-delay: 0.6s; }
.animate-fade-up.delay-4 { animation-delay: 0.8s; }

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s ease-out 0.3s forwards;
}

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

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge .badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 1.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Trust Indicators Enhanced */
.trust-indicators {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  text-align: center;
  min-width: 120px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.trust-number::after {
  content: '+';
  opacity: 0.8;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin: 0 auto 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Feature Highlights */
.elite-features,
.booking-benefits,
.price-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.price-item,
.feature-item,
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-icon,
.feature-icon,
.benefit-icon {
  font-size: 1.25rem;
}

.price-text,
.feature-text,
.benefit-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Service Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-float-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-800);
  animation: float 3s ease-in-out infinite;
}

.service-float-card i {
  color: var(--primary-600);
  font-size: 1.125rem;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  left: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

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

/* Slider controls removed for continuous auto-slide */

/* Counter Animation */
.counter {
  display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
  background: #fafbfc;
}

.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(100%);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.customer-avatar {
  flex-shrink: 0;
}

.avatar-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-200);
  box-shadow: var(--shadow-md);
}

.customer-info {
  flex-grow: 1;
}

.customer-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.customer-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-used {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 500;
}

.location {
  color: var(--gray-500);
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: var(--gray-300);
  font-size: 1.125rem;
}

.rating i.active {
  color: var(--secondary-500);
}

.testimonial-content {
  flex-grow: 1;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 3rem;
  color: var(--primary-200);
  z-index: 1;
}

.review-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.verified-badge i {
  color: var(--success-500);
}

.review-date {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Testimonials Navigation */
.testimonials-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 -2rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  color: var(--gray-600);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
  transform: scale(1.1);
}

.prev-testimonial {
  margin-left: -25px;
}

.next-testimonial {
  margin-right: -25px;
}

/* Testimonials Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary-600);
  transform: scale(1.2);
}

/* Testimonials Stats */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}

.testimonials-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.testimonials-stats .stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.testimonials-stats .stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonials-stats .stars i {
  color: var(--secondary-500);
  font-size: 1rem;
}

/* Badge Variants */
.bg-warning-light {
  background-color: #fffbeb !important;
  color: #d97706 !important;
  border: 1px solid #fed7aa;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials-slider-container {
    padding: 1rem 0;
  }
  
  .testimonials-slider {
    height: auto;
    min-height: 350px;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .customer-details {
    justify-content: center;
  }
  
  .testimonial-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .testimonials-nav {
    padding: 0 1rem;
  }
  
  .prev-testimonial {
    margin-left: 0;
  }
  
  .next-testimonial {
    margin-right: 0;
  }
  
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 1.5rem 0;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Hero Buttons */
.btn-hero-primary {
  background: white;
  color: var(--primary-600);
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--primary-700);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Trust Indicators */
.trust-indicators {
  margin-top: 3rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  text-align: center;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Image */
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Section Styles */
/* General Section Padding */
.section-padding {
  padding: 5rem 0;
}

/* Section Gaps Fix */
section {
  margin: 0;
  position: relative;
}

section + section {
  border-top: none;
}

/* Specific section adjustments */
.hero-slideshow {
  margin-bottom: 0;
}

.popular-services {
  margin-top: 0;
}

.categories-section {
  margin: 0;
}

.how-it-works-section {
  margin: 0;
}

.cta-section {
  margin: 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge .badge {
  background: var(--primary-50);
  color: var(--primary-700);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.875rem;
  border: 1px solid var(--primary-200);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--secondary-600);
  font-weight: 500;
  font-size: 0.875rem;
}

.service-rating i {
  color: var(--secondary-500);
}

.service-actions {
  display: flex;
  gap: 0.75rem;
}

/* Service Action Buttons */
.btn-service-book {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-service-book:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-service-details {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--gray-300);
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.btn-service-details:hover {
  background: var(--gray-200);
  color: var(--gray-800);
  border-color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-actions {
    flex-direction: column;
  }
}

/* Features Section */
.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--border-radius-xl);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  background: white;
  border-color: var(--primary-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-500), var(--secondary-600));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.category-icon i {
  font-size: 1.75rem;
  color: white;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: left;
}

.category-list li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.category-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.4rem;
}

.category-count {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f1f5f9" stroke-width="0.5"/></pattern></defs><rect width="100" height="20" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.how-it-works-section .container {
  position: relative;
  z-index: 1;
}

.how-it-works-section .steps-container {
  position: relative;
}

.how-it-works-section .steps-container::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  z-index: 0;
}

.how-it-works-section .step-item {
  position: relative;
  z-index: 1;
}

.how-it-works-section .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 3px solid white;
}

.how-it-works-section .step-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.how-it-works-section .step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.how-it-works-section .step-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.how-it-works-section .step-title::before {
  content: '→';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.how-it-works-section .step-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

.process-visual {
  text-align: center;
  position: relative;
}

.process-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.process-visual img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Process Illustration */
.process-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Elite Services Specific Styles */
.elite-services-hero {
  position: relative;
  overflow: hidden;
}

.elite-services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13,110,253,0.1) 0%, rgba(255,193,7,0.1) 100%);
  z-index: 1;
}

.elite-services-hero .container {
  position: relative;
  z-index: 2;
}

.elite-services-stats {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.elite-stat-card {
  text-align: center;
  padding: 1rem;
}

.elite-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.elite-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Elite Category Cards */
.elite-category-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.elite-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: var(--elite-gold);
}

.elite-category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.elite-category-title {
  color: var(--elite-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.elite-category-desc {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Elite Service Cards Enhancement */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient-gold);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-color: var(--elite-gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
}

.service-title {
  color: var(--elite-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 12px;
}

.service-price {
  color: var(--elite-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.service-rating {
  color: var(--elite-gold);
  font-weight: 600;
}

.service-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-service-book {
  background: var(--bg-gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.btn-service-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,110,253,0.4);
  color: var(--white);
}

.btn-service-details {
  background: transparent;
  color: var(--elite-primary);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--elite-primary);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-service-details:hover {
  background: var(--elite-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Elite Footer Enhancements */
.elite-logo-bg {
  background: var(--bg-gradient-gold) !important;
}

.elite-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--elite-primary);
  background: var(--text-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elite-brand-tagline {
  font-size: 0.8rem;
  color: var(--elite-gold);
  font-weight: 500;
}

/* Elite Booking Form Styles */
.elite-booking-sidebar {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  overflow: visible;
  border: 2px solid var(--elite-gold);
  position: sticky;
  top: 20px;
  z-index: 10;
}

/* Booking Form Container */
.booking-form-container {
  position: relative;
}

.booking-form-container .row {
  align-items: flex-start;
}

.elite-booking-info {
  padding: 2rem;
}

.elite-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light);
}

.elite-selected-service {
  background: var(--bg-gradient-primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.elite-service-name {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.elite-service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--elite-gold);
}

.elite-service-placeholder {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

.elite-guarantees {
  margin-bottom: 2rem;
}

.elite-guarantee-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.elite-booking-process {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
}

.elite-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.step-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--elite-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 0.75rem;
}

.elite-booking-header {
  text-align: center;
}

/* Responsive booking layout */
@media (max-width: 767px) {
  .elite-booking-sidebar {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
  
  .booking-form-container .col-md-6:last-child {
    order: 2;
  }
}

@media (min-width: 768px) {
  .elite-booking-sidebar {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

/* Elite Homepage Styles */
.elite-hero-main {
  position: relative;
  overflow: hidden;
}

.elite-hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13,110,253,0.1) 0%, rgba(255,193,7,0.1) 100%);
  z-index: 1;
}

.elite-hero-main .container {
  position: relative;
  z-index: 2;
}

.text-gold {
  color: var(--elite-gold) !important;
}

.elite-contact-info {
  font-size: 0.9rem;
}

.elite-trust-section {
  border-top: 3px solid var(--elite-gold);
}

.elite-trust-item {
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.elite-trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Elite Feature Cards */
.elite-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.elite-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: var(--elite-gold);
}

.elite-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.elite-feature-title {
  color: var(--elite-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.elite-feature-description {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Elite CTA Section */
.elite-cta-section {
  position: relative;
  overflow: hidden;
}

.elite-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.elite-cta-section .container {
  position: relative;
  z-index: 2;
}

.elite-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.elite-cta-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

.elite-btn-gold {
  background: var(--bg-gradient-gold);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.elite-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,193,7,0.4);
  color: var(--white);
}

.elite-btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border: 2px solid var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.elite-btn-outline-white:hover {
  background: var(--white);
  color: var(--elite-primary);
  transform: translateY(-2px);
}

/* Elite Testimonials */
.elite-testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--elite-gold);
}

.elite-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.elite-testimonial-rating {
  margin-bottom: 1rem;
}

.elite-testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.elite-testimonial-author {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Elite Hero Slider Styles */
.elite-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  background: linear-gradient(135deg, #0d6efd 0%, #ffc107 100%);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.elite-hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-slide.active .elite-hero-content {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

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

/* Hero Navigation */
.hero-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-nav-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: all;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

/* Hero Contact Bar */
.hero-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.hero-contact-bar .text-gold {
  color: var(--elite-gold) !important;
}

/* Elite Services Showcase */
.elite-services-showcase {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.showcase-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--elite-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.showcase-text {
  flex: 1;
  color: var(--white);
  font-weight: 500;
}

.showcase-price {
  color: var(--elite-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Gradient Backgrounds */
.bg-gradient-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

/* Responsive Design */
@media (max-width: 768px) {
  .elite-hero-slider {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-prev {
    left: 15px;
  }
  
  .hero-next {
    right: 15px;
  }
  
  .hero-contact-bar {
    position: relative;
    text-align: center;
  }
  
  .elite-services-showcase {
    margin-top: 2rem;
  }
  
  .showcase-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .showcase-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.illustration-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.illustration-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.illustration-card.step-1 .card-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.illustration-card.step-2 .card-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.illustration-card.step-3 .card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.8rem;
}

.illustration-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.illustration-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .process-illustration {
    gap: 1rem;
  }
  
  .illustration-card {
    width: 160px;
    padding: 1.5rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* CTA Section Stats */
.cta-stats {
  margin-top: 3rem;
}

.cta-stat {
  text-align: center;
  color: white;
}

.cta-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.category-count {
  color: var(--gray-600);
  font-weight: 500;
  margin: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="80%" cy="20%" r="200" fill="url(%23b)"/><circle cx="20%" cy="80%" r="300" fill="url(%23b)"/></svg>') no-repeat center center;
  background-size: cover;
}

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

.cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

/* Badge Variants */
.bg-primary-light {
  background-color: var(--primary-50) !important;
  color: var(--primary-700) !important;
  border: 1px solid var(--primary-200);
}

.bg-success-light {
  background-color: #f0fdf4 !important;
  color: #15803d !important;
  border: 1px solid #bbf7d0;
}

/* Utility Classes */
.text-primary { color: var(--primary-600) !important; }
.text-secondary { color: var(--secondary-600) !important; }
.bg-primary { background-color: var(--primary-600) !important; }
.bg-secondary { background-color: var(--secondary-600) !important; }

/* Button Enhancements */
.btn {
  font-weight: 500;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-secondary {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background: white;
}

.btn-outline-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-800);
}

/* Navigation Enhancements */
.navbar-actions .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

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

.service-card,
.feature-card,
.category-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-actions,
  .cta-actions {
    flex-direction: column;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Footer Styles */
.footer-modern {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 0;
  margin-top: 5rem;
}

.footer-content {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.footer-brand .brand-name,
.footer-brand .elite-brand-name {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-brand .brand-tagline,
.footer-brand .elite-brand-tagline {
  color: var(--primary-400);
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-400);
}

.footer-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
}

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

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

.footer-menu a:hover {
  color: var(--primary-400);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-400);
}

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

.contact-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
}

.contact-value:hover {
  color: var(--primary-400);
}

.social-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-copyright {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.security-badge,
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-800);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  color: var(--gray-400);
}

.security-badge i,
.verified-badge i {
  color: var(--success-500);
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 2rem 0 0;
    margin-top: 3rem;
  }
  
  .footer-content {
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-brand .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .footer-stats {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .footer-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
  }
  
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-details {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .security-badge,
  .verified-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* ===== COMPREHENSIVE MOBILE SERVICE CARDS OPTIMIZATION ===== */

/* Extra Small Devices - Service Cards Mobile */
@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  
  .service-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--elite-gray-600);
  }
  
  .service-meta {
    margin-bottom: 1rem;
  }
  
  .service-rating {
    font-size: 0.8125rem;
  }
  
  .service-actions {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .service-actions .btn,
  .btn-service-book,
  .btn-service-details {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
  }
  
  .btn-service-book {
    background: var(--elite-gradient-primary);
    border: none;
    color: white;
  }
  
  .btn-service-details {
    background: transparent;
    border: 2px solid var(--elite-primary);
    color: var(--elite-primary);
  }
  
  .btn-service-details:hover {
    background: var(--elite-primary);
    color: white;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .service-actions .btn {
    width: 100%;
    font-size: 0.8125rem;
    padding: 0.75rem;
  }
}

/* ===== SECTION MOBILE OPTIMIZATION ===== */

@media (max-width: 575.98px) {
  .section-padding {
    padding: 2.5rem 0 !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    line-height: 1.6;
  }
  
  .section-badge .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  
  /* Why Choose Us Features */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  
  .feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    border-radius: 12px;
  }
  
  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--elite-gray-600);
  }
  
  /* Categories Grid */
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .category-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .category-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .category-count {
    font-size: 0.8125rem;
  }
  
  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .testimonial-card {
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .testimonial-meta {
    font-size: 0.8125rem;
    color: var(--elite-gray-500);
  }
  
  /* Process Steps Mobile */
  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
  }
  
  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .step-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--elite-gray-600);
  }
  
  /* CTA Section Mobile */
  .cta-section {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .footer-modern {
    padding: 1.5rem 0 0;
  }
  
  .footer-brand .logo-text {
    flex-direction: column;
    text-align: center;
  }
  
  .elite-brand-name {
    font-size: 1rem !important;
  }
  
  .elite-brand-tagline {
    font-size: 0.75rem !important;
  }
  
  .footer-description {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
  
  .footer-stats {
    gap: 0.75rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-icon {
    margin-bottom: 0.5rem;
  }
  
  .footer-menu {
    gap: 0.75rem 1.5rem;
  }
  
  .footer-menu a {
    font-size: 0.8125rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}

/* ===== ELITE MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Enhanced Mobile Navigation */
.elite-navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: var(--elite-primary) !important;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.elite-logo-bg {
  background: var(--elite-gradient-primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.elite-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--elite-primary);
}

.elite-brand-tagline {
  font-size: 0.75rem;
  color: var(--elite-gray-600);
  font-weight: 500;
}

/* Elite Mobile Hamburger Menu */
.elite-mobile-toggle {
  border: none;
  padding: 8px;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.elite-mobile-toggle:focus {
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
  outline: none;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--elite-primary) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block !important;
  opacity: 1 !important;
}

.elite-mobile-toggle:hover .hamburger-line {
  background: var(--elite-primary-dark);
}

.elite-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.elite-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.elite-mobile-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Specific Hamburger Visibility */
@media (max-width: 991.98px) {
  .elite-mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hamburger-line {
    background: #1e40af !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Enhanced Navigation Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--elite-gray-700) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--elite-primary) !important;
  background: rgba(30, 64, 175, 0.05);
}

.navbar-nav .nav-link.active {
  color: var(--elite-primary) !important;
  background: rgba(30, 64, 175, 0.1);
  font-weight: 600;
}

/* Elite Action Buttons */
.elite-btn-primary {
  background: var(--elite-gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.elite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.elite-btn-outline {
  border: 2px solid var(--elite-primary);
  color: var(--elite-primary);
  border-radius: 10px;
  padding: 0.625rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.elite-btn-outline:hover {
  background: var(--elite-primary);
  color: white;
}

.elite-btn-call {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ===== MOBILE RESPONSIVE BREAKPOINTS ===== */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
  
  .elite-navbar .container {
    padding: 0 1rem;
  }
  
  .navbar-brand .logo-text {
    display: none;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid var(--elite-gray-200);
  }
  
  .navbar-nav {
    width: 100%;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem !important;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--elite-gray-200);
  }
  
  .navbar-actions .btn {
    width: 100%;
    padding: 1rem !important;
    font-size: 1rem;
  }
  
  .elite-btn-call {
    width: 100%;
    border-radius: 10px;
  }
}

/* ===== MOBILE FORM OPTIMIZATION ===== */

@media (max-width: 575.98px) {
  /* Form Container */
  .booking-form,
  .contact-form,
  .form-container {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 1rem 0;
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--elite-primary);
    margin-bottom: 0.5rem;
  }
  
  .form-subtitle {
    font-size: 0.95rem;
    color: var(--elite-gray-600);
    line-height: 1.6;
  }
  
  /* Form Groups */
  .form-group,
  .mb-3,
  .form-floating {
    margin-bottom: 1.5rem;
  }
  
  /* Labels */
  .form-label,
  label {
    font-weight: 600;
    color: var(--elite-gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  /* Input Fields */
  .form-control,
  .form-select,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--elite-gray-300);
    border-radius: 10px;
    background: white;
    color: var(--elite-gray-800);
    line-height: 1.5;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .form-control:focus,
  .form-select:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--elite-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
  }
  
  /* Textarea */
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Select Dropdown */
  .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 3rem;
  }
  
  /* Form Validation */
  .invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.5rem;
    font-weight: 500;
  }
  
  .is-invalid {
    border-color: #dc2626;
  }
  
  .is-valid {
    border-color: #059669;
  }
  
  /* Form Buttons */
  .form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn-submit,
  .btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--elite-gradient-primary);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  }
  
  .btn-submit:hover,
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.4);
  }
  
  .btn-submit:active,
  .btn-primary:active {
    transform: translateY(0);
  }
  
  .btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: transparent;
    border: 2px solid var(--elite-primary);
    color: var(--elite-primary);
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: var(--elite-primary);
    color: white;
  }
  
  /* Phone Input Special Styling */
  input[type="tel"] {
    padding-left: 3.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 20 20'%3e%3cpath fill-rule='evenodd' d='M2 3.5A1.5 1.5 0 0 1 3.5 2h1.148a1.5 1.5 0 0 1 1.465 1.175l.716 3.223a1.5 1.5 0 0 1-1.052 1.767l-.933.267c-.41.117-.643.555-.48.95a11.542 11.542 0 0 0 6.254 6.254c.395.163.833-.07.95-.48l.267-.933a1.5 1.5 0 0 1 1.767-1.052l3.223.716A1.5 1.5 0 0 1 18 15.352V16.5a1.5 1.5 0 0 1-1.5 1.5H15c-1.149 0-2.263-.15-3.326-.43A13.022 13.022 0 0 1 2.43 8.326 13.019 13.019 0 0 1 2 5V3.5Z' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 18px;
  }
  
  /* Date and Time Inputs */
  input[type="date"],
  input[type="time"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 20 20'%3e%3cpath fill-rule='evenodd' d='M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2Zm-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25H4.75Z' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-left: 3rem;
  }
  
  /* Form Steps */
  .form-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  
  .step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--elite-gray-200);
    color: var(--elite-gray-600);
    transition: all 0.3s ease;
  }
  
  .step.active {
    background: var(--elite-primary);
    color: white;
  }
  
  .step.completed {
    background: #059669;
    color: white;
  }
  
  /* Loading State */
  .form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
  }
  
  .form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--elite-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Error Messages */
  .error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand .elite-brand-name {
    font-size: 1rem;
  }
  
  .navbar-brand .elite-brand-tagline {
    font-size: 0.7rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    border: 1px solid var(--elite-gray-200);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: none;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .elite-mobile-toggle {
    display: none;
  }
}

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
  
  .hero-slideshow {
    height: 90vh;
  }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slideshow {
    height: 80vh;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-slider {
    padding: 0 1rem;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .navbar-actions .nav-action-btn {
    display: none;
  }
}

/* Extra Small Devices (up to 767px) - Mobile First */
@media (max-width: 767px) {
  /* Global Mobile Adjustments */
  body {
    font-size: 0.95rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Navigation Mobile */
  .navbar-glass {
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .nav-action-btn {
    display: none !important;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
  }
  
  /* Hero Section Mobile */
  .hero-slideshow {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero-slide {
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-visual {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem !important;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .trust-indicators {
    flex-direction: column !important;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .trust-item {
    text-align: center;
  }
  
  .floating-cards {
    display: none;
  }
  
  /* Mobile slider controls removed */
  
  /* Sections Mobile */
  .section-padding {
    padding: 2.5rem 0 !important;
  }
  
  .section-title {
    font-size: 1.875rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .service-actions {
    flex-direction: column !important;
    gap: 0.75rem;
  }
  
  .service-actions .btn {
    width: 100%;
    padding: 0.75rem;
  }
  
  /* Features Section Mobile */
  .feature-card {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 1rem;
  }
  
  /* Categories Mobile */
  .categories-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  /* Testimonials Mobile */
  .testimonials-slider {
    padding: 0;
  }
  
  .testimonial-card {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }
  
  .testimonials-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  /* How It Works Mobile */
  .how-it-works-section .steps-container::before {
    display: none;
  }
  
  .how-it-works-section .step-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .step-number {
    position: relative;
    margin: 0 auto 1rem;
  }
  
  .process-illustration {
    margin-top: 2rem;
    text-align: center;
  }
  
  /* Forms Mobile */
  .booking-form-container {
    padding: 0;
    margin: 0;
  }
  
  .form-section {
    padding: 2rem 1.5rem;
  }
  
  .modern-input,
  .modern-select {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  /* Buttons Mobile */
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .btn-primary,
  .btn-outline-light {
    min-height: 48px;
  }
  
  /* CTA Section Mobile */
  .cta-actions {
    flex-direction: column !important;
    gap: 1rem;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .cta-stats .row > div {
    margin-bottom: 1rem;
  }
  
  .cta-stat {
    text-align: center;
  }
  
  .cta-title {
    font-size: 2rem !important;
    text-align: center;
  }
  
  /* Footer Mobile */
  .footer-content .row > div {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Very Small Devices (up to 480px) - Small Mobile */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .hero-title {
    font-size: 1.875rem !important;
  }
  
  .section-title {
    font-size: 1.625rem !important;
  }
  
  .hero-slideshow {
    min-height: 550px;
  }
  
  .hero-description {
    font-size: 0.95rem !important;
    padding: 0 0.5rem;
  }
  
  .hero-actions {
    padding: 0 0.5rem;
  }
  
  .trust-indicators {
    padding: 0 0.5rem;
  }
  
  .service-card,
  .feature-card,
  .category-card,
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .form-section {
    padding: 1.5rem 1rem;
  }
  
  .booking-steps {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .step-item {
    justify-content: center;
  }
  
  .section-subtitle {
    padding: 0 0.5rem;
  }
  
  /* Slider controls removed */
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .service-card:hover,
  .feature-card:hover,
  .category-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  
  .btn:hover {
    transform: none;
  }
  
  /* Increase touch targets */
  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }
  
  /* Slider button/dot styles removed */
  
  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve scrolling on touch devices */
  .testimonials-slider {
    -webkit-overflow-scrolling: touch;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-visual img,
  .process-illustration img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.testimonial-rating {
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #fbbf24;
  margin-right: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-style: italic;
  border: none;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-200);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-location {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.testimonial-summary {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.summary-stat {
  text-align: center;
  padding: 1rem;
}

.summary-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
}

.summary-stat .stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

.summary-stat .stat-stars {
  margin-top: 0.5rem;
}

.summary-stat .stat-stars i {
  color: #fbbf24;
  margin: 0 0.125rem;
}

.bg-success-light {
  background-color: rgba(16, 185, 129, 0.1) !important;
  color: var(--success-500) !important;
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .testimonial-summary {
    padding: 1.5rem;
  }
  
  .summary-stat .stat-number {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .slider-controls,
  .slider-dots,
  .btn,
  .floating-cards,
  .hero-actions,
  .footer-modern {
    display: none !important;
  }
  
  .hero-slideshow {
    height: auto;
    background: white !important;
    color: black !important;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .feature-card,
  .category-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
  
  .hero-title,
  .section-title {
    color: black !important;
  }
}

/* ===== ELITE HOW IT WORKS SECTION ===== */
/* Elite How It Works Section */
.elite-how-it-works-section {
  background: linear-gradient(135deg, var(--elite-gray-50) 0%, var(--elite-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.elite-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--elite-primary) 0.5px, transparent 0.5px),
    radial-gradient(circle at 75% 75%, var(--elite-secondary) 0.5px, transparent 0.5px);
  background-size: 50px 50px;
  opacity: 0.03;
  z-index: 1;
}

.elite-how-it-works-section .container {
  position: relative;
  z-index: 2;
}

/* Elite Steps Container */
.elite-steps-container {
  position: relative;
}

.elite-step-item {
  position: relative;
  margin-bottom: 3rem;
}

.elite-step-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Elite Step Numbers */
.elite-step-number {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--elite-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--elite-shadow-lg);
  border: 4px solid var(--elite-white);
  z-index: 3;
}

.elite-step-digit {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--elite-white);
  font-family: var(--elite-font-heading);
}

.elite-step-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--elite-primary);
  border-radius: 50%;
  animation: elite-pulse 2s infinite;
  opacity: 0.3;
}

@keyframes elite-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Elite Step Content */
.elite-step-content {
  flex: 1;
  background: var(--elite-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--elite-shadow-md);
  border: 1px solid var(--elite-gray-100);
  transition: all 0.4s ease;
  position: relative;
}

.elite-step-content:hover {
  transform: translateY(-8px);
  box-shadow: var(--elite-shadow-xl);
  border-color: var(--elite-primary);
}

.elite-step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--elite-gradient-primary);
  border-radius: 20px 20px 0 0;
}

.elite-step-icon {
  width: 50px;
  height: 50px;
  background: var(--elite-gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--elite-shadow-base);
}

.elite-step-icon i {
  font-size: 1.25rem;
  color: var(--elite-white);
}

.elite-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--elite-gray-800);
  margin-bottom: 1rem;
  font-family: var(--elite-font-heading);
}

.elite-step-description {
  font-size: 1rem;
  color: var(--elite-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.elite-step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.elite-feature-tag {
  background: var(--elite-gray-100);
  color: var(--elite-gray-700);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--elite-gray-200);
}

/* Elite Step Connector */
.elite-step-connector {
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: calc(100% + 1rem);
  background: linear-gradient(to bottom, var(--elite-primary), var(--elite-secondary));
  z-index: 1;
}

.elite-step-item:last-child .elite-step-connector {
  display: none;
}

/* Elite Process Visual */
.elite-process-visual {
  position: relative;
  padding: 2rem;
}

.elite-visual-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--elite-gradient-primary);
  border-radius: 30px;
  opacity: 0.05;
  z-index: 1;
}

.elite-process-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.elite-visual-step {
  background: var(--elite-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--elite-shadow-md);
  border: 2px solid var(--elite-gray-100);
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.elite-visual-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--elite-shadow-lg);
  border-color: var(--elite-primary);
}

.elite-visual-step.step-1 {
  border-left: 4px solid var(--elite-primary);
}

.elite-visual-step.step-2 {
  border-left: 4px solid var(--elite-secondary);
}

.elite-visual-step.step-3 {
  border-left: 4px solid var(--elite-success);
}

.elite-visual-icon {
  width: 70px;
  height: 70px;
  background: var(--elite-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--elite-shadow-base);
}

.elite-visual-step.step-2 .elite-visual-icon {
  background: var(--elite-gradient-secondary);
}

.elite-visual-step.step-3 .elite-visual-icon {
  background: linear-gradient(135deg, var(--elite-success) 0%, #10b981 100%);
}

.elite-visual-icon i {
  font-size: 1.75rem;
  color: var(--elite-white);
}

.elite-visual-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--elite-gray-800);
  margin-bottom: 0.5rem;
  font-family: var(--elite-font-heading);
}

.elite-visual-content p {
  color: var(--elite-gray-600);
  font-size: 0.95rem;
  margin: 0;
}

.elite-visual-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--elite-gradient-gold);
  color: var(--elite-white);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--elite-shadow-base);
}

/* Elite Flow Arrow */
.elite-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.elite-arrow-line {
  width: 2px;
  height: 30px;
  background: var(--elite-gradient-primary);
  border-radius: 2px;
}

.elite-arrow-head {
  margin-top: 0.5rem;
  color: var(--elite-primary);
  font-size: 1.25rem;
  animation: elite-bounce 2s infinite;
}

@keyframes elite-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Elite CTA Section */
.elite-cta-wrapper {
  background: var(--elite-white);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--elite-shadow-lg);
  border: 1px solid var(--elite-gray-100);
  position: relative;
  overflow: hidden;
}

.elite-cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--elite-gradient-primary);
}

.elite-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--elite-gray-800);
  margin-bottom: 0.5rem;
  font-family: var(--elite-font-heading);
}

.elite-cta-subtitle {
  font-size: 1.1rem;
  color: var(--elite-gray-600);
  margin-bottom: 2rem;
}

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

/* Elite Button Styles */
.elite-btn-primary {
  background: var(--elite-gradient-primary);
  border: none;
  color: var(--elite-white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: var(--elite-shadow-base);
}

.elite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--elite-shadow-lg);
  color: var(--elite-white);
}

.elite-btn-outline {
  background: transparent;
  border: 2px solid var(--elite-primary);
  color: var(--elite-primary);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.elite-btn-outline:hover {
  background: var(--elite-primary);
  color: var(--elite-white);
  transform: translateY(-2px);
}

.elite-btn-lg {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

/* Elite Badge Styles */
.elite-badge-primary {
  background: var(--elite-gradient-primary);
  color: var(--elite-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  box-shadow: var(--elite-shadow-base);
  border: none;
}

/* Elite Typography */
.elite-title {
  font-family: var(--elite-font-heading);
  font-weight: 800;
  color: var(--elite-gray-800);
  line-height: 1.2;
}

.elite-subtitle {
  font-family: var(--elite-font-body);
  color: var(--elite-gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .elite-how-it-works-section {
    padding: 60px 0;
  }
  
  .elite-step-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .elite-step-connector {
    display: none;
  }
  
  .elite-visual-step {
    max-width: 100%;
  }
  
  .elite-cta-title {
    font-size: 1.5rem;
  }
  
  .elite-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .elite-step-content {
    padding: 2rem;
  }
  
  .elite-step-number {
    width: 70px;
    height: 70px;
  }
  
  .elite-step-digit {
    font-size: 1.5rem;
  }
}

/* Elite Services Page Styles */
.elite-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--elite-dark);
  margin-bottom: 0.5rem;
}

.elite-page-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.elite-service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.elite-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.elite-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.elite-service-card:hover::before {
  transform: scaleX(1);
}

.elite-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.elite-service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.elite-service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--elite-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.elite-service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.elite-service-meta {
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.elite-service-price {
  font-size: 1.1rem;
}

.elite-service-rating {
  font-size: 0.9rem;
}

.elite-service-actions {
  margin-top: 1.5rem;
}

.elite-service-actions .btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.elite-service-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.elite-service-actions .btn-outline-secondary:hover {
  background: var(--elite-dark);
  border-color: var(--elite-dark);
  color: var(--white);
}

/* Responsive Service Cards */
@media (max-width: 768px) {
  .elite-page-title {
    font-size: 2rem;
  }
  
  .elite-service-card {
    padding: 1.5rem;
  }
  
  .elite-service-icon {
    width: 50px;
    height: 50px;
  }
  
  .elite-service-icon i {
    font-size: 1.25rem;
  }
}

/* Trusted Services Section - Matching Screenshot Layout */
.trusted-services-section {
  position: relative;
  padding: 6rem 0;
  background: white;
  overflow: hidden;
}

/* Trust Feature Cards */
.trust-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.trust-feature-icon {
  width: 80px;
  height: 80px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: white;
}

.trust-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.trust-feature-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Elite Why Section Styles - Professional Design */
.elite-why-section {
  position: relative;
  padding: 6rem 0;
  background: white;
  overflow: hidden;
}

.elite-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.elite-why-section .container {
  position: relative;
  z-index: 2;
}

.elite-why-section .section-header {
  margin-bottom: 4rem;
}

.elite-why-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--elite-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.elite-why-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.elite-feature-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.elite-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06d6a0);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.elite-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.05);
}

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

.elite-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
}

.elite-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 10px 25px rgba(59, 130, 246, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  position: relative;
}

.elite-feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.elite-feature-card:hover .elite-feature-icon::before {
  opacity: 1;
}

.elite-feature-icon i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}

.elite-feature-card:hover .elite-feature-icon i {
  transform: scale(1.1);
}

.elite-feature-content {
  flex: 1;
  padding-top: 0.5rem;
}

.elite-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--elite-dark);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.elite-feature-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 400;
}

.elite-guarantee-banner {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 32px;
  padding: 4rem 3rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(5, 150, 105, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.elite-guarantee-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  z-index: 1;
}

.elite-guarantee-banner > * {
  position: relative;
  z-index: 2;
}

.elite-guarantee-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 
    0 20px 40px rgba(251, 191, 36, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.elite-guarantee-banner:hover .elite-guarantee-icon {
  transform: scale(1.1) rotate(5deg);
}

.elite-guarantee-icon i {
  font-size: 2.5rem;
  color: white;
}

.elite-guarantee-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.02em;
}

.elite-guarantee-text {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.elite-guarantee-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.guarantee-item i {
  font-size: 1.25rem;
  color: #10b981;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .elite-feature-card {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .elite-feature-icon {
    margin: 0 auto 1rem;
  }
  
  .elite-guarantee-banner {
    padding: 2rem 1rem;
  }
  
  .elite-guarantee-title {
    font-size: 1.5rem;
  }
  
  .elite-guarantee-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-secondary {
    margin-top: 1rem !important;
    margin-left: 0 !important;
  }
}

/* All Services Under One Roof Section - Enhanced Design */
.all-services-section {
  position: relative;
  padding: 6rem 0;
  background: white;
}

/* Service Category Cards - Enhanced with Service Lists */
.service-category-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.service-category-icon {
  width: 80px;
  height: 80px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: white;
}

.service-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-list li {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.service-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
  .service-category-card {
    padding: 2rem 1.5rem;
  }
  
  .service-list {
    text-align: center;
  }
  
  .service-list li {
    padding-left: 1rem;
  }
}

/* About Us Page Styles */

/* Utility classes for About page */
.min-vh-50 {
    min-height: 50vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.page-hero {
    background: linear-gradient(135deg, var(--elite-primary) 0%, var(--elite-secondary) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,50 Q250,20 500,50 T1000,50 V100 H0 Z"/></svg>') repeat-x bottom;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--elite-accent);
    border-radius: 2px;
}

.mission-section {
    padding: 80px 0;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(46, 125, 211, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--elite-gray-700);
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cleaning-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0.1;
    font-size: 3rem;
    color: var(--elite-primary);
}

.cleaning-showcase i:nth-child(2) {
    font-size: 4rem;
    color: var(--elite-secondary);
    opacity: 0.15;
}

.cleaning-showcase i:nth-child(3) {
    color: var(--elite-accent);
    opacity: 0.2;
}

.story-section {
    padding: 80px 0;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 211, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    color: var(--elite-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--elite-gray-700);
    line-height: 1.6;
    margin: 0;
}

.why-choose-section {
    padding: 80px 0;
}

.feature-highlight {
    text-align: center;
    padding: 30px 20px;
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--elite-accent);
}

.feature-highlight h5 {
    color: white;
    margin: 20px 0 15px;
    font-weight: 600;
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-buttons {
    margin-bottom: 30px;
}

.contact-info a {
    color: var(--elite-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--elite-secondary);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .mission-card {
        padding: 40px 20px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .mission-icon i {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .cleaning-showcase {
        font-size: 2rem;
        gap: 20px;
    }
    
    .cleaning-showcase i:nth-child(2) {
        font-size: 2.5rem;
    }
    
    .value-card {
        padding: 30px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .feature-highlight {
        padding: 20px 15px;
    }
    
    .feature-highlight i {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
