@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
:root {
  --dark-gold: #6b7280;
  --dark-blue: #374151;
  --white: #fff;
  --light-gold: #9ca3af;
  --nav-radius: 18px;
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  --glass-bg: rgba(255,255,255,0.85);
  
  /* Light mode colors (default) - Grey theme */
  --bg-primary: #f9fafb;
  --bg-secondary: #f3f4f6;
  --text-primary: #374151;
  --text-secondary: #6b7280;
  --card-bg: rgba(255,255,255,0.85);
  --border-color: rgba(107,114,128,0.13);
  --shadow-color: rgba(31, 38, 135, 0.10);
  --form-bg: #fff;
  --form-border: #9ca3af;
  --testimonial-bg: #fff;
  --service-card-bg: rgba(255,255,255,0.85);
}

/* ========== SCROLLYTELLING ANIMATIONS ========== */

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes scaleInRotate {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animation Base Styles */
[data-scroll-animation] {
  opacity: 0;
  will-change: transform, opacity;
}

/* Animation Types */
.scroll-animated.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-fade-down {
  animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-fade-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-fade-right {
  animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-scale {
  animation: scaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-scale-rotate {
  animation: scaleInRotate 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-slide-up {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-slide-down {
  animation: slideInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-rotate {
  animation: rotateIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-flip {
  animation: flipIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-zoom {
  animation: zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scroll-animated.animate-bounce {
  animation: bounceIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger Animation System */
[data-stagger] [data-stagger-item] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-stagger] [data-stagger-item].stagger-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Elements */
[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Text Reveal */
[data-text-reveal] {
  opacity: 0;
}

/* Scroll Progress Elements */
[data-scroll-progress] {
  will-change: transform, opacity, filter;
  transition: all 0.1s linear;
}

/* Responsive: Reduce animations on mobile */
@media (max-width: 768px) {
  [data-scroll-animation] {
    opacity: 1;
  }
  
  .scroll-animated {
    animation-duration: 0.5s !important;
  }
  
  [data-parallax] {
    transform: none !important;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-parallax],
  [data-scroll-progress] {
    transform: none !important;
  }
  
  [data-scroll-animation] {
    opacity: 1 !important;
  }
}

/* ========== END SCROLLYTELLING ANIMATIONS ========== */

/* Enhanced Contact Form Styles - Integrated with JK Services Design */
.fs-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 32px auto;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(107,114,128,0.15);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.fs-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--dark-gold), var(--light-gold), var(--dark-gold));
  border-radius: 20px 20px 0 0;
}

.fs-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-label {
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  text-align: left;
}

.fs-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 6px;
  font-style: italic;
  transition: color 0.3s ease;
  text-align: left;
  opacity: 0.9;
}

.fs-input,
.fs-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--form-border);
  border-radius: 14px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--form-bg);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(107,114,128,0.08);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.fs-input:focus,
.fs-select:focus {
  border-color: var(--dark-gold);
  box-shadow: 0 4px 20px rgba(107,114,128,0.15);
  transform: translateY(-2px);
}

.fs-input[type="tel"] {
  letter-spacing: 0.5px;
}

.fs-input[type="tel"]::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

/* Phone number input specific styling */
.fs-input[type="tel"]:focus {
  border-color: var(--dark-gold);
  box-shadow: 0 4px 20px rgba(107,114,128,0.15);
  transform: translateY(-2px);
}

/* Laundry theme phone input styling */
body.laundry-theme .fs-input[type="tel"]:focus {
  border-color: var(--laundry-primary);
  box-shadow: 0 4px 20px rgba(44, 124, 45, 0.2);
}

.fs-textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px 20px;
  border: 2px solid var(--form-border);
  border-radius: 14px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--form-bg);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(107,114,128,0.08);
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
}

.fs-textarea:focus {
  border-color: var(--dark-gold);
  box-shadow: 0 4px 20px rgba(107,114,128,0.15);
  transform: translateY(-2px);
}

.fs-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.fs-button-group {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.fs-button {
  background: var(--dark-gold);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 40px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(107,114,128,0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 160px;
  text-transform: uppercase;
}

.fs-button:hover {
  background: var(--dark-blue);
  color: var(--dark-gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(107,114,128,0.3);
}

.fs-button:focus-visible {
  outline: 3px solid var(--dark-gold);
  outline-offset: 3px;
}

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

/* Laundry Theme Specific Styles */
body.laundry-theme .fs-form {
  background: var(--laundry-card-bg);
  border-color: var(--laundry-border);
  box-shadow: 0 4px 20px rgba(44, 124, 45, 0.1);
}

body.laundry-theme .fs-form::before {
  background: linear-gradient(90deg, var(--laundry-primary), var(--laundry-accent), var(--laundry-primary));
}

body.laundry-theme .fs-label {
  color: var(--laundry-text-primary);
}

body.laundry-theme .fs-description {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .fs-input,
body.laundry-theme .fs-select,
body.laundry-theme .fs-textarea {
  background: var(--laundry-card-bg);
  border-color: var(--laundry-secondary);
  color: var(--laundry-text-primary);
}

body.laundry-theme .fs-input:focus,
body.laundry-theme .fs-select:focus,
body.laundry-theme .fs-textarea:focus {
  border-color: var(--laundry-primary);
  box-shadow: 0 4px 16px rgba(44, 124, 45, 0.2);
}

body.laundry-theme .fs-input::placeholder,
body.laundry-theme .fs-textarea::placeholder {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .fs-button {
  background: var(--laundry-primary);
  color: white;
}

body.laundry-theme .fs-button:hover {
  background: var(--laundry-accent);
  color: white;
  box-shadow: 0 8px 24px rgba(44, 124, 45, 0.3);
}

/* Dark Mode Styles */
[data-theme="dark"] .fs-label {
  color: var(--text-primary);
}

[data-theme="dark"] .fs-description {
  color: var(--text-secondary);
}

[data-theme="dark"] .fs-input,
[data-theme="dark"] .fs-select,
[data-theme="dark"] .fs-textarea {
  background: var(--form-bg);
  border-color: var(--form-border);
  color: var(--text-primary);
}

[data-theme="dark"] .fs-input:focus,
[data-theme="dark"] .fs-select:focus,
[data-theme="dark"] .fs-textarea:focus {
  border-color: var(--dark-gold);
}

[data-theme="dark"] .fs-input::placeholder,
[data-theme="dark"] .fs-textarea::placeholder {
  color: var(--text-secondary);
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
  .fs-form {
    max-width: 100%;
    padding: 24px 20px;
    gap: 20px;
    margin: 0 20px 28px 20px;
    border-radius: 16px;
  }
  
  .fs-input,
  .fs-select,
  .fs-textarea {
    padding: 18px 20px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
  
  .fs-button {
    font-size: 1.2rem;
    padding: 18px 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
  }
  
  .fs-label {
    font-size: 1.2rem;
  }
  
  .fs-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .fs-form {
    padding: 20px 16px;
    gap: 18px;
    margin: 0 12px 24px 12px;
    border-radius: 14px;
  }
  
  .fs-input,
  .fs-select,
  .fs-textarea {
    padding: 16px 18px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
  
  .fs-button {
    font-size: 1.15rem;
    padding: 16px 28px;
    border-radius: 10px;
  }
  
  .fs-label {
    font-size: 1.15rem;
  }
  
  .fs-description {
    font-size: 0.9rem;
  }
}
/* Form Success Message Styles */
.fs-form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(107,114,128,0.15);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.fs-form-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2c7c2d, #4ade80, #2c7c2d);
  border-radius: 20px 20px 0 0;
}

.fs-form-success.show {
  display: block;
  animation: slideInSuccess 0.5s ease-out;
}

.fs-success-icon {
  font-size: 3rem;
  color: #2c7c2d;
  margin-bottom: 16px;
  display: block;
}

.fs-success-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.fs-success-message {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.fs-success-button {
  background: var(--dark-gold);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(107,114,128,0.15);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fs-success-button:hover {
  background: var(--dark-blue);
  color: var(--dark-gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(107,114,128,0.25);
}

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

/* Laundry Theme Success Message */
body.laundry-theme .fs-form-success {
  background: var(--laundry-card-bg);
  border-color: var(--laundry-border);
  box-shadow: 0 8px 32px rgba(44, 124, 45, 0.15);
}

body.laundry-theme .fs-form-success::before {
  background: linear-gradient(90deg, var(--laundry-accent), #4ade80, var(--laundry-accent));
}

body.laundry-theme .fs-success-icon {
  color: var(--laundry-accent);
}

body.laundry-theme .fs-success-title {
  color: var(--laundry-text-primary);
}

body.laundry-theme .fs-success-message {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .fs-success-button {
  background: var(--laundry-primary);
  color: white;
}

body.laundry-theme .fs-success-button:hover {
  background: var(--laundry-accent);
  color: white;
  box-shadow: 0 8px 24px rgba(44, 124, 45, 0.3);
}

/* Mobile Responsive Success Message */
@media (max-width: 900px) {
  .fs-form-success {
    padding: 32px 24px;
    margin: 0 20px 28px 20px;
    border-radius: 16px;
  }
  
  .fs-success-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
  
  .fs-success-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .fs-success-message {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  
  .fs-success-button {
    font-size: 1.15rem;
    padding: 16px 28px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .fs-form-success {
    padding: 24px 20px;
    margin: 0 12px 24px 12px;
    border-radius: 14px;
  }
  
  .fs-success-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .fs-success-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .fs-success-message {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .fs-success-button {
    font-size: 1.1rem;
    padding: 14px 24px;
    border-radius: 8px;
  }
}

/* Dark mode colors - Grey theme */
[data-theme="dark"] {
  --bg-primary: #1f2937;
  --bg-secondary: #374151;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --card-bg: rgba(55, 65, 81, 0.95);
  --border-color: rgba(156, 163, 175, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.4);
  --form-bg: #374151;
  --form-border: #9ca3af;
  --testimonial-bg: #374151;
  --service-card-bg: rgba(55, 65, 81, 0.95);
  --glass-bg: rgba(55, 65, 81, 0.95);
}

/* Maintenance theme colors - Grey and Yellow */
body.maintenance-theme {
  --maintenance-bg-primary: #f9fafb;
  --maintenance-bg-secondary: #f3f4f6;
  --maintenance-text-primary: #374151;
  --maintenance-text-secondary: #6b7280;
  --maintenance-accent: #fbbf24;
  --maintenance-accent-dark: #f59e0b;
  --maintenance-primary: #6b7280;
  --maintenance-card-bg: rgba(255, 255, 255, 0.9);
  --maintenance-border: rgba(107, 114, 128, 0.2);
  --maintenance-shadow: rgba(107, 114, 128, 0.15);
}
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Animated gradient background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(107, 114, 128, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(156, 163, 175, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(107, 114, 128, 0.03) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(5deg);
  }
}
/* Accessible skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 8px;
  outline: 3px solid var(--dark-gold);
  z-index: 3000;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px 16px 48px;
  background: var(--bg-primary);
  border-bottom: 2px solid var(--dark-gold);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  transition: background 0.3s ease;
  animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  border-radius: 18px;
  background: none;
  border: none;
  box-shadow: none;
}
.logo svg {
  display: block;
  width: 48px;
  height: 48px;
}
.company-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--card-bg);
  border-radius: 16px;
  padding: 12px 0 18px 0;
  box-shadow: 0 2px 8px rgba(107,114,128,0.06);
  min-width: 0;
  width: max-content;
  z-index: 2;
  text-align: center;
  transition: background 0.3s ease;
}
.company-info h1 {
  margin: 0 auto;
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2.8px;
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  position: relative;
  z-index: 1;
  text-align: center;
  width: fit-content;
  transition: color 0.3s ease;
}
.company-info::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: var(--dark-gold);
  border-radius: 3px;
  margin: 12px auto 0 auto;
  box-shadow: 0 2px 8px rgba(107,114,128,0.13);
}
.contact-info {
  text-align: right;
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.3s ease;
}
/* Old navigation styles removed - replaced with new desktop-nav */
.main-content {
  max-width: 900px;
  margin: 56px auto 0 auto;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 56px 44px;
  text-align: center;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid var(--border-color);
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.main-content h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: color 0.3s ease;
}
.main-content p {
  font-size: 1.18rem;
  color: var(--text-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Clarks Watch Repairs Banner */
.clarks-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
  background: var(--bg-primary);
}

.clarks-banner img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.clarks-banner img:hover {
  transform: scale(1.02);
}

/* Mobile responsiveness for Clarks banner */
@media (max-width: 768px) {
  .clarks-banner {
    padding: 15px;
    margin: 15px 0;
  }
  
  .clarks-banner img {
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .clarks-banner {
    padding: 10px;
    margin: 10px 0;
  }
  
  .clarks-banner img {
    max-height: 120px;
  }
}

.footer {
  margin-top: 48px;
  background: var(--bg-primary);
  color: var(--text-primary);
  text-align: center;
  font-size: 1rem;
  padding: 0 0 24px 0;
  position: relative;
  border-top: 1.5px solid var(--dark-gold);
  transition: background 0.3s ease, color 0.3s ease;
}
.footer-accent {
  width: 100px;
  height: 4px;
  background: var(--dark-gold);
  margin: 0 auto 18px auto;
  border-radius: 2px;
}
.footer-content {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-primary);
  opacity: 0.85;
  transition: color 0.3s ease;
}
.logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(107,114,128,0.10);
  background: var(--bg-primary);
  object-fit: contain;
  display: block;
}
/* Disable heavy animations on mobile for performance */
@media (max-width: 900px) {
  .service-card::before,
  .hero-section::after {
    display: none;
  }
  
  .service-icon {
    animation: none;
  }
  
  .slide.active .slide-img {
    animation: none;
  }
  
  /* Simplify animations for mobile */
  * {
    animation-duration: 0.5s !important;
  }
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    padding: 18px;
  }
  .company-info {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 2vw;
    width: 100%;
  }
  .logo {
    width: 120px;
    height: 85px;
    margin-bottom: 8px;
    margin-right: 0;
  }
  .contact-info {
    text-align: center;
  }
  nav {
    max-width: 98vw;
    border-radius: 0 0 14px 14px;
  }
  .main-content {
    padding: 32px 8px;
  }
  .nav-link {
    padding: 14px 12px;
  }
}
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    padding: 12px 4vw 8px 4vw;
  }
  .logo {
    width: 100px;
    height: 75px;
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .main-content {
    padding: 18px 2vw;
    margin-top: 24px;
  }
  nav {
    border-radius: 0 0 10px 10px;
  }
  .company-info {
    padding: 8px 0 12px 0;
    margin: 0 2vw;
  }
  .company-info h1 {
    font-size: 1.4rem;
  }
  .company-info::after {
    width: 48px;
    height: 3px;
    margin-top: 7px;
  }
} 

/* Photo Slider Styles */
.photo-slider {
  margin-top: 32px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(191,161,74,0.13);
  border: 2px solid var(--light-gold);
  background: var(--bg-primary);
}

.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  transition: all 0.5s ease;
}

.slide-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.9);
}

/* Active slide enhancement */
.slide.active .slide-img {
  filter: brightness(1);
  transform: scale(1.02);
}

/* Ken Burns effect on slider images */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slide.active .slide-img {
  animation: kenBurns 10s ease-out infinite alternate;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(191, 161, 74, 0.9);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(191, 161, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 700px) {
  .photo-slider {
    margin-top: 24px;
    max-width: 90vw;
  }
  
  .slide-img {
    height: 250px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 600px) {
  .photo-slider {
    max-width: 95vw;
  }
  
  .slide-img {
    height: 200px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .prev-btn {
    left: 8px;
  }
  
  .next-btn {
    right: 8px;
  }
} 

/* Hero Section Styles */
.hero-section {
  max-width: 900px;
  margin: 32px auto 0 auto;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 48px 32px 36px 32px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  position: relative;
  margin-top: 18px;
  transition: all 0.3s ease;
  animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

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

/* Parallax-like effect on hero */
.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(107, 114, 128, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(107, 114, 128, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: parallaxGrid 20s linear infinite;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

@keyframes parallaxGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.hero-title {
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  animation: textReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  animation: textReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-cta {
  display: inline-block;
  background: var(--dark-gold);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 14px 38px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(107,114,128,0.10);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: textReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

/* Ripple effect on buttons */
.hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  background: var(--dark-blue);
  color: var(--dark-gold);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(107,114,128,0.25);
}

/* Glow effect on hover */
.hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  opacity: 0;
  box-shadow: 0 0 20px rgba(107, 114, 128, 0.5);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero-cta:hover::after {
  opacity: 1;
}
@media (max-width: 700px) {
  .hero-section {
    padding: 28px 8px 18px 8px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-tagline {
    font-size: 1.05rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 12px 18px;
  }
} 

/* Service Highlights Section */
.service-highlights {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  max-width: 1000px;
  margin: 48px auto 0 auto;
  flex-wrap: wrap;
  padding: 0 12px;
}
.service-card {
  background: var(--service-card-bg);
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(107,114,128,0.13);
  border: 1.5px solid var(--border-color);
  padding: 38px 28px 28px 28px;
  text-align: center;
  width: 230px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

/* Staggered animation delays for service cards */
.service-card:nth-child(1) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}
.service-card:nth-child(2) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.service-card:nth-child(3) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

/* Animated background shimmer effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 114, 128, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(107,114,128,0.25);
  border-color: var(--dark-gold);
  background: var(--service-card-bg);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: var(--dark-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 2;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.service-card:hover .service-icon {
  animation: iconBounce 0.6s ease;
  color: var(--dark-blue);
}

@keyframes iconBounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  75% {
    transform: scale(1.2) rotate(5deg);
  }
}
.service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.service-card p {
  font-size: 1.08rem;
  color: var(--text-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.95;
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 900px) {
  .service-highlights {
    gap: 18px;
    padding: 0 4vw;
  }
  .service-card {
    width: 80vw;
    min-width: 160px;
    padding: 28px 16px 24px 16px;
    min-height: 180px;
    overflow: visible;
  }
}
@media (max-width: 600px) {
  .service-highlights {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 2vw;
  }
  .service-card {
    width: 96vw;
    min-width: 0;
    padding: 20px 12px 16px 12px;
    min-height: 160px;
    overflow: visible;
  }
}

/* Service Link Styles */
.service-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--dark-gold);
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-link:hover {
  color: var(--dark-blue);
  transform: translateX(5px);
}

.service-card:hover .service-link {
  color: var(--dark-blue);
}

/* Section Title Styles */
.section-title {
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }
}

/* Company Tagline Styles */
.company-tagline {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .company-tagline {
    font-size: 0.9rem;
    margin-top: 4px;
  }
}

/* Benefits Grid Styles */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  padding: 32px 24px;
  background: var(--service-card-bg);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(107,114,128,0.1);
  border: 1.5px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(107,114,128,0.15);
}

.benefit-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.benefit-item p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 0 4vw;
  }
  
  .benefit-item {
    padding: 28px 20px;
  }
  
  .benefit-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 2vw;
  }
  
  .benefit-item {
    padding: 24px 18px;
    border-radius: 15px;
  }
  
  .benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .benefit-item p {
    font-size: 0.95rem;
  }
}

/* Laundry Theme Specific Styles */
body.laundry-theme .service-link {
  color: var(--laundry-primary);
}

body.laundry-theme .service-link:hover,
body.laundry-theme .service-card:hover .service-link {
  color: var(--laundry-text-primary);
}

body.laundry-theme .benefit-item {
  background: var(--laundry-card-bg);
  border-color: var(--laundry-border);
}

body.laundry-theme .benefit-item h3 {
  color: var(--laundry-text-primary);
}

body.laundry-theme .benefit-item p {
  color: var(--laundry-text-primary);
}

body.laundry-theme .company-tagline {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .section-title {
  color: var(--laundry-text-primary);
}

/* Pricing Section */
.pricing-section {
  max-width: 900px;
  margin: 48px auto;
  padding: 44px 32px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.pricing-title {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: color 0.3s ease;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 40px 32px;
  border: 1.5px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: left;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(107,114,128,0.2);
}

.pricing-category {
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

[data-theme="dark"] .pricing-category {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-category:hover {
  background: rgba(191, 161, 74, 0.05);
  border-color: var(--dark-gold);
}

.pricing-category-title {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark-gold);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark-gold);
  text-align: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

[data-theme="dark"] .pricing-item {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-item:hover {
  background: rgba(191, 161, 74, 0.1);
  border-color: var(--dark-gold);
  transform: translateX(4px);
}

.pricing-item-name {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-item-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark-gold);
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* Responsive Pricing */
@media (max-width: 900px) {
  .pricing-section {
    margin: 32px auto;
    padding: 32px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pricing-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pricing-category {
    min-width: 0;
    width: 100%;
  }
  
  .pricing-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .pricing-category-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    margin: 24px auto;
    padding: 24px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pricing-card {
    padding: 20px 16px;
    gap: 20px;
    border-radius: 16px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 1fr;
  }
  
  .pricing-category {
    padding: 16px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .pricing-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .pricing-category-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .pricing-item {
    padding: 10px 12px;
    margin-bottom: 6px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .pricing-item-name {
    font-size: 0.95rem;
  }
  
  .pricing-item-price {
    font-size: 1rem;
  }
}

/* Extra small devices - ensure pricing card is visible */
@media (max-width: 480px) {
  .pricing-section {
    margin: 20px auto;
    padding: 20px 10px;
  }
  
  .pricing-card {
    padding: 16px 12px;
    gap: 16px;
  }
  
  .pricing-title {
    font-size: 1.3rem;
  }
  
  .pricing-category {
    padding: 12px;
  }
  
  .pricing-item {
    flex-wrap: wrap;
  }
}

/* Very small devices - phones in portrait */
@media (max-width: 360px) {
  .pricing-section {
    padding: 16px 8px;
  }
  
  .pricing-card {
    padding: 12px 8px;
    gap: 12px;
  }
  
  .pricing-category {
    padding: 10px;
  }
  
  .pricing-item {
    padding: 8px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .pricing-item-name,
  .pricing-item-price {
    width: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 44px 32px 32px 32px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.testimonials-title {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: color 0.3s ease;
}
.testimonials-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.testimonial {
  background: var(--testimonial-bg);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(107,114,128,0.10);
  border: 1px solid var(--border-color);
  padding: 24px 18px 18px 18px;
  max-width: 260px;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Staggered animations for testimonials */
.testimonial:nth-child(1) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.testimonial:nth-child(2) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.testimonial:nth-child(3) {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* Hover effects for testimonials */
.testimonial:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(107,114,128,0.2);
  border-color: var(--dark-gold);
}

/* Decorative corner accent */
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--dark-gold);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.08rem;
  color: var(--text-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 14px;
  font-style: italic;
  transition: color 0.3s ease;
}
.testimonial-author {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
@media (max-width: 900px) {
  .testimonials-list {
    gap: 16px;
  }
  .testimonial {
    max-width: 44vw;
    min-width: 140px;
    padding: 18px 8px 12px 8px;
  }
}
@media (max-width: 600px) {
  .testimonials-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .testimonial {
    max-width: 90vw;
    min-width: 0;
    padding: 14px 4px 8px 4px;
  }
} 

/* QR Code Popup */
.qr-popup {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  max-width: 280px;
  width: 100%;
  display: none; /* Initially hidden */
  opacity: 0;
  visibility: hidden;
}

.qr-popup.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.qr-popup-content {
  padding: 20px;
}

.qr-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.qr-popup-header h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.qr-popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  touch-action: manipulation;
  user-select: none;
}

.qr-popup-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  transform: scale(1.1);
}

.qr-popup-close:active {
  transform: scale(0.95);
}

.qr-popup-body {
  text-align: center;
}

.qr-code-box {
  width: 120px;
  height: 120px;
  border: 2px dashed var(--text-secondary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-secondary);
  margin: 0 auto 12px auto;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.qr-code-box p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}

.qr-popup-description {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

/* Contact Section */
.contact-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 44px 32px 32px 32px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.contact-title {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: color 0.3s ease;
}
.contact-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--form-border);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--form-bg);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(107,114,128,0.07);
  transition: border 0.2s, background 0.3s ease, color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--dark-gold);
  outline: none;
}
.contact-form button {
  background: var(--dark-gold);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(107,114,128,0.10);
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-top: 6px;
}
.contact-form button:hover {
  background: var(--dark-blue);
  color: var(--dark-gold);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(107,114,128,0.18);
}
.contact-details {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--text-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.3s ease;
}
.contact-details a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-details a:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .contact-section {
    padding: 28px 8px 18px 8px;
  }
  .contact-form input,
  .contact-form textarea {
    max-width: 98vw;
  }
  .qr-popup {
    right: 10px;
    max-width: 240px;
  }
  .qr-popup-content {
    padding: 16px;
  }
  .qr-code-box {
    width: 100px;
    height: 100px;
  }
  .qr-code-box p {
    font-size: 0.7rem;
  }
  .qr-popup-description {
    font-size: 0.8rem;
  }
}

/* Additional mobile styles for QR popup */
@media (max-width: 480px) {
  .qr-popup {
    right: 5px;
    max-width: 200px;
    top: 20px;
    transform: none;
  }
  .qr-popup-content {
    padding: 12px;
  }
  .qr-popup-header h3 {
    font-size: 1rem;
  }
  .qr-popup-close {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    padding: 6px;
  }
  .qr-code-box {
    width: 80px;
    height: 80px;
  }
  .qr-code-box p {
    font-size: 0.6rem;
  }
  .qr-popup-description {
    font-size: 0.7rem;
  }
}

/* Enhanced mobile touch interactions for QR popup */
@media (max-width: 900px) {
  .qr-popup-close {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }
  
  .qr-popup {
    /* Ensure popup doesn't interfere with mobile navigation */
    z-index: 999;
  }
} 

.coming-soon {
  display: block;
  color: #2563eb;
  background: #eff6ff;
  font-weight: 700;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 16px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  cursor: not-allowed;
  opacity: 0.85;
  border-radius: 0;
  letter-spacing: 0.5px;
  user-select: none;
}
.coming-soon::before {
  content: "⏳ ";
  font-size: 1.1em;
  vertical-align: middle;
} 

/* ===== NEW MOBILE NAVIGATION SYSTEM ===== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--dark-gold);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
}

.mobile-menu-toggle:hover {
  background: var(--dark-blue);
  transform: scale(1.05);
}

.mobile-menu-toggle:focus {
  outline: 3px solid var(--dark-gold);
  outline-offset: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  margin: 2px auto;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  display: block !important;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu */
.mobile-menu {
  display: none !important;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--card-bg);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.mobile-menu.active {
  display: block !important;
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--dark-gold);
}

.mobile-menu-header h2 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.2s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.mobile-menu-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-link:hover {
  background: var(--bg-secondary);
  color: var(--dark-gold);
}

.submenu-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.mobile-menu-toggle-submenu.active .submenu-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  background: var(--bg-secondary);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.mobile-submenu-link {
  display: block;
  padding: 12px 20px 12px 40px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-submenu-link:hover {
  background: var(--dark-gold);
  color: var(--white);
  border-left-color: var(--white);
}

.mobile-submenu-highlight {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #78350f;
  font-weight: 700;
}

.mobile-submenu-highlight:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #451a03;
}

.mobile-coming-soon {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #2563eb;
  background: #eff6ff;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 3px solid #2563eb;
}

.mobile-coming-soon::before {
  content: "⏳ ";
  margin-right: 5px;
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
  background: var(--dark-gold);
  border-radius: 0 0 var(--nav-radius) var(--nav-radius);
  margin: 0 auto;
  max-width: 900px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
  border-top: 2px solid var(--dark-gold);
  border-bottom: 2px solid var(--light-gold);
  transition: box-shadow 0.2s;
}

.desktop-nav-list {
  display: flex;
  padding: 0 12px;
  margin: 0;
  list-style: none;
  gap: 8px;
}

.desktop-nav-item {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: visible;
}

.desktop-nav-link {
  display: block;
  padding: 16px 38px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.13rem;
  border-radius: 12px 12px 0 0;
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: 0.5px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.desktop-nav-link::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.25s;
  margin: 0 auto 0 auto;
}

.desktop-nav-link:hover, .desktop-nav-link:focus {
  background: var(--dark-blue);
  color: var(--dark-gold);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(26,34,56,0.10);
}

.desktop-nav-link:hover::after, .desktop-nav-link:focus::after {
  width: 60%;
}

.desktop-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--bg-primary);
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.18);
  z-index: 100;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  border: 1px solid var(--dark-gold);
  transition: opacity 0.25s, transform 0.25s, background 0.3s ease;
}

.desktop-dropdown a {
  color: var(--text-primary);
  padding: 16px 28px;
  display: block;
  text-decoration: none;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-bottom: 1px solid rgba(191,161,74,0.08);
}

.desktop-dropdown a:last-child {
  border-bottom: none;
}

.desktop-dropdown a:hover {
  background: var(--dark-gold);
  color: var(--white);
  padding-left: 36px;
}

.desktop-nav-item:hover .desktop-dropdown, 
.desktop-nav-item:focus-within .desktop-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Desktop dropdown specific styling */
.desktop-nav-item .desktop-dropdown a[href*="Laundry"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="bedding-linen"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="restaurant"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="workwear"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="care-sector"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="spas"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="wash-fold"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="ironing"]:hover {
  background: #2c7c2d !important;
  color: #ffffff !important;
  padding-left: 36px;
}

.desktop-nav-item .desktop-dropdown a[href*="Cleaning"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="landlord-services"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="carpets"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="ovens"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="offices"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="restaurants"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="sa-cleaning"]:hover {
  background: #242b66 !important;
  color: #ffffff !important;
  padding-left: 36px;
}

.desktop-nav-item .desktop-dropdown a.app-download:hover {
  background: #fde68a !important;
  color: #78350f !important;
  padding-left: 36px;
}

.desktop-nav-item .desktop-dropdown a[href*="Maintenance"]:hover,
.desktop-nav-item .desktop-dropdown a[href*="maintenance"]:hover {
  background: #6b7280 !important;
  color: #fbbf24 !important;
  padding-left: 36px;
}
/* Desktop Navigation Styles for #nav-menu structure */
nav#nav-menu {
  display: block;
  background: var(--dark-gold);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  max-width: 900px;
  min-width: 800px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--dark-gold);
  border-bottom: 1px solid var(--light-gold);
  transition: all 0.3s ease;
  animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Enhanced sticky nav shadow */
nav#nav-menu.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.nav-menu {
  display: flex;
  padding: 0 20px;
  margin: 0;
  list-style: none;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  height: 60px;
}

.nav-item {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: visible;
}

.nav-link {
  display: block;
  padding: 18px 32px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
  background: transparent;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  text-align: center;
  min-width: 120px;
}

.nav-link::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.25s;
  margin: 0 auto 0 auto;
}

.nav-link:hover, .nav-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.nav-link:hover::after, .nav-link:focus::after {
  width: 80%;
}

/* Active navigation item styling */
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

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

.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--bg-primary);
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.18);
  z-index: 100;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  border: 1px solid var(--dark-gold);
  transition: opacity 0.25s, transform 0.25s, background 0.3s ease;
}

.dropdown a {
  color: var(--text-primary);
  padding: 16px 28px;
  display: block;
  text-decoration: none;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-bottom: 1px solid rgba(191,161,74,0.08);
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: var(--dark-gold);
  color: var(--white);
  padding-left: 36px;
}

.nav-item:hover .dropdown, 
.nav-item:focus-within .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Dropdown specific styling for different services */
.nav-item .dropdown a[href*="Laundry"]:hover,
.nav-item .dropdown a[href*="bedding-linen"]:hover,
.nav-item .dropdown a[href*="restaurant"]:hover,
.nav-item .dropdown a[href*="workwear"]:hover,
.nav-item .dropdown a[href*="care-sector"]:hover,
.nav-item .dropdown a[href*="spas"]:hover,
.nav-item .dropdown a[href*="wash-fold"]:hover,
.nav-item .dropdown a[href*="ironing"]:hover {
  background: #2c7c2d !important;
  color: #ffffff !important;
  padding-left: 36px;
}

.nav-item .dropdown a[href*="Cleaning"]:hover,
.nav-item .dropdown a[href*="landlord-services"]:hover,
.nav-item .dropdown a[href*="carpets"]:hover,
.nav-item .dropdown a[href*="ovens"]:hover,
.nav-item .dropdown a[href*="offices"]:hover,
.nav-item .dropdown a[href*="restaurants"]:hover,
.nav-item .dropdown a[href*="sa-cleaning"]:hover {
  background: #242b66 !important;
  color: #ffffff !important;
  padding-left: 36px;
}

.nav-item .dropdown a.app-download:hover {
  background: #fde68a !important;
  color: #78350f !important;
  padding-left: 36px;
}

.nav-item .dropdown a[href*="Maintenance"]:hover,
.nav-item .dropdown a[href*="maintenance"]:hover {
  background: #6b7280 !important;
  color: #fbbf24 !important;
  padding-left: 36px;
}

/* ===== RESPONSIVE STYLES ===== */

/* Responsive adjustments for desktop navigation */
@media (max-width: 1200px) {
  nav#nav-menu {
    max-width: 95vw;
    min-width: 0;
  }
  
  .nav-link {
    padding: 16px 24px;
    font-size: 1.05rem;
    min-width: 100px;
  }
}

@media (max-width: 1000px) {
  .nav-link {
    padding: 14px 18px;
    font-size: 1rem;
    min-width: 80px;
  }
  
  .nav-menu {
    padding: 0 12px;
    height: 55px;
  }
}

/* Show mobile navigation on smaller screens */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .desktop-nav {
    display: none;
  }
  
  /* Hide desktop navigation on mobile */
  nav#nav-menu {
    display: none !important;
  }
  
  /* Ensure mobile menu and overlay are hidden by default */
  .mobile-menu-overlay:not(.active) {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  .mobile-menu:not(.active) {
    display: none !important;
    pointer-events: none !important;
  }
  
  /* Prevent body scroll when mobile menu is open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* Mobile navigation adjustments for smaller screens */
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
  }
  
  .mobile-menu-toggle {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-menu-header h2 {
    font-size: 1.1rem;
  }
  
  .mobile-menu-link {
    padding: 14px 16px;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .mobile-submenu-link {
    padding: 10px 16px 10px 32px;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
/* ===== THEME-SPECIFIC MOBILE NAVIGATION STYLES ===== */

/* Cleaning theme mobile navigation */
body.cleaning-theme .mobile-nav-toggle {
  background: var(--cleaning-primary);
  border-color: var(--cleaning-accent);
}

body.cleaning-theme .mobile-nav-toggle:hover {
  background: var(--cleaning-accent);
}

body.cleaning-theme .mobile-nav-header {
  background: var(--cleaning-primary);
}

body.cleaning-theme .mobile-nav-sublink:hover {
  background: var(--cleaning-accent);
  color: var(--white);
}

/* Laundry theme mobile navigation */
body.laundry-theme .mobile-nav-toggle {
  background: var(--laundry-primary);
  border-color: var(--laundry-accent);
}

body.laundry-theme .mobile-nav-toggle:hover {
  background: var(--laundry-accent);
}

body.laundry-theme .mobile-nav-header {
  background: var(--laundry-primary);
}

body.laundry-theme .mobile-nav-sublink:hover {
  background: var(--laundry-accent);
  color: var(--white);
}
@media (max-width: 900px) {
  html, body {
    font-size: 18px;
  }
  .desktop-nav-link, .desktop-dropdown a, .coming-soon {
    font-size: 1.18rem;
    padding: 20px 24px;
  }
  .desktop-dropdown {
    font-size: 1.08rem;
  }
  .service-card, .testimonial, .main-content, .hero-section, .contact-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .service-card, .testimonial {
    min-width: 0;
    width: 96vw;
    max-width: 420px;
  }
  .hero-title, .testimonials-title, .contact-title {
    font-size: 2rem;
  }
  .hero-tagline, .contact-desc {
    font-size: 1.15rem;
  }
  .hero-cta, .contact-form button {
    font-size: 1.13rem;
    padding: 16px 32px;
    border-radius: 14px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 1.08rem;
    padding: 16px 16px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  html, body {
    font-size: 17px;
  }
  .hero-title, .testimonials-title, .contact-title {
    font-size: 1.25rem;
  }
  .hero-tagline, .contact-desc {
    font-size: 1.01rem;
  }
  .service-card, .testimonial {
    width: 98vw;
    max-width: 99vw;
    padding: 12px 2vw;
  }
  .main-content, .hero-section, .contact-section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
} 

@media (max-width: 900px) {
  section, .main-content, .hero-section, .contact-section, .service-highlights, .testimonials-section, .footer {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .service-highlights {
    gap: 32px !important;
  }
  .service-card, .testimonial {
    margin-bottom: 24px !important;
    min-height: 180px;
    padding-top: 28px;
    padding-bottom: 28px;
    overflow: visible;
  }
  .desktop-nav-list {
    gap: 12px !important;
  }
  .desktop-nav-link, .desktop-dropdown a, .coming-soon {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .desktop-dropdown {
    margin-bottom: 8px;
  }
  .contact-form input, .contact-form textarea {
    margin-bottom: 14px;
  }
}
@media (max-width: 600px) {
  section, .main-content, .hero-section, .contact-section, .service-highlights, .testimonials-section, .footer {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
  .service-highlights {
    gap: 18px !important;
  }
  .service-card, .testimonial {
    margin-bottom: 18px !important;
    min-height: 160px;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: visible;
  }
  .desktop-nav-list {
    gap: 8px !important;
  }
  .desktop-nav-link, .desktop-dropdown a, .coming-soon {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .desktop-dropdown {
    margin-bottom: 6px;
  }
  .contact-form input, .contact-form textarea {
    margin-bottom: 10px;
  }
} 

@media (max-width: 900px) {
  .testimonial {
    padding: 24px 18px !important;
    border-radius: 18px !important;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border: 1.5px solid var(--border-color);
    background: var(--testimonial-bg);
  }
  .testimonials-section {
    padding-left: 4vw;
    padding-right: 4vw;
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .testimonials-title {
    margin-bottom: 28px !important;
    margin-top: 18px !important;
  }
  .service-card, .main-content, .hero-section, .contact-section {
    border-radius: 18px !important;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  .main-content, .hero-section, .contact-section {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .hero-cta, .contact-form button {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .contact-form input, .contact-form textarea {
    border-radius: 10px !important;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 600px) {
  .testimonial {
    padding: 16px 6px !important;
    border-radius: 14px !important;
    max-width: 99vw;
  }
  .testimonials-section {
    padding-left: 2vw;
    padding-right: 2vw;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .service-card, .main-content, .hero-section, .contact-section {
    border-radius: 12px !important;
    max-width: 99vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .main-content, .hero-section, .contact-section {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .hero-cta, .contact-form button {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    width: 100%;
    max-width: 99vw;
  }
} 

@media (max-width: 900px) {
  .main-content, .hero-section, .contact-section, .service-highlights, .testimonials-section {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    border-radius: 18px !important;
    background: var(--glass-bg);
    box-shadow: 0 2px 12px rgba(26,34,56,0.07);
  }
  .service-card, .testimonial {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px !important;
    padding: 28px 20px !important;
    border-radius: 18px !important;
    box-sizing: border-box;
    border: 1.5px solid var(--border-color);
    background: var(--service-card-bg);
    box-shadow: 0 2px 12px rgba(26,34,56,0.10);
    min-height: 180px;
    overflow: visible;
  }
  .testimonial {
    background: var(--testimonial-bg);
    box-shadow: 0 2px 16px rgba(191,161,74,0.10);
  }
  .testimonials-section, .service-highlights, .main-content, .hero-section, .contact-section {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .hero-cta, .contact-form button {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 12px;
  }
  .contact-form input, .contact-form textarea {
    border-radius: 10px !important;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 14px;
  }
}
@media (max-width: 600px) {
  .main-content, .hero-section, .contact-section, .service-highlights, .testimonials-section {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 12px !important;
  }
  .service-card, .testimonial {
    max-width: 99vw;
    padding: 20px 12px !important;
    border-radius: 12px !important;
    min-height: 160px;
    overflow: visible;
  }
  .testimonials-section, .service-highlights, .main-content, .hero-section, .contact-section {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .hero-cta, .contact-form button {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
    width: 100%;
    max-width: 99vw;
    border-radius: 10px;
  }
} 

@media (max-width: 900px) {
  .service-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    padding: 28px 20px !important;
    box-sizing: border-box;
    border-radius: 18px !important;
    background: var(--service-card-bg);
    box-shadow: 0 2px 12px rgba(26,34,56,0.10);
    word-break: break-word;
    min-height: 180px;
    overflow: visible;
  }
  .service-card:first-child {
    margin-top: 60px;
  }
  .service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  .service-card p {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-primary);
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .service-card {
    max-width: 98vw;
    padding: 20px 12px !important;
    border-radius: 12px !important;
    margin-bottom: 18px;
    min-height: 160px;
    overflow: visible;
  }
  .service-card:first-child {
    margin-top: 44px;
  }
  .service-card h3 {
    font-size: 1.13rem;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 0.98rem;
    color: var(--text-primary);
    opacity: 1;
    line-height: 1.5;
  }
} 

@media (max-width: 600px) {
  .service-highlights {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0 2vw;
    width: 100%;
  }
  .service-card {
    width: 94vw;
    max-width: 410px;
    min-width: 0;
    padding: 20px 12px 18px 12px;
    margin: 0 auto 18px auto;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(191,161,74,0.13);
    border: 1.2px solid var(--border-color);
    background: var(--service-card-bg);
    overflow: visible;
    min-height: 160px;
  }
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    width: 54px;
    height: 54px;
  }
  .service-card h3 {
    font-size: 1.13rem;
    margin-bottom: 10px;
    font-weight: 800;
  }
  .service-card p {
    font-size: 0.93rem;
    margin-bottom: 0;
    color: var(--text-primary);
    opacity: 1;
    line-height: 1.5;
  }
} 

@media (max-width: 600px) {
  .hero-cta {
    display: block;
    width: auto;
    max-width: 90vw;
    margin: 16px auto 16px auto;
    padding: 12px 22px;
    font-size: 1rem;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
  }
  /* Ensure desktop navigation stays hidden on mobile */
  nav#nav-menu {
    display: none !important;
  }
} 

/* === Enhancements: visual accents, accessibility, and utilities === */

/* Stronger nav shadow when page is scrolled */
nav#nav-menu.scrolled {
  box-shadow: 0 8px 28px rgba(26,34,56,0.18);
}

/* Decorative soft gradients for hero and key sections */
.hero-section::before,
.main-content::before,
.contact-section::before,
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(191,161,74,0.15), transparent 60%),
    radial-gradient(500px 260px at -10% 20%, rgba(26,34,56,0.07), transparent 60%);
}

/* Ensure overlays are anchored to sections and clipped */
.main-content,
.contact-section,
.testimonials-section {
  position: relative;
  overflow: hidden;
}

/* Elevated hover for cards and testimonials */
.service-card {
  background: var(--service-card-bg);
  border: 1.5px solid var(--border-color);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 16px 42px rgba(107,114,128,0.22);
}
.testimonial {
  background: var(--testimonial-bg);
  border: 1px solid var(--border-color);
}

/* App download page specific styles */
.app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 0 16px;
}

.feature-card.wide-card {
  grid-column: 1 / -1;
  max-width: none;
}

.feature-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
  border-color: var(--dark-gold);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile responsive styles for app features */
@media (max-width: 900px) {
  .app-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
    padding: 0 8px;
  }
  
  .feature-card.wide-card {
    grid-column: 1 / -1;
  }
  
  .feature-card {
    padding: 20px 16px;
    border-radius: 10px;
  }
  
  .feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .app-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
    padding: 0 4px;
  }
  
  .feature-card.wide-card {
    grid-column: 1;
  }
  
  .feature-card {
    padding: 16px 12px;
    border-radius: 8px;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.download-section {
  text-align: center;
  padding: 48px 32px;
  background: var(--card-bg);
  border-radius: 16px;
  margin: 48px 0;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow);
}

.download-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
}

.download-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-block;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--dark-gold);
}

/* Mobile responsive styles for download section */
@media (max-width: 900px) {
  .download-section {
    padding: 32px 16px;
    margin: 32px 0;
    border-radius: 12px;
  }
  
  .download-section h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .download-section p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .download-buttons {
    gap: 16px;
    margin: 24px 0;
  }
  
  .download-btn {
    min-width: 180px;
    padding: 14px 20px;
  }
}

@media (max-width: 600px) {
  .download-section {
    padding: 24px 12px;
    margin: 24px 0;
    border-radius: 10px;
  }
  
  .download-section h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .download-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
  }
  
  .download-btn {
    min-width: 160px;
    width: 100%;
    max-width: 280px;
    padding: 12px 16px;
  }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-small {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1;
}

.btn-large {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.coming-soon-notice {
  background: #2c7c2d;
  border: 1px solid #2c7c2d;
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  color: #ffffff;
}

.coming-soon-notice p {
  margin: 0;
  text-align: center;
}

.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--form-border);
  border-radius: 8px;
  background: var(--form-bg);
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--dark-gold);
}

/* Focus-visible styles for accessibility */
.nav-link:focus-visible,
.dropdown a:focus-visible,
.hero-cta:focus-visible,
.contact-form button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(26,34,56,0.6);
  outline-offset: 3px;
}

/* Refined form placeholders */
::placeholder {
  color: rgba(26,34,56,0.6);
}

/* Smooth content reveal support (progressive enhancement) */
.fade-in {
  will-change: transform, opacity;
}
.fade-in.in-view {
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
}

/* Back-to-top button */
#back-to-top {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e6c97a;
  background: var(--dark-gold);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(26,34,56,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s;
  z-index: 1200;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(26,34,56,0.18);
  }
  50% {
    box-shadow: 0 6px 30px rgba(107,114,128,0.4);
  }
}

#back-to-top:hover {
  background: var(--dark-blue);
  color: var(--dark-gold);
  animation: none;
  transform: translateY(-5px) scale(1.1);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Page loading animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--dark-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth page transitions */
.page-transition {
  animation: pageTransitionIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Floating animation for decorative elements */
.float {
  animation: float 3s ease-in-out infinite;
}

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

/* Glow effect for special elements */
.glow {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(107, 114, 128, 0.6);
  }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-gold), var(--light-gold));
  z-index: 10001;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(107, 114, 128, 0.5);
}

/* Section reveal animations */
.reveal-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Bounce in animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, var(--dark-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientTextShift 3s ease infinite;
}

@keyframes gradientTextShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Underline animation for links */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark-gold);
  transition: width 0.3s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

/* Minor typographic refinements */
.company-info h1 {
  letter-spacing: 2.8px;
}
.hero-title {
  letter-spacing: 1.3px;
}
.testimonials-title,
.contact-title {
  letter-spacing: 1.2px;
}

/* Dark Mode Toggle Button */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--dark-gold);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

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

/* Rotating icon effect */
.theme-toggle #theme-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.theme-toggle:hover #theme-icon {
  transform: rotate(180deg) scale(1.2);
}

.theme-toggle:hover {
  background: var(--dark-gold);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle:focus {
  outline: 3px solid var(--dark-gold);
  outline-offset: 2px;
}

/* Ripple effect on theme toggle */
.theme-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.theme-toggle:active::before {
  width: 100px;
  height: 100px;
}

/* Dark mode specific adjustments */
[data-theme="dark"] .theme-toggle {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--text-secondary);
  color: var(--bg-primary);
}

/* Responsive adjustments for theme toggle */
@media (max-width: 900px) {
  .theme-toggle {
    top: 20px;
    right: 80px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    z-index: 1000; /* Lower z-index than mobile nav toggle */
  }
}

@media (max-width: 600px) {
  .theme-toggle {
    top: 15px;
    right: 70px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Mobile Dark Mode Specific Fixes */
@media (max-width: 900px) {
  [data-theme="dark"] .main-content,
  [data-theme="dark"] .hero-section,
  [data-theme="dark"] .contact-section,
  [data-theme="dark"] .testimonials-section {
    background: rgba(45, 45, 45, 0.98);
    border-color: rgba(212, 175, 55, 0.4);
  }
  
  [data-theme="dark"] .service-card,
  [data-theme="dark"] .testimonial {
    background: rgba(45, 45, 45, 0.98);
    border-color: rgba(212, 175, 55, 0.3);
  }
  
  [data-theme="dark"] .slider-container {
    border-color: rgba(212, 175, 55, 0.5);
  }
  
  [data-theme="dark"] .download-section {
    background: rgba(45, 45, 45, 0.98);
    border-color: rgba(212, 175, 55, 0.4);
  }
  
  [data-theme="dark"] .feature-card {
    background: rgba(45, 45, 45, 0.98);
    border-color: rgba(212, 175, 55, 0.3);
  }
}

/* Enhanced mobile touch interactions */
@media (max-width: 900px) {
  .download-btn,
  .hero-cta,
  .contact-form button {
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .nav-link,
  .dropdown a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-toggle,
  .theme-toggle {
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
  }
}

/* Improved mobile spacing and typography */
@media (max-width: 600px) {
  .main-content,
  .hero-section,
  .download-section {
    margin-left: 8px;
    margin-right: 8px;
    max-width: calc(100vw - 16px);
  }
  
  .app-features {
    margin-left: 8px;
    margin-right: 8px;
  }
  
  .feature-card {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Better text readability on mobile */
  .main-content p,
  .hero-tagline,
  .download-section p {
    line-height: 1.6;
    word-spacing: 0.1em;
  }
  
  /* Improved button spacing */
  .download-buttons {
    padding: 0 8px;
  }
}

/* ===== CLEANING THEME - GREY AND #242b66 ===== */

/* Cleaning-specific color variables */
:root {
  --cleaning-primary: #6b7280; /* Grey */
  --cleaning-secondary: #9ca3af; /* Light grey */
  --cleaning-accent: #242b66; /* Deep blue */
  --cleaning-accent-dark: #ffffff; /* White for contrast */
  --cleaning-accent-light: #242b66; /* Deep blue */
  --cleaning-bg-primary: #f9fafb; /* Light grey background */
  --cleaning-bg-secondary: #f3f4f6; /* Slightly darker grey background */
  --cleaning-text-primary: #374151; /* Dark grey text */
  --cleaning-text-secondary: #6b7280; /* Medium grey text */
  --cleaning-card-bg: rgba(255, 255, 255, 0.9); /* White with slight transparency */
  --cleaning-border: rgba(36, 43, 102, 0.3); /* Deep blue border */
  --cleaning-shadow: 0 8px 32px rgba(107, 114, 128, 0.1);
}

/* Dark mode for cleaning pages */
[data-theme="dark"] {
  --cleaning-primary: #9ca3af;
  --cleaning-secondary: #6b7280;
  --cleaning-accent: #242b66; /* Deep blue for dark mode */
  --cleaning-accent-dark: #242b66;
  --cleaning-accent-light: #ffffff;
  --cleaning-bg-primary: #1f2937;
  --cleaning-bg-secondary: #374151;
  --cleaning-text-primary: #f9fafb;
  --cleaning-text-secondary: #9ca3af;
  --cleaning-card-bg: rgba(55, 65, 81, 0.95);
  --cleaning-border: rgba(36, 43, 102, 0.5);
  --cleaning-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Override main theme colors for cleaning pages */
body.cleaning-theme {
  background: linear-gradient(180deg, var(--cleaning-bg-primary) 0%, var(--cleaning-bg-secondary) 100%);
  color: var(--cleaning-text-primary);
}

/* Header styling for cleaning pages */
body.cleaning-theme .header {
  background: var(--cleaning-bg-primary);
  border-bottom: 2px solid var(--cleaning-primary);
}

body.cleaning-theme .company-info {
  background: var(--cleaning-card-bg);
}

body.cleaning-theme .company-info h1 {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .company-info::after {
  background: var(--cleaning-primary);
}

body.cleaning-theme .contact-info {
  color: var(--cleaning-text-secondary);
}

/* Navigation styling for cleaning pages */
body.cleaning-theme .desktop-nav {
  background: var(--cleaning-primary);
  border-top: 2px solid var(--cleaning-primary);
  border-bottom: 2px solid var(--cleaning-secondary);
}

body.cleaning-theme .desktop-nav-link:hover,
body.cleaning-theme .desktop-nav-link:focus {
  background: var(--cleaning-accent-dark);
  color: var(--cleaning-accent-light);
}

body.cleaning-theme .desktop-dropdown {
  background: var(--cleaning-bg-primary);
  border: 1px solid var(--cleaning-primary);
}

body.cleaning-theme .desktop-dropdown a {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .desktop-dropdown a:hover {
  background: var(--cleaning-accent);
  color: var(--cleaning-accent-dark);
}

/* Hero section styling for cleaning pages */
body.cleaning-theme .hero-section {
  background: var(--cleaning-card-bg);
  border: 1.5px solid var(--cleaning-border);
  box-shadow: var(--cleaning-shadow);
}

body.cleaning-theme .hero-title {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .hero-tagline {
  color: var(--cleaning-text-secondary);
}

body.cleaning-theme .hero-cta {
  background: var(--cleaning-primary);
  color: white;
}

body.cleaning-theme .hero-cta:hover {
  background: var(--cleaning-accent-dark);
  color: var(--cleaning-accent-light);
}

/* Main content styling for cleaning pages */
body.cleaning-theme .main-content {
  background: var(--cleaning-card-bg);
  border: 1.5px solid var(--cleaning-border);
  box-shadow: var(--cleaning-shadow);
}

body.cleaning-theme .main-content h2 {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .main-content p {
  color: var(--cleaning-text-primary);
}

/* Testimonials section styling for cleaning pages */
body.cleaning-theme .testimonials-section {
  background: var(--cleaning-card-bg);
  border: 1.5px solid var(--cleaning-border);
  box-shadow: var(--cleaning-shadow);
}

body.cleaning-theme .testimonials-title {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .testimonial {
  background: var(--cleaning-card-bg);
  border: 1px solid var(--cleaning-border);
}

body.cleaning-theme .testimonial-text {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .testimonial-author {
  color: var(--cleaning-text-secondary);
}

/* Contact section styling for cleaning pages */
body.cleaning-theme .contact-section {
  background: var(--cleaning-card-bg);
  border: 1.5px solid var(--cleaning-border);
  box-shadow: var(--cleaning-shadow);
}

body.cleaning-theme .contact-title {
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .contact-desc {
  color: var(--cleaning-text-secondary);
}

body.cleaning-theme .contact-form input,
body.cleaning-theme .contact-form textarea {
  background: var(--cleaning-card-bg);
  border: 1.5px solid var(--cleaning-secondary);
  color: var(--cleaning-text-primary);
}

body.cleaning-theme .contact-form input:focus,
body.cleaning-theme .contact-form textarea:focus {
  border: 1.5px solid var(--cleaning-primary);
}

body.cleaning-theme .contact-form button {
  background: var(--cleaning-primary);
  color: white;
}

body.cleaning-theme .contact-form button:hover {
  background: var(--cleaning-accent-dark);
  color: var(--cleaning-accent-light);
}

/* Footer styling for cleaning pages */
body.cleaning-theme .footer {
  background: var(--cleaning-bg-primary);
  color: var(--cleaning-text-primary);
  border-top: 1.5px solid var(--cleaning-primary);
}

body.cleaning-theme .footer-accent {
  background: var(--cleaning-primary);
}

body.cleaning-theme .footer-content {
  color: var(--cleaning-text-primary);
}

/* Deep blue tint for info boxes on cleaning pages */
body.cleaning-theme .main-content,
body.cleaning-theme .testimonials-section,
body.cleaning-theme .contact-section {
  background: linear-gradient(135deg, var(--cleaning-card-bg) 0%, rgba(36, 43, 102, 0.1) 100%);
  border: 1.5px solid rgba(36, 43, 102, 0.3);
  position: relative;
}

/* Add subtle deep blue overlay to info boxes */
body.cleaning-theme .main-content::before,
body.cleaning-theme .testimonials-section::before,
body.cleaning-theme .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(36, 43, 102, 0.05) 0%, transparent 50%, rgba(36, 43, 102, 0.08) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above the overlay */
body.cleaning-theme .main-content > *,
body.cleaning-theme .testimonials-section > *,
body.cleaning-theme .contact-section > * {
  position: relative;
  z-index: 2;
}

/* ===== LAUNDRY THEME - GREY AND PASTEL GREEN ===== */

/* Laundry-specific color variables */
:root {
  --laundry-primary: #6b7280; /* Grey */
  --laundry-secondary: #9ca3af; /* Light grey */
  --laundry-accent: #2c7c2d; /* Pastel green */
  --laundry-accent-dark: #ffffff; /* Dark green for contrast */
  --laundry-accent-light: #2c7c2d; /* Very light pastel green */
  --laundry-bg-primary: #f9fafb; /* Light grey background */
  --laundry-bg-secondary: #f3f4f6; /* Slightly darker grey background */
  --laundry-text-primary: #374151; /* Dark grey text */
  --laundry-text-secondary: #6b7280; /* Medium grey text */
  --laundry-card-bg: rgba(255, 255, 255, 0.9); /* White with slight transparency */
  --laundry-border: rgba(167, 243, 208, 0.3); /* Pastel green border */
  --laundry-shadow: 0 8px 32px rgba(107, 114, 128, 0.1);
}

/* Dark mode for laundry pages */
[data-theme="dark"] {
  --laundry-primary: #9ca3af;
  --laundry-secondary: #6b7280;
  --laundry-accent: #2c7c2d; /* Brighter green for dark mode */
  --laundry-accent-dark: #2c7c2d;
  --laundry-accent-light: #ffffff;
  --laundry-bg-primary: #1f2937;
  --laundry-bg-secondary: #374151;
  --laundry-text-primary: #f9fafb;
  --laundry-text-secondary: #9ca3af;
  --laundry-card-bg: rgba(55, 65, 81, 0.95);
  --laundry-border: rgba(16, 185, 129, 0.3);
  --laundry-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Override main theme colors for laundry pages */
body.laundry-theme {
  background: linear-gradient(180deg, var(--laundry-bg-primary) 0%, var(--laundry-bg-secondary) 100%);
  color: var(--laundry-text-primary);
}

/* Header styling for laundry pages */
body.laundry-theme .header {
  background: var(--laundry-bg-primary);
  border-bottom: 2px solid var(--laundry-primary);
}

body.laundry-theme .company-info {
  background: var(--laundry-card-bg);
}

body.laundry-theme .company-info h1 {
  color: var(--laundry-text-primary);
}

body.laundry-theme .company-info::after {
  background: var(--laundry-primary);
}

body.laundry-theme .contact-info {
  color: var(--laundry-text-secondary);
}

/* Navigation styling for laundry pages */
body.laundry-theme .desktop-nav {
  background: var(--laundry-primary);
  border-top: 2px solid var(--laundry-primary);
  border-bottom: 2px solid var(--laundry-secondary);
}

body.laundry-theme .desktop-nav-link:hover,
body.laundry-theme .desktop-nav-link:focus {
  background: var(--laundry-accent-dark);
  color: var(--laundry-accent-light);
}

body.laundry-theme .desktop-dropdown {
  background: var(--laundry-bg-primary);
  border: 1px solid var(--laundry-primary);
}

body.laundry-theme .desktop-dropdown a {
  color: var(--laundry-text-primary);
}

body.laundry-theme .desktop-dropdown a:hover {
  background: var(--laundry-accent);
  color: var(--laundry-accent-dark);
}

/* Hero section styling for laundry pages */
body.laundry-theme .hero-section {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
  box-shadow: var(--laundry-shadow);
}

body.laundry-theme .hero-title {
  color: var(--laundry-text-primary);
}

body.laundry-theme .hero-tagline {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .hero-cta {
  background: var(--laundry-primary);
  color: white;
}

body.laundry-theme .hero-cta:hover {
  background: var(--laundry-accent-dark);
  color: var(--laundry-accent-light);
}

/* Main content styling for laundry pages */
body.laundry-theme .main-content {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
  box-shadow: var(--laundry-shadow);
}

body.laundry-theme .main-content h2 {
  color: var(--laundry-text-primary);
}

body.laundry-theme .main-content p {
  color: var(--laundry-text-primary);
}

/* Testimonials section styling for laundry pages */
body.laundry-theme .testimonials-section {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
  box-shadow: var(--laundry-shadow);
}

body.laundry-theme .testimonials-title {
  color: var(--laundry-text-primary);
}

body.laundry-theme .testimonial {
  background: var(--laundry-card-bg);
  border: 1px solid var(--laundry-border);
}

body.laundry-theme .testimonial-text {
  color: var(--laundry-text-primary);
}

body.laundry-theme .testimonial-author {
  color: var(--laundry-text-secondary);
}

/* QR Code popup styling for laundry pages */
body.laundry-theme .qr-popup {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
  box-shadow: var(--laundry-shadow);
}

body.laundry-theme .qr-popup-header h3 {
  color: var(--laundry-text-primary);
}

body.laundry-theme .qr-popup-description {
  color: var(--laundry-text-primary);
}

body.laundry-theme .qr-code-box {
  background: var(--laundry-bg-secondary);
  border-color: var(--laundry-text-secondary);
}

body.laundry-theme .qr-code-box p {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .qr-popup-close {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .qr-popup-close:hover {
  background: var(--laundry-bg-secondary);
  color: var(--laundry-text-primary);
}

/* Contact section styling for laundry pages */
body.laundry-theme .contact-section {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
  box-shadow: var(--laundry-shadow);
}

body.laundry-theme .contact-title {
  color: var(--laundry-text-primary);
}

body.laundry-theme .contact-desc {
  color: var(--laundry-text-secondary);
}

body.laundry-theme .contact-form input,
body.laundry-theme .contact-form textarea {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-secondary);
  color: var(--laundry-text-primary);
}

body.laundry-theme .contact-form input:focus,
body.laundry-theme .contact-form textarea:focus {
  border: 1.5px solid var(--laundry-primary);
}

body.laundry-theme .contact-form button {
  background: var(--laundry-primary);
  color: white;
}

body.laundry-theme .contact-form button:hover {
  background: var(--laundry-accent-dark);
  color: var(--laundry-accent-light);
}

/* Form message styles */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
}

.form-message.success {
  background: #2c7c2d;
  color: #ffffff;
  border: 1px solid #2c7c2d;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode form message styles */
[data-theme="dark"] .form-message.success {
  background: #ffffff;
  color: #2c7c2d;
  border: 1px solid #ffffff;
}

[data-theme="dark"] .form-message.error {
  background: #7f1d1d;
  color: #fca5a5;
  border: 1px solid #991b1b;
}

/* Laundry theme form message styles */
body.laundry-theme .form-message.success {
  background: #2c7c2d;
  color: #ffffff;
  border: 1px solid #2c7c2d;
}

body.laundry-theme .form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

body.laundry-theme .contact-details {
  color: var(--laundry-text-primary);
}

body.laundry-theme .contact-details a {
  color: var(--laundry-text-secondary);
}

/* Footer styling for laundry pages */
body.laundry-theme .footer {
  background: var(--laundry-bg-primary);
  color: var(--laundry-text-primary);
  border-top: 1.5px solid var(--laundry-primary);
}

body.laundry-theme .footer-accent {
  background: var(--laundry-primary);
}

body.laundry-theme .footer-content {
  color: var(--laundry-text-primary);
}

/* Service cards styling for laundry pages */
body.laundry-theme .service-card {
  background: var(--laundry-card-bg);
  border: 1.5px solid var(--laundry-border);
}

body.laundry-theme .service-card:hover {
  border-color: var(--laundry-primary);
  background: var(--laundry-card-bg);
}

body.laundry-theme .service-icon {
  color: var(--laundry-primary);
}

body.laundry-theme .service-card h3 {
  color: var(--laundry-text-primary);
}

body.laundry-theme .service-card p {
  color: var(--laundry-text-primary);
}

/* Mobile navigation styling for laundry pages */
body.laundry-theme .mobile-nav-toggle {
  background: var(--laundry-primary);
  border: 2px solid var(--laundry-accent);
}

body.laundry-theme .mobile-nav-toggle:hover {
  background: var(--laundry-accent);
}

/* Mobile navigation styling for laundry pages */
@media (max-width: 900px) {
  body.laundry-theme .mobile-nav {
    background: var(--laundry-primary);
  }
  
  body.laundry-theme .mobile-nav-submenu {
    background: var(--laundry-bg-primary);
  }
  
  body.laundry-theme .mobile-nav-sublink {
    color: var(--laundry-text-primary);
  }
  
  body.laundry-theme .mobile-nav-sublink:hover {
    background: var(--laundry-accent);
    color: var(--laundry-accent-dark);
  }
}

/* Back to top button styling for laundry pages */
body.laundry-theme #back-to-top {
  background: var(--laundry-primary);
  border: 2px solid var(--laundry-accent);
  color: white;
}

body.laundry-theme #back-to-top:hover {
  background: var(--laundry-accent-dark);
  color: var(--laundry-accent-light);
}

/* Theme toggle styling for laundry pages */
body.laundry-theme .theme-toggle {
  background: var(--laundry-bg-primary);
  color: var(--laundry-text-primary);
  border-color: var(--laundry-primary);
}

body.laundry-theme .theme-toggle:hover {
  background: var(--laundry-primary);
  color: white;
}

/* Logo styling for laundry pages */
body.laundry-theme .logo-img {
  background: var(--laundry-bg-primary);
}

/* Map container styling for laundry pages */
body.laundry-theme .map-container h3 {
  color: var(--laundry-text-primary);
}

/* Form styling enhancements for laundry pages */
body.laundry-theme .contact-form select {
  background: var(--laundry-card-bg);
  border: 2px solid var(--laundry-secondary);
  color: var(--laundry-text-primary);
}

body.laundry-theme .contact-form select:focus {
  border-color: var(--laundry-primary);
}

/* Placeholder styling for laundry pages */
body.laundry-theme ::placeholder {
  color: var(--laundry-text-secondary);
}

/* Green tint for info boxes on bedding-linen page */
body.laundry-theme .main-content,
body.laundry-theme .testimonials-section,
body.laundry-theme .contact-section {
  background: linear-gradient(135deg, var(--laundry-card-bg) 0%, rgba(44, 124, 45, 0.1) 100%);
  border: 1.5px solid rgba(44, 124, 45, 0.3);
  position: relative;
}

/* Add subtle green overlay to info boxes */
body.laundry-theme .main-content::before,
body.laundry-theme .testimonials-section::before,
body.laundry-theme .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 124, 45, 0.05) 0%, transparent 50%, rgba(44, 124, 45, 0.08) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above the overlay */
body.laundry-theme .main-content > *,
body.laundry-theme .testimonials-section > *,
body.laundry-theme .contact-section > * {
  position: relative;
  z-index: 2;
}

/* Green tint for info boxes on app-download page */
body.laundry-theme .download-section,
body.laundry-theme .feature-card {
  background: linear-gradient(135deg, var(--laundry-card-bg) 0%, rgba(44, 124, 45, 0.1) 100%);
  border: 1.5px solid rgba(44, 124, 45, 0.3);
  position: relative;
}

/* Add subtle green overlay to app-download info boxes */
body.laundry-theme .download-section::before,
body.laundry-theme .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(44, 124, 45, 0.05) 0%, transparent 50%, rgba(44, 124, 45, 0.08) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above the overlay for app-download page */
body.laundry-theme .download-section > *,
body.laundry-theme .feature-card > * {
  position: relative;
  z-index: 2;
}

/* Focus styles for laundry pages */
body.laundry-theme .nav-link:focus-visible,
body.laundry-theme .dropdown a:focus-visible,
body.laundry-theme .hero-cta:focus-visible,
body.laundry-theme .contact-form button:focus-visible,
body.laundry-theme input:focus-visible,
body.laundry-theme textarea:focus-visible,
body.laundry-theme select:focus-visible 

/* Maintenance theme styling */
body.maintenance-theme {
  background: linear-gradient(180deg, var(--maintenance-bg-primary) 0%, var(--maintenance-bg-secondary) 100%);
  color: var(--maintenance-text-primary);
}

body.maintenance-theme .header {
  background: var(--maintenance-card-bg);
  border-bottom: 2px solid var(--maintenance-primary);
}

body.maintenance-theme .hero-section {
  background: linear-gradient(135deg, var(--maintenance-bg-primary) 0%, var(--maintenance-bg-secondary) 100%);
  border: 2px solid var(--maintenance-border);
}

body.maintenance-theme .hero-title {
  color: var(--maintenance-text-primary);
}

body.maintenance-theme .hero-tagline {
  color: var(--maintenance-text-secondary);
}

body.maintenance-theme .hero-cta {
  background: var(--maintenance-accent);
  color: var(--maintenance-accent-dark);
  border: 2px solid var(--maintenance-accent-dark);
}

body.maintenance-theme .hero-cta:hover {
  background: var(--maintenance-accent-dark);
  color: var(--maintenance-accent);
}

body.maintenance-theme .main-content {
  background: var(--maintenance-card-bg);
  border: 1px solid var(--maintenance-border);
  box-shadow: 0 4px 6px var(--maintenance-shadow);
}

body.maintenance-theme .service-card {
  background: var(--maintenance-card-bg);
  border: 1px solid var(--maintenance-border);
  box-shadow: 0 2px 4px var(--maintenance-shadow);
}

body.maintenance-theme .service-card:hover {
  background: var(--maintenance-accent);
  color: var(--maintenance-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--maintenance-shadow);
}

body.maintenance-theme .testimonial {
  background: var(--maintenance-card-bg);
  border: 1px solid var(--maintenance-border);
  box-shadow: 0 2px 4px var(--maintenance-shadow);
}

body.maintenance-theme .contact-section {
  background: var(--maintenance-card-bg);
  border: 1px solid var(--maintenance-border);
  box-shadow: 0 4px 6px var(--maintenance-shadow);
}

body.maintenance-theme .contact-form input,
body.maintenance-theme .contact-form textarea {
  background: var(--maintenance-bg-primary);
  border: 1px solid var(--maintenance-primary);
  color: var(--maintenance-text-primary);
}

body.maintenance-theme .contact-form input:focus,
body.maintenance-theme .contact-form textarea:focus {
  border-color: var(--maintenance-accent);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

body.maintenance-theme .contact-form button {
  background: var(--maintenance-accent);
  color: var(--maintenance-accent-dark);
  border: 2px solid var(--maintenance-accent-dark);
}

body.maintenance-theme .contact-form button:hover {
  background: var(--maintenance-accent-dark);
  color: var(--maintenance-accent);
}

body.maintenance-theme .dropdown {
  background: var(--maintenance-bg-primary);
  border: 1px solid var(--maintenance-primary);
}

body.maintenance-theme .dropdown a {
  color: var(--maintenance-text-primary);
}

body.maintenance-theme .dropdown a:hover {
  background: var(--maintenance-accent);
  color: var(--maintenance-accent-dark);
}

/* Focus styles for maintenance pages */
body.maintenance-theme .nav-link:focus-visible,
body.maintenance-theme .dropdown a:focus-visible,
body.maintenance-theme .hero-cta:focus-visible,
body.maintenance-theme .contact-form button:focus-visible,
body.maintenance-theme input:focus-visible,
body.maintenance-theme textarea:focus-visible,
body.maintenance-theme select:focus-visible {
  outline: 3px solid var(--maintenance-accent);
  outline-offset: 3px;
}

/* Skip link styling for laundry pages */
body.laundry-theme .skip-link:focus {
  background: var(--laundry-accent-dark);
  color: var(--laundry-accent-light);
  outline: 3px solid var(--laundry-primary);
}

/* Advertisement Banner Styles */
.advertisement-banner {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  background: var(--bg-primary);
  border-top: 2px solid var(--dark-gold);
  border-bottom: 2px solid var(--dark-gold);
  transition: background 0.3s ease;
}

.advertisement-banner a {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.advertisement-banner a:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

.advertisement-banner img {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  margin: 0 auto;
  border: none;
  outline: none;
  object-fit: contain;
  object-position: center;
}

/* Dark mode adjustments for advertisement banner */
[data-theme="dark"] .advertisement-banner {
  background: var(--bg-primary);
  border-top-color: var(--text-secondary);
  border-bottom-color: var(--text-secondary);
}

/* Laundry theme adjustments for advertisement banner */
body.laundry-theme .advertisement-banner {
  background: var(--laundry-bg-primary);
  border-top-color: var(--laundry-primary);
  border-bottom-color: var(--laundry-primary);
}
