/* Mobile Navigation v2 - Enhanced Floating Bar */
.mobile-nav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* Full width on smaller screens */
  max-width: 100%; /* Remove max-width restriction */
  background: #0a0a1a; /* Darker background for better contrast */
  border-radius: 0; /* Full width bar needs straight edges */
  display: flex;
  justify-content: space-between; /* Better space distribution for text clarity */
  padding: 14px 8px 20px; /* Increased bottom padding for iPhone home indicator */
  z-index: 1000;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.4); /* Top shadow instead of all around */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  border-top: 1px solid rgba(255,255,255,0.15); /* Only top border */
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  /* iOS-specific optimizations */
  -webkit-transform: translateX(-50%) translateZ(0);
  -webkit-backface-visibility: hidden;
  /* Better accessibility focus indicators */
  outline: none;
  /* Special bottom positioning */
  bottom: 0;
}

.dark-theme .mobile-nav {
  background: rgba(10, 10, 20, 0.97); /* Very dark, nearly opaque background */
  box-shadow: 0 -1px 8px rgba(0,0,0,0.5); /* Top shadow only */
  /* Add subtle gradient to make text more visible */
  background-image: linear-gradient(to bottom, rgba(25, 25, 40, 0.98), rgba(10, 10, 20, 0.99));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Make sure to hide mobile navigation on desktop screens */
@media (min-width: 991px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav.hidden {
  transform: translate(-50%, 100%); /* Move it just out of view */
  opacity: 0;
  visibility: hidden; /* Completely hide it */
  transition: all 0.3s ease;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 1); /* Pure white text for maximum contrast */
  font-size: 0.85rem; /* Adjusted font size */
  font-weight: 600; /* Slightly reduced font weight for cleaner appearance */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 2px; /* Reduced padding for better fit */
  width: 20%; /* Equal width distribution */
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Subtle text shadow for readability */
  min-height: 60px; /* Slightly reduced height */
  /* Improve touch targets */
  margin: 0;
  -webkit-tap-highlight-color: rgba(255, 110, 156, 0.3); /* iOS tap highlight color */
  text-decoration: none;
  border-radius: 0;
}

/* Active touch state feedback for iOS & Android */
.mobile-nav a:active {
  transform: scale(0.95);
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.1s ease-out;
}

.mobile-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-secondary));
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

/* Enhanced hover & focus states for better visibility on touch */
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ffffff; /* Solid white for maximum visibility on hover */
  background-color: rgba(255,255,255,0.15); /* More visible background for better feedback */
  /* Add subtle glow effect */
  box-shadow: 0 0 15px rgba(255, 110, 156, 0.2);
  outline: none;
}

/* iOS-specific focus styles */
@supports (-webkit-touch-callout: none) {
  .mobile-nav a:focus {
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.5);
  }
}

.mobile-nav a.active {
  background-color: rgba(255,255,255,0.05); /* Subtle background highlight */
  position: relative;
}

.mobile-nav a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-secondary));
  opacity: 1;
}

.mobile-nav a.active span:not(.icon) {
  font-weight: 700; /* Bolder text for active item */
  color: white; /* Full white for active item */
}

.mobile-nav .icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
  transition: transform 0.2s ease;
  position: relative;
  /* Subtle glow effect */
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px; /* More compact size */
  width: 32px; /* More compact size */
  /* No background for cleaner appearance */
  background-color: transparent;
  border-radius: 50%;
  padding: 2px;
}

/* SVG icon specific styling */
.mobile-nav .icon svg {
  width: 22px; /* Adjusted for smaller icon container */
  height: 22px; /* Adjusted for smaller icon container */
  fill: currentColor;
  opacity: 0.95; /* Slightly soften the icon */
}

/* Remove background colors for cleaner look - use subtle colorization instead */
.mobile-nav a[href="#services"] .icon svg {
  color: rgba(233, 69, 96, 1); /* Services color */
}

.mobile-nav a[href="#google-reviews"] .icon svg {
  color: rgba(255, 196, 0, 1); /* Star/reviews color */
}

.mobile-nav a[href="#booking"] .icon svg {
  color: rgba(138, 43, 226, 1); /* Booking color */
}

.mobile-nav a[href^="tel:"] .icon svg {
  color: rgba(13, 180, 185, 1); /* Phone color */
}

.mobile-nav a[href^="https://wa.me"] .icon svg {
  color: rgba(37, 211, 102, 1); /* WhatsApp brand color */
}

.mobile-nav .nav-item.active .icon {
  transform: scale(1.2);
  /* Enhanced glow for active icon */
  filter: drop-shadow(0 0 5px var(--color-accent-light));
}

/* Simplified hover effects */
.mobile-nav a:hover .icon svg,
.mobile-nav a:active .icon svg {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.2);
}

/* Active states for each icon */
.mobile-nav a[href="#services"].active .icon svg {
  filter: drop-shadow(0 0 3px rgba(233, 69, 96, 0.6));
}

.mobile-nav a[href="#google-reviews"].active .icon svg {
  filter: drop-shadow(0 0 3px rgba(255, 196, 0, 0.6));
}

.mobile-nav a[href="#booking"].active .icon svg {
  filter: drop-shadow(0 0 3px rgba(138, 43, 226, 0.6));
}

.mobile-nav a[href^="tel:"].active .icon svg {
  filter: drop-shadow(0 0 3px rgba(13, 180, 185, 0.6));
}

.mobile-nav a[href^="https://wa.me"].active .icon svg {
  filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.6));
}

/* Simplified text label for better readability */
.mobile-nav a span:not(.icon) {
  margin-top: 2px;
  font-size: 11px; /* Fixed pixel size for consistent rendering */
  background-color: transparent; /* Remove background for cleaner look */
  padding: 2px;
  width: 100%;
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500; /* Slightly lighter weight for better rendering at small sizes */
  letter-spacing: -0.2px; /* Tighter letter spacing for better fit */
  color: rgba(255, 255, 255, 0.9); /* Slightly reduced opacity for softer appearance */
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); /* Subtle shadow for readability */
  line-height: 1.1; /* Tighter line height */
}

/* Visual indicators for each section */
.section-indicator {
  position: absolute;
  height: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
  transform-origin: center;
}

.section-in-view .section-indicator {
  opacity: 1;
  transform: scaleX(1);
}

.section-out-of-view .section-indicator {
  transform: scaleX(0);
}

/* Section-specific highlights */
#services.section-in-view {
  background-color: rgba(253, 247, 255, 0.5);
}

#google-reviews.section-in-view {
  background-color: rgba(240, 248, 255, 0.5);
}

#booking.section-in-view {
  background-color: rgba(255, 245, 245, 0.5);
}

/* Footer mobile fixes */
@media (max-width: 767px) {
  /* Add padding to main content to account for fixed navbar */
  main {
    padding-bottom: 80px; /* Space for mobile navigation */
  }
  
  /* Elegant footer style with new color palette */
  footer {
    background: #1a1a2e; /* Dark blue background */
    padding: 35px 20px 90px; /* Reduced bottom padding */
    position: relative;
    overflow: hidden;
    /* Remove default background */
    background-image: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Add subtle gradient top border */
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #ff4075, #b347d1);
    z-index: 2;
  }
  
  /* Add subtle pattern overlay */
  footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544v-2.26zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97l-1.414 1.414L0 36.485v-2.83zm0 5.657L8.485 47.8l-1.414 1.414L0 42.142v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.414 1.414L60 36.485v-2.83zm0 5.657L51.515 47.8l1.414 1.414L60 42.142v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.8l7.07 7.07z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
  }
  
  /* Update footer content styling */
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  /* Elegant logo for mobile */
  .footer-logo {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 10%, #ff8aa9 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 82, 119, 0.4));
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
  }
  
  /* Styled footer text for dark background */
  footer p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Adjust copyright and phone text */
  footer p:nth-last-child(2) {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 20px;
  }
  
  footer p:last-child {
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  /* Elegant social icons */
  .footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-social a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Add hover effect with gradient - default is overridden by specific platform styles */
  .footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff4075, #b347d1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  
  /* Custom platform-specific gradients (consistent with main.css) */
  .footer-social a[aria-label="Наш Instagram"]::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .footer-social a[aria-label="Наш Facebook"]::before {
    background: linear-gradient(45deg, #3b5998 0%, #2f55a4 100%);
  }
  
  .footer-social a[aria-label="Наш TikTok"]::before {
    background: linear-gradient(45deg, #010101 0%, #69C9D0 50%, #EE1D52 100%);
  }
  
  .footer-social a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .footer-social a:hover::before {
    opacity: 1;
  }
  
  /* Style SVG icons on mobile */
  .footer-social a svg {
    width: 20px;
    height: 20px;
  }
  
  /* Style footer links */
  footer a {
    color: #ff8aa9;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
  }
  
  /* Animated underline effect */
  footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
    display: block;
  }
  
  footer a:hover {
    color: white;
  }
  
  footer a:hover::after {
    width: 100%;
  }
}

/* Site header enhancements for mobile */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 26, 0.95);
  padding: 10px 0;
  z-index: 1000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
  /* Force hardware acceleration to fix rendering issues */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Hide header on mobile */
  display: none;
  /* iOS-specific fixes */
  -webkit-backface-visibility: hidden;
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
  .site-header {
    /* Darker solid background for iOS */
    background: rgba(13, 13, 26, 0.98);
    /* Simplify backdrop-filter on iOS for better performance */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.site-header .logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.site-header .logo a {
  display: block;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Hide the main navigation on mobile */
.site-header .main-nav {
  display: none;
}

/* Style for mobile menu toggle button */
.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg) translateY(5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: rotate(-45deg) translateY(-5px);
}

/* Ensure desktop nav is properly hidden on mobile devices of all sizes */
@media (max-width: 990px) {
  .desktop-nav {
    display: none !important; /* Single property is sufficient */
  }
}

/* General container styles for mobile */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Mobile specific media queries */
@media (max-width: 767px) {
  
  /* Hero section mobile optimizations with focus on eyelashes */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Position content at center instead of bottom */
    align-items: center;
    min-height: 100vh;
    max-height: 100vh; /* Constrain height to prevent overflow on iOS */
    position: relative;
    padding-top: 0; /* Remove padding since header is hidden */
    margin-top: 0; /* Remove margin to prevent extra space */
    overflow: hidden; /* Prevent any content from breaking out */
    height: 100vh; /* Force 100vh height */
    /* Fix for iOS vh units */
    height: calc(100 * var(--vh, 1vh));
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
  }
  
  /* iOS-specific fix for 100vh issue */
  @supports (-webkit-touch-callout: none) {
    .hero {
      height: -webkit-fill-available;
      /* Force hardware acceleration for smoother rendering */
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    /* Additional styles for hero section images on iOS */
    .hero > img {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-perspective: 1000;
      perspective: 1000;
      will-change: opacity;
      filter: contrast(1.2) brightness(0.95);
    }
  }
  
  /* Mobile overlay styles are now handled by .hero-image-overlay */
  /* Removing conflicting selectors that were previously used */
  
  .hero::before, .hero::after, 
  .hero.section-out-of-view::before, .hero.section-out-of-view::after {
    display: none; /* Remove all gradient overlays using pseudo-elements */
  }
  
  /* Mobile-specific overlay styling */
  .hero-image-overlay {
    /* Ensures hardware acceleration on mobile devices */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    
    /* Mobile-specific gradient */
    background: linear-gradient(
      to top, 
      rgba(10, 10, 20, 0.95) 0%, /* Almost black at bottom with high opacity */
      rgba(10, 10, 20, 0.85) 10%, 
      rgba(10, 10, 20, 0.6) 20%, 
      rgba(10, 10, 20, 0.2) 25%,
      rgba(10, 10, 20, 0) 30% /* Completely transparent at 30% from bottom */
    );
  }
  
  /* Hero section background styling */
  .hero {
    background-size: cover !important; /* Force cover size */
    background-position: center -10% !important; /* Move background image 10% up */
    filter: contrast(1.1) brightness(0.9); /* Enhance eyelash visibility */
    background-color: #1a1a2e; /* Fallback background color */
    transform: translateZ(0) !important; /* Hardware acceleration */
    -webkit-transform: translateZ(0) !important;
    /* iOS specific fix to prevent flickering */
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 1000;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    will-change: transform, opacity; /* Hint to browser for optimization */
  }
  
  /* Add enhanced iOS-specific treatments for hero section */
  @supports (-webkit-touch-callout: none) {
    .hero {
      /* More aggressive hardware acceleration for iOS */
      transform: translate3d(0, 0, 0) !important;
      -webkit-transform: translate3d(0, 0, 0) !important;
      /* Higher contrast and adjusted brightness for top-aligned hero image */
      filter: contrast(1.2) brightness(0.95);
      /* Force background attachment to be scroll */
      background-attachment: scroll !important;
    }
    
    /* Add a pseudo-element for additional background treatment on iOS */
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: inherit;
      background-size: cover !important;
      background-position: top center !important;
      z-index: -1;
      /* Hardware acceleration for pseudo-element too */
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
    
    /* Add a second background layer as fallback */
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, #1a1a2e, #16213e);
      opacity: 0;
      z-index: -1;
      transition: opacity 0.5s ease;
    }
    
    /* Class added via JS when image fails to load */
    .hero.image-load-error::before {
      opacity: 1;
    }
  }
  
  /* Hero content positioning at center to showcase eyelashes in the background */
  .hero-content {
    text-align: center;
    margin: 0 auto 0; /* Reset margin, using inline transform instead */
    position: relative; /* Changed from absolute to relative */
    bottom: auto; /* Remove absolute positioning */
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    padding: 30px 20px; /* Reduced bottom padding */
    max-width: 100%;
    margin-top: auto; /* Push to bottom with flexbox */
    background: transparent; /* Ensure no background interferes */
    transform: translateZ(0); /* Only add hardware acceleration, transform is set inline */
    -webkit-transform: translateZ(0);
    backdrop-filter: none; /* Remove any blur effects that might cause issues */
    -webkit-backdrop-filter: none;
  }
  
  /* Remove gradient overlay that was causing the issue */
  .hero-content::before {
    content: none; /* Remove this pseudo-element completely */
  }
  
  /* Enhanced mobile h1 styling for bottom positioning with improved color */
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.2px;
    padding: 0 20px;
    font-weight: 700;
    line-height: 1.1;
    /* Using light pink gradient like in design */
    background: linear-gradient(135deg, #fe4a84 10%, #fe82cb 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback */
    color: #fe4a84;
    /* Apply slight glow effect */
    filter: drop-shadow(0 0 8px rgba(255, 64, 117, 0.3));
  }
  
  /* Center heading decorative line and make more visible */
  .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-secondary));
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    bottom: -10px;
  }
  
  /* Enhance hero tagline with improved h3-like styling */
  .hero-tagline {
    margin: 15px auto 25px;
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    max-width: 85%;
    font-weight: 400;
    padding: 0 20px;
  }
  
  /* Apply custom styling to any h3 in the hero area */
  .hero h3 {
    color: #ffd5df; /* Light pink */
    text-shadow: 0 0 15px rgba(255, 64, 117, 0.4);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  /* Enhanced CTA buttons for mobile */
  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    padding: 0 20px; /* Add side padding */
    display: flex;
    flex-direction: column;
  }
  
  .primary-button, .secondary-button {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    border-radius: 50px; /* Ensure pill shape */
    position: relative;
    /* Improve touch targets */
    min-height: 64px;
    -webkit-tap-highlight-color: rgba(255, 110, 156, 0.3); /* iOS tap highlight color */
    touch-action: manipulation; /* Prevent double-tap zoom */
    user-select: none; /* Prevent text selection during tap */
    cursor: pointer;
  }
  
  /* Focus states for mobile accessibility */
  .primary-button:focus, .secondary-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.5), 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Active/pressed state for mobile */
  .primary-button:active, .secondary-button:active {
    transform: scale(0.98) translateY(2px);
    transition: all 0.1s ease-out;
  }
  
  /* Style primary button to stand out */
  .primary-button {
    animation: pulse 2s infinite;
    background: linear-gradient(135deg, #ff407c, #af34d2);
    border: none;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  /* iOS-specific focus styles for primary button */
  @supports (-webkit-touch-callout: none) {
    .primary-button:focus {
      box-shadow: 0 0 0 4px rgba(255, 110, 156, 0.5), 0 10px 25px rgba(233, 69, 96, 0.4);
    }
  }
  
  /* Style secondary button for contrast */
  .secondary-button {
    background: rgba(35, 35, 60, 0.95);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.025); }
    100% { transform: scale(1); }
  }
  
  /* Enhanced responsive grid layouts */
  .services-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Enhanced service cards on mobile */
  .service-card {
    padding: var(--space-lg);
    transform: none !important; /* Prevent cards from floating on mobile */
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    position: relative;
    isolation: isolate; /* Create stacking context */
    -webkit-tap-highlight-color: rgba(255, 110, 156, 0.2); /* iOS tap highlight color */
  }

  /* Active state for touch feedback */
  .service-card:active {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.1s ease-out;
  }

  .service-card::before {
    width: 3px;
    height: 60%;
    top: 20%;
  }
  
  .service-card:hover {
    transform: none !important;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin: var(--space-md) 0 var(--space-sm);
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }

  .service-cta {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
    /* Improve touch target */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Improve focus state */
    -webkit-tap-highlight-color: rgba(255, 110, 156, 0.3);
  }
  
  /* Enhanced focus state for buttons in service cards */
  .service-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.4);
  }
  
  /* iOS-specific focus styles */
  @supports (-webkit-touch-callout: none) {
    .service-cta:focus {
      box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.5);
    }
    
    .service-cta:active {
      background-color: rgba(255, 110, 156, 0.15);
    }
  }

  /* Process cards on mobile */
  .process-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 var(--space-md);
    gap: var(--space-xl);
  }

  .process-card {
    padding: var(--space-lg);
    transform: none !important;
    margin-bottom: var(--space-sm);
  }

  .process-card:hover {
    transform: none !important;
  }

  .card-number {
    font-size: 2.5rem;
    top: var(--space-sm);
    right: var(--space-sm);
  }

  .card-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .process-card h3 {
    font-size: 1.3rem;
    margin-right: 30px; /* Make room for card number */
  }

  .process-card p {
    font-size: 0.95rem;
  }

  /* Testimonials on mobile */
  .testimonial-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
  }

  .google-reviews-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .google-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
  }
  
  .google-reviews-header > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .google-logo {
    margin-bottom: var(--space-sm);
  }
  
  .review-stats {
    margin-top: var(--space-sm);
    width: auto;
  }
  
  .google-review-header {
    gap: var(--space-sm);
  }

  .reviewer-avatar img {
    width: 50px;
    height: 50px;
  }

  .testimonial-author {
    font-size: 1rem;
  }

  .testimonial-info {
    font-size: 0.8rem;
  }

  .testimonial-content {
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
  }

  .testimonial-content::before,
  .testimonial-content::after {
    font-size: 2rem;
  }

  /* FAQ on mobile */
  .faq-section {
    padding: var(--space-xl) 0;
  }
  
  .faq-decoration {
    transform: scale(0.8);
    filter: blur(30px);
  }

  .faq-container {
    border-radius: var(--radius);
    width: 92%;
    max-width: 100%;
    padding: 0 15px;
  }

  .faq-item {
    margin-bottom: 15px; /* Smaller margin on mobile */
    transform: none !important; /* Prevent unwanted hover effects on mobile */
  }
  
  .faq-item:hover {
    transform: none !important;
    box-shadow: var(--shadow-small); /* Consistent shadow on mobile */
  }

  .faq-question {
    padding: 15px;
    font-size: 1rem;
    line-height: 1.4;
    -webkit-tap-highlight-color: rgba(229, 68, 109, 0.1); /* Better touch feedback */
  }
  
  .faq-question::after {
    font-size: 1.3rem; /* Smaller icon on mobile */
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 15px;
    line-height: 1.5;
  }
  
  .faq-question.active + .faq-answer {
    padding: 15px;
    max-height: 600px; /* More space for mobile reading */
  }

  /* Booking form on mobile - enhanced for better accessibility */
  .booking-form {
    padding: 25px;
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
    transform: none !important;
    background-color: rgba(13, 13, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  .booking-form:hover {
    transform: none !important;
  }
  
  /* Form labels - better contrast and readability */
  .booking-form label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: block;
  }
  
  /* Form input fields - larger touch targets */
  .booking-form input:not([type="hidden"]),
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 16px; /* Native input size for iOS */
    margin-bottom: 16px;
    transition: all 0.3s ease;
  }
  
  /* Focus states for form elements - enhanced for mobile */
  .booking-form input:focus,
  .booking-form select:focus,
  .booking-form textarea:focus {
    border-color: rgba(255, 110, 156, 0.7);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.3);
    outline: none;
    /* Transform to show clear visual feedback on mobile */
    transform: translateY(-1px);
    transition: all 0.2s ease;
  }
  
  /* iOS-specific form focus styles */
  @supports (-webkit-touch-callout: none) {
    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
      /* Stronger visual cue for iOS */
      box-shadow: 0 0 0 4px rgba(255, 110, 156, 0.4);
      /* Smoother iOS transitions */
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* iOS text inputs - prevent zoom on focus */
    .booking-form input[type="text"],
    .booking-form input[type="tel"],
    .booking-form input[type="email"],
    .booking-form input[type="date"],
    .booking-form select,
    .booking-form textarea {
      font-size: 16px; /* Minimum size to prevent iOS zoom */
    }
  }
  
  /* Error states */
  .booking-form .error-message {
    color: #ff4d6d;
    font-size: 0.9rem;
    margin: -12px 0 16px;
    padding-left: 4px;
  }
  
  /* Form field hint text */
  .booking-form .field-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: -12px;
    margin-bottom: 16px;
  }
  
  /* Select element styling */
  .select-selected {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    position: relative;
  }
  
  /* Select dropdown items */
  .select-items {
    background-color: rgba(30, 30, 50, 0.98);
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
  }
  
  .select-item {
    padding: 16px; /* Larger touch target */
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Time slot grid */
  .time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  /* Larger time slot touch targets with enhanced focus states */
  .time-slot {
    min-width: 75px;
    min-height: 56px; /* Increased minimum touch target size for accessibility */
    padding: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease-out; /* Faster transition for more responsive feel */
    cursor: pointer;
    position: relative; /* For pseudo-elements */
    overflow: hidden; /* Contain effects */
    -webkit-tap-highlight-color: rgba(255, 110, 156, 0.3); /* iOS tap highlight color */
    touch-action: manipulation; /* Prevent double-tap zoom */
    transform: translateZ(0); /* Hardware acceleration */
  }
  
  /* Focus state for keyboard navigation and touch */
  .time-slot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.4);
    border-color: rgba(255, 110, 156, 0.6);
    background-color: rgba(255, 255, 255, 0.12);
  }
  
  /* Active/pressed state for touch feedback */
  .time-slot:active:not(.booked) {
    transform: scale(0.97);
    background-color: rgba(255, 110, 156, 0.15);
    transition: all 0.1s ease-out;
  }
  
  /* Active time slot styling */
  .time-slot[aria-checked="true"] {
    background-color: rgba(255, 110, 156, 0.3);
    border-color: rgba(255, 110, 156, 0.7);
    box-shadow: 0 0 15px rgba(255, 110, 156, 0.2);
    font-weight: 600; /* Make selected time more prominent */
  }
  
  /* Add a subtle animation when selecting */
  .time-slot[aria-checked="true"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 110, 156, 0.2) 0%, rgba(255, 110, 156, 0) 70%);
    opacity: 0;
    animation: ripple 0.6s ease-out;
  }
  
  @keyframes ripple {
    0% { opacity: 1; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(2); }
  }
  
  /* Disabled time slot with clearer visual indication */
  .time-slot.booked {
    opacity: 0.5;
    background-color: rgba(100, 100, 100, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none;
    pointer-events: none; /* Prevent interaction completely */
  }
  
  /* iOS-specific focus styles */
  @supports (-webkit-touch-callout: none) {
    .time-slot:focus {
      box-shadow: 0 0 0 4px rgba(255, 110, 156, 0.5);
    }
  }
  
  /* Submit button - enhanced for visibility */
  .booking-form .button[type="submit"],
  .booking-form .primary-button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff407c, #af34d2);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(233, 69, 96, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Form button hover state */
  .booking-form .button[type="submit"]:hover,
  .booking-form .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, #ff5286, #bf40e3);
  }
  
  /* Form button active/focus state */
  .booking-form .button[type="submit"]:active,
  .booking-form .button[type="submit"]:focus,
  .booking-form .primary-button:active,
  .booking-form .primary-button:focus {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(233, 69, 96, 0.4);
    outline: none;
  }
  
  /* Form controls container */
  .form-controls {
    margin-top: 20px;
  }
  
  /* Status message styling for form submission feedback */
  #form-status {
    padding: 16px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
  }
  
  /* Success message styling */
  #form-status.success {
    display: block;
    background-color: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.4);
    color: rgba(46, 213, 115, 1);
  }
  
  /* Error message styling */
  #form-status.error {
    display: block;
    background-color: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: rgba(255, 71, 87, 1);
  }

  /* Video containers on mobile - Enhanced with better autoplay support */
  .hero-video, .services-video {
    width: 92%; /* Slightly narrower for better fit */
    border-radius: var(--radius);
    overflow: hidden; /* Ensure content stays within radius */
    position: relative; /* To contain absolute children */
    margin: 20px auto 30px; /* Add more vertical spacing */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    z-index: 2; /* Ensure proper stacking */
    transform: translateZ(0); /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    background-color: #000; /* Black background to hide poster loading */
  }

  /* iOS-specific fixes for videos */
  @supports (-webkit-touch-callout: none) {
    .hero-video, .services-video {
      transform: translate3d(0, 0, 0); /* More intensive GPU acceleration on iOS */
      -webkit-transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      -webkit-transform-style: preserve-3d;
    }
    
    /* Override auto-play video settings for iOS */
    video {
      /* Use poster image as fallback */
      object-fit: cover;
      /* Make sure video container fills properly */
      width: 100%;
      height: 100%;
      /* Hardware acceleration */
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      will-change: transform, opacity;
    }
    
    /* Force hardware acceleration on video elements */
    .no-controls {
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
    }
    
    /* Add better iOS compatibility for video poster */
    video[poster] {
      object-fit: cover;
      object-position: center;
    }
  }

  /* Video accessibility controls for mobile */
  .video-accessibility-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 3; 
    transition: opacity 0.3s ease;
  }

  /* Video play button styling */
  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 4;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none; /* Hidden by default, JavaScript will show if needed */
    -webkit-tap-highlight-color: transparent;
  }

  .video-play-button:hover,
  .video-play-button:focus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    outline: none;
  }

  .video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
  }

  /* Touch overlay for better iOS interaction */
  .video-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }

  /* Ensure iOS devices specifically handle video properly */
  .ios-device .hero-video video,
  .ios-device .services-video video {
    /* iOS-specific optimizations */
    object-fit: cover !important;
    object-position: center !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Show play button on iOS devices by default */
  .ios-device .video-play-button {
    display: block;
  }

  /* Once video is playing, hide the play button */
  .video-playing .video-play-button,
  .video-playing .video-accessibility-controls {
    opacity: 0;
    pointer-events: none;
  }

  .video-title {
    font-size: 1.3rem;
    margin-bottom: 12px; /* Add more space below title */
    padding: 0 20px; /* Add horizontal padding */
  }

  .video-description {
    font-size: 0.9rem;
    padding: 0 var(--space-md);
    margin-bottom: 20px; /* Add space before video */
  }

  /* Section spacings on mobile */
  section {
    padding: var(--space-xl) 0;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
  }

  h2::after {
    width: 60px;
    height: 3px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin: -20px auto var(--space-lg);
    padding: 0 var(--space-md);
  }

  /* Optimize mobile page performance by disabling some animations */
  .service-card::before,
  .service-card:hover::before,
  .testimonial-card::before,
  .testimonial-card:hover::before,
  .booking-form::before,
  .booking-form::after {
    display: none;
  }
  
  /* Process items on mobile */
  .process-item {
    flex-direction: column;
  }
  
  .process-visual {
    margin-bottom: 30px;
  }
}

/* iOS-specific touch focus styles */
@supports (-webkit-touch-callout: none) {
  /* Elements with touch focus get enhanced visual feedback */
  [data-touch-focus="true"] {
    box-shadow: 0 0 0 3px rgba(255, 110, 156, 0.5) !important;
    transition: box-shadow 0.15s ease-out !important;
  }
  
  /* Buttons with touch focus */
  button[data-touch-focus="true"],
  .primary-button[data-touch-focus="true"],
  .secondary-button[data-touch-focus="true"],
  .service-cta[data-touch-focus="true"] {
    background-color: rgba(255, 110, 156, 0.15) !important;
  }
  
  /* Input fields with touch focus */
  input[data-touch-focus="true"],
  select[data-touch-focus="true"],
  textarea[data-touch-focus="true"] {
    border-color: rgba(255, 110, 156, 0.7) !important;
  }
  
  /* Navigation items with touch focus */
  .mobile-nav a[data-touch-focus="true"] {
    background-color: rgba(255, 255, 255, 0.15) !important;
  }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .time-slots {
    justify-content: center;
  }

  .form-input-animated input {
    font-size: 0.9rem;
  }

  .form-label, .select-label {
    font-size: 0.9rem;
  }

  .process-card {
    padding: var(--space-md);
  }

  .card-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .card-icon {
    font-size: 1.5rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-card {
    padding: var(--space-md);
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 450px;
    max-height: 450px;
  }

  .hero-content {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    margin: 15px auto 20px;
  }

  .cta-buttons {
    gap: 10px;
  }

  .process-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

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

/* Animation for call-to-action pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(233, 69, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(233, 69, 96, 0);
  }
} 