@media (max-width: 700px) {
  body.standard-clean-page .summary-box,
  .summary-box {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}
/* Hide desktop summary box and show floating summary button on mobile */
@media (max-width: 700px) {
  .summary-box {
    display: none !important;
  }
  #summary-fab {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    background: #00796b;
    color: #fff;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 100px;
    max-width: 90vw;
    border: none;
    cursor: pointer;
    line-height: 1.2;
  }
  
  #summary-fab .fab-label {
    font-size: 0.8em;
    font-weight: 500;
    margin-bottom: 2px;
    opacity: 0.9;
  }
  
  #summary-fab .fab-price {
    font-size: 1.1em;
    font-weight: bold;
  }
  
  /* Mobile Summary Modal Styles */
  #summary-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  #summary-modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  
  #summary-modal .modal-content {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #ccc;
    width: 280px;
  }
  
  #summary-modal.show .modal-content {
    transform: scale(1);
  }
  
  #summary-modal .modal-content h3 {
    margin-bottom: 1em;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
  }
  
  #summary-modal .modal-content p {
    margin-bottom: 0.5em;
    font-size: 1em;
    color: #333;
  }
  
  #summary-modal .summary-pay-btn {
    width: 100%;
    margin-top: 12px;
    background: #00796b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
  }
  
  #summary-modal .summary-pay-btn:hover {
    background: #005a4a;
  }
  
  #summary-modal .close-btn {
    background: #666;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s;
  }
  
  #summary-modal .close-btn:hover {
    background: #555;
  }
}
/* Summary box policy and links */
.summary-policy {
  margin-top: 18px;
  font-size: 0.95em;
  color: gray;
}
.summary-link {
  color: #00796b;
  text-decoration: underline;
}

/* Payment button in summary box */
.summary-pay-btn {
  margin-top: 12px;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s;
}
.summary-pay-btn:hover {
  background: #005a4a;
}

/* Desktop: show desktop-only, hide mobile-only */
@media (min-width: 701px) {
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}

/* Mobile: hide desktop-only, show mobile-only */
@media (max-width: 700px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* Header and navigation */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  min-height: 450px; /* Accommodate the large logo */
  padding: 20px 0;
}
.logo {
  height: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 400px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  color: #00796b;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}
.main-nav a:hover {
  background: #e0f7fa;
}
/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  transition: top 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}
nav a {
  margin: 0 10px;
  font-weight: bold;
  cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  height: 400px;
  background: lightblue; /* TEMPORARY UNTIL IMAGE ADDED */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero button {
  padding: 15px 30px;
  font-size: 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* === SERVICES SECTION === */
.services {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.services h2 {
  margin-bottom: 30px;
}
.bubble-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.bubble {
  background: white;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  line-height: 1.2;
  word-wrap: break-word;
}
.bubble:hover {
  transform: scale(1.05);
}
.bubble button {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 13px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* === CITIES SECTION === */
.cities {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.cities ul {
  list-style: disc inside;
  columns: 2;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

/* === FOOTER === */
footer {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* === STANDARD CLEAN PAGE SPECIFIC === */
.standard-clean-page {
  padding-top: 500px; /* Account for the large glassmorphism header */
  background: linear-gradient(135deg, 
    rgba(74, 144, 226, 0.3) 0%,     /* Professional blue - lightened */
    rgba(91, 163, 245, 0.25) 15%,   /* Light blue - lightened */
    rgba(0, 121, 107, 0.3) 30%,     /* Teal (brand color) - lightened */
    rgba(38, 166, 154, 0.25) 45%,   /* Light teal - lightened */
    rgba(66, 165, 245, 0.2) 60%,    /* Sky blue - lightened */
    rgba(30, 136, 229, 0.25) 75%,   /* Professional blue - lightened */
    rgba(2, 119, 189, 0.3) 90%,     /* Deep blue - lightened */
    rgba(0, 77, 122, 0.35) 100%     /* Navy blue - lightened */
  );
  background-size: 400% 400%;
  animation: professionalGradientShift 20s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Dynamic cleaner background images */
.standard-clean-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Cleaner.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.15;
  z-index: 1;
  animation: cleanerImageCycle 15s ease-in-out infinite;
  pointer-events: none;
  transform: translateX(10%);
}

.standard-clean-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/Cleaner1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0;
  z-index: 1;
  animation: cleanerImageCycleAlt 15s ease-in-out infinite;
  pointer-events: none;
  transform: translateX(-10%);
}

/* Floating cleaner image for third image */
.cleaner-floating-bg {
  position: fixed;
  top: 20%;
  right: -5%;
  width: 300px;
  height: 400px;
  background-image: url('images/Cleaner2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 1;
  animation: cleanerFloat 20s ease-in-out infinite;
  pointer-events: none;
  transform: rotate(5deg);
}

/* Fourth cleaner image */
.cleaner-floating-bg-2 {
  position: fixed;
  top: 60%;
  left: -3%;
  width: 250px;
  height: 350px;
  background-image: url('images/Cleaner3.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 1;
  animation: cleanerFloat2 20s ease-in-out infinite;
  pointer-events: none;
  transform: rotate(-8deg);
}

@keyframes cleanerImageCycle {
  0%, 33% { 
    opacity: 0.15; 
    transform: translateX(10%) scale(1);
  }
  16.5% { 
    opacity: 0.22; 
    transform: translateX(8%) scale(1.02);
  }
  34%, 66% { 
    opacity: 0; 
    transform: translateX(15%) scale(0.98);
  }
  67%, 100% { 
    opacity: 0; 
    transform: translateX(10%) scale(1);
  }
}

@keyframes cleanerImageCycleAlt {
  0%, 33% { 
    opacity: 0; 
    transform: translateX(-10%) scale(1);
  }
  34%, 66% { 
    opacity: 0.15; 
    transform: translateX(-10%) scale(1);
  }
  50% { 
    opacity: 0.22; 
    transform: translateX(-8%) scale(1.02);
  }
  67%, 100% { 
    opacity: 0; 
    transform: translateX(-15%) scale(0.98);
  }
}

@keyframes cleanerFloat {
  0%, 66% { 
    opacity: 0; 
    transform: rotate(5deg) translateY(0px) scale(1);
  }
  67%, 100% { 
    opacity: 0.12; 
    transform: rotate(5deg) translateY(0px) scale(1);
  }
  83% { 
    opacity: 0.18; 
    transform: rotate(3deg) translateY(-10px) scale(1.05);
  }
}

@keyframes cleanerFloat2 {
  0%, 75% { 
    opacity: 0; 
    transform: rotate(-8deg) translateY(0px) scale(1);
  }
  76%, 100% { 
    opacity: 0.1; 
    transform: rotate(-8deg) translateY(0px) scale(1);
  }
  88% { 
    opacity: 0.15; 
    transform: rotate(-5deg) translateY(8px) scale(1.03);
  }
}

@keyframes professionalGradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 100% 75%; }
  75% { background-position: 0% 75%; }
  100% { background-position: 0% 50%; }
}

/* Mobile responsiveness for cleaner backgrounds */
@media (max-width: 768px) {
  .standard-clean-page::before {
    background-size: cover;
    background-position: center right;
    opacity: 0.05;
    transform: translateX(20%);
  }
  
  .standard-clean-page::after {
    background-size: cover;
    background-position: center left;
    transform: translateX(-20%);
  }
  
  .cleaner-floating-bg {
    width: 200px;
    height: 250px;
    top: 10%;
    right: -10%;
    opacity: 0;
  }
  
  @keyframes cleanerFloat {
    0%, 66% { opacity: 0; }
    67%, 100% { opacity: 0.03; }
  }
}

@media (max-width: 480px) {
  .standard-clean-page::before,
  .standard-clean-page::after {
    opacity: 0.03;
  }
  
  .cleaner-floating-bg {
    display: none;
  }
}

/* === GLASSMORPHISM BOOKING PAGE STYLES === */
.homepage-glassmorphism .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  padding-top: 500px; /* Account for the large glassmorphism header */
}

.homepage-glassmorphism main {
  flex: 1;
  max-width: 800px;
  margin-right: 320px; /* Ensure content doesn't overlap with fixed summary box */
}

.homepage-glassmorphism h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .step {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.homepage-glassmorphism .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.homepage-glassmorphism .step h2 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .summary-box {
  position: fixed;
  top: 120px;
  right: 40px;
  bottom: 40px;
  width: 280px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.homepage-glassmorphism .summary-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

/* Glassmorphism form elements */
.homepage-glassmorphism .step input,
.homepage-glassmorphism .step select,
.homepage-glassmorphism .step textarea {
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #333;
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .step input:focus,
.homepage-glassmorphism .step select:focus,
.homepage-glassmorphism .step textarea:focus {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 121, 107, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

/* Glassmorphism buttons */
.homepage-glassmorphism .home-detail-button,
.homepage-glassmorphism .clean-type-button,
.homepage-glassmorphism .bubble-button,
.homepage-glassmorphism .frequency-button,
.homepage-glassmorphism .time-slot,
.homepage-glassmorphism .date-item {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .home-detail-button:hover,
.homepage-glassmorphism .clean-type-button:hover,
.homepage-glassmorphism .bubble-button:hover,
.homepage-glassmorphism .frequency-button:hover,
.homepage-glassmorphism .time-slot:hover,
.homepage-glassmorphism .date-item:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.homepage-glassmorphism .home-detail-button.selected,
.homepage-glassmorphism .clean-type-button.selected,
.homepage-glassmorphism .bubble-button.selected,
.homepage-glassmorphism .frequency-button.active,
.homepage-glassmorphism .time-slot.selected,
.homepage-glassmorphism .date-item.selected {
  background: rgba(0, 121, 107, 0.3) !important;
  border-color: rgba(0, 121, 107, 0.5) !important;
  color: white !important;
}

/* Glassmorphism labels and text */
.homepage-glassmorphism .step label,
.homepage-glassmorphism .detail-label,
.homepage-glassmorphism .detail-value {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .step p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Summary box glassmorphism styling */
.homepage-glassmorphism .summary-box h3,
.homepage-glassmorphism .booking-summary-header h3 {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .summary-policy {
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .summary-link {
  color: rgba(255, 255, 255, 0.9) !important;
}


.standard-clean-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.standard-clean-page main {
  flex: 1;
  max-width: 800px;
  margin-right: 320px; /* Ensure content doesn't overlap with fixed summary box */
  position: relative;
  z-index: 10;
}

.standard-clean-page h1 {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 40px;
  text-align: center;
}

.standard-clean-page .step {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.standard-clean-page .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.standard-clean-page .step h2 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.standard-clean-page .step label,
.standard-clean-page .step p {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.standard-clean-page .step input,
.standard-clean-page .step select,
.standard-clean-page .step textarea {
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #333;
  position: relative;
  z-index: 2;
}

.standard-clean-page .step input:focus,
.standard-clean-page .step select:focus,
.standard-clean-page .step textarea:focus {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 121, 107, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.standard-clean-page .summary-box {
  position: fixed;
  top: 120px;
  right: 40px;
  bottom: 40px;
  width: 280px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.standard-clean-page .summary-box .desktop-only {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  min-height: 0;
}

.standard-clean-page .summary-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
  padding-right: 8px;
  /* Add sufficient bottom padding to ensure footer is always accessible */
  padding-bottom: 10px;
  /* Improve scrolling behavior */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Ensure proper scrolling with dynamic height */
  min-height: 0;
  flex-shrink: 1;
  /* Ensure scrolling works independently from main page */
  overscroll-behavior: contain;
  /* Reduce max height to final level to ensure Stripe Pay Now button is visible */
  max-height: calc(100vh - 620px);
}

/* Custom scrollbar for summary content */
.standard-clean-page .summary-content::-webkit-scrollbar {
  width: 6px;
}

.standard-clean-page .summary-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.standard-clean-page .summary-content::-webkit-scrollbar-thumb {
  background: #00796b;
  border-radius: 3px;
}

.standard-clean-page .summary-content::-webkit-scrollbar-thumb:hover {
  background: #005a4a;
}

.standard-clean-page .summary-footer {
  flex-shrink: 0;
  border-top: 1px solid #e0e0e0;
  padding: 16px 0 0 0;
  margin-top: auto;
  /* Footer will stay at bottom naturally with flexbox */
  background: #fff;
  /* Ensure footer has minimum height to show all elements */
  min-height: 200px;
}

.standard-clean-page .summary-box h3 {
  color: #00796b;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* Home details selection */
.home-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.standard-clean-page .home-detail-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 120px;
  z-index: 2;
}

.standard-clean-page .home-detail-button:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.standard-clean-page .home-detail-button.selected {
  background: rgba(0, 121, 107, 0.3) !important;
  border-color: rgba(0, 121, 107, 0.5) !important;
}

.home-detail-button .halfbath-icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}

.standard-clean-page .home-detail-button .detail-label {
  font-weight: 600;
  color: white !important;
  font-size: 14px;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.standard-clean-page .home-detail-button .detail-value {
  font-size: 16px;
  color: white !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.detail-slider {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #00796b;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
}

.slider-option:last-child {
  border-bottom: none;
}

.slider-option:hover {
  background: #e0f7fa;
}

.slider-option.selected {
  background: #00796b;
  color: white;
}

/* Ensure dropdowns are above other elements */
.home-detail-button:has(.detail-slider:not([style*="display: none"])) {
  z-index: 999;
}

/* Square footage styling to match */
.standard-clean-page .home-details label[for="squareFootageInput"] {
  display: block;
  margin-top: 30px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.standard-clean-page .home-details input#squareFootageInput {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 8px;
  transition: border-color 0.3s ease;
}

.standard-clean-page .home-details input#squareFootageInput:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

/* Mobile responsiveness for home details */
@media (max-width: 768px) {
  .home-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .home-detail-button {
    min-height: 100px;
  }
}

.standard-clean-page .clean-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.standard-clean-page .clean-type-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.standard-clean-page .clean-type-button:hover {
  background: #e0f7fa;
  border-color: #00796b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
}

.standard-clean-page .clean-type-button.selected {
  background: #00796b;
  border-color: #00796b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

.standard-clean-page .clean-type-button img {
  width: 48px;
  height: 48px;
  filter: brightness(0.8);
}

.standard-clean-page .clean-type-button.selected img {
  filter: brightness(0) invert(1);
}

.standard-clean-page .clean-type-button span {
  font-weight: 600;
  font-size: 1rem;
}

.standard-clean-page .extras-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e0f7fa;
}

.standard-clean-page .extras-header {
  margin-bottom: 20px;
}

.standard-clean-page .step-header-with-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.standard-clean-page .whats-included-btn {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #00796b;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.standard-clean-page .whats-included-btn:hover {
  background: #e0f7fa;
  border-color: #00796b;
}

/* Mobile responsiveness for step header */
@media (max-width: 768px) {
  .standard-clean-page .step-header-with-help {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .standard-clean-page .whats-included-btn {
    font-size: 0.9rem;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    width: 100%;
  }
}

.standard-clean-page .arrow-down {
  transition: transform 0.3s ease;
}

.standard-clean-page .bubble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.standard-clean-page .bubble-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.standard-clean-page .bubble-button:hover {
  background: #e0f7fa;
  border-color: #00796b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
}

.standard-clean-page .bubble-button.selected {
  background: #00796b;
  border-color: #00796b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

.standard-clean-page .bubble-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
}

.standard-clean-page .bubble-button.selected img {
  filter: brightness(0) invert(1);
}


.standard-clean-page .home-details label {
  font-weight: 600;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.standard-clean-page .home-details select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.standard-clean-page .home-details select:focus {
  outline: none;
  border-color: #00796b;
}

.standard-clean-page .laundry-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.standard-clean-page .laundry-controls button {
  background: #00796b;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  min-width: 36px;
}

.standard-clean-page .laundry-controls button:hover {
  background: #005a4a;
}

.standard-clean-page .laundry-controls span {
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.standard-clean-page .frequency-options {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.standard-clean-page .frequency-button {
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.standard-clean-page .frequency-button:hover {
  background: #e0f7fa;
  border-color: #00796b;
}

.standard-clean-page .frequency-button.active {
  background: #00796b;
  border-color: #00796b;
  color: white;
}

.standard-clean-page .time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.standard-clean-page .time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  text-align: center;
  font-weight: 500;
}

.standard-clean-page .time-slot:hover {
  background: #e0f7fa;
  border-color: #00796b;
}

.standard-clean-page .time-slot.selected {
  background: #00796b;
  border-color: #00796b;
  color: white;
}

.standard-clean-page .time-slot.disabled {
  background: #f5f5f5;
  border: 2px dashed #ccc;
  color: #999;
  text-decoration: line-through;
  cursor: not-allowed;
}

.standard-clean-page .date-scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 16px 0;
  gap: 12px;
  margin-bottom: 16px;
}

.standard-clean-page .date-item {
  min-width: 90px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  padding: 16px 12px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: pre-line;
}

.standard-clean-page .date-item:hover {
  background: #e0f7fa;
  border-color: #00796b;
}

.standard-clean-page .date-item.selected {
  background: #00796b;
  border-color: #00796b;
  color: white;
}

.standard-clean-page .date-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.standard-clean-page .date-arrow-bubble {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #00796b;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.standard-clean-page .date-arrow-bubble:hover {
  background: #e0f7fa;
  border-color: #00796b;
}

.standard-clean-page .step input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.standard-clean-page .step input:focus {
  outline: none;
  border-color: #00796b;
}

/* Name fields styling */
.name-fields-container {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.name-title-select {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
  min-width: 80px;
}

.name-title-select:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.name-field {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.name-field:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

/* Mobile responsiveness for name fields */
@media (max-width: 768px) {
  .name-fields-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .name-title-select {
    min-width: auto;
  }
}

/* Error message styling */
.error-message {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 500;
}

.standard-clean-page .step input.error {
  border-color: #d32f2f;
  background-color: #ffeaea;
}

/* Quantity controls for new extras */
.standard-clean-page .quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.standard-clean-page .quantity-controls button {
  background: #00796b;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  min-width: 30px;
}

.standard-clean-page .quantity-controls button:hover {
  background: #005a4a;
}

.standard-clean-page .quantity-controls span {
  font-weight: bold;
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}

/* Included items styling */
.standard-clean-page .bubble-button.included {
  opacity: 0.7;
  position: relative;
}

.standard-clean-page .bubble-button.included::after {
  content: "INCLUDED";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(0, 121, 107, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  pointer-events: none;
}

.standard-clean-page .bubble-button.included img {
  filter: grayscale(50%) brightness(0.7);
}

/* Clean Today special styling */
.standard-clean-page .clean-today-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border-color: #ee5a24;
}

.standard-clean-page .clean-today-btn:hover {
  background: linear-gradient(135deg, #ee5a24, #d63031);
  border-color: #d63031;
}

.standard-clean-page .clean-today-btn.selected {
  background: linear-gradient(135deg, #d63031, #a71e1e);
  border-color: #a71e1e;
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-large {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  margin: 20px;
  /* Ensure proper scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-overlay.show .modal-content-large {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 16px;
}

.modal-header h3 {
  color: #00796b;
  margin: 0;
  font-size: 1.3rem;
}

.modal-clean-type-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  order: 2;
}

.modal-clean-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 80px;
}

.modal-clean-type-btn:hover {
  background: #e0f7fa;
  border-color: #00796b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
}

.modal-clean-type-btn.active {
  background: #00796b;
  border-color: #00796b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

.modal-clean-type-btn img {
  width: 32px;
  height: 32px;
  filter: brightness(0.8);
}

.modal-clean-type-btn.active img {
  filter: brightness(0) invert(1);
}

.modal-clean-type-btn span {
  font-weight: 600;
}

.close-modal-btn {
  order: 1;
  margin-left: auto;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-modal-btn:hover {
  background: #f0f0f0;
}

.modal-body {
  padding: 24px;
}

.included-section {
  margin-bottom: 24px;
}

.included-section h4 {
  color: #00796b;
  font-size: 1.1rem;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0f7fa;
  padding-bottom: 6px;
}

.included-section ul {
  list-style: none;
  padding: 0;
}

.included-section li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.included-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00796b;
  font-weight: bold;
}

.note {
  background: #e0f7fa;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #00796b;
  margin-top: 20px;
  font-style: italic;
}

/* Clean type content sections */
.clean-type-content {
  display: none;
}

.clean-type-content.active {
  display: block;
}

.disclaimer {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  color: #856404;
  font-size: 1rem;
  border-left: 4px solid #f39c12;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
  .modal-clean-type-buttons {
    gap: 6px;
  }
  
  .modal-clean-type-btn {
    min-width: 70px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .modal-clean-type-btn img {
    width: 28px;
    height: 28px;
  }
  
  .modal-header {
    padding: 16px 20px;
    gap: 12px;
  }
  
  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .modal-clean-type-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .modal-clean-type-btn {
    min-width: auto;
    flex: 1;
  }
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .standard-clean-page .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .standard-clean-page main {
    margin-right: 0; /* Remove margin on smaller screens */
    max-width: none; /* Remove max-width constraint */
  }
  
  .standard-clean-page .summary-box {
    position: static;
    width: 100%;
    margin-top: 20px;
    /* Ensure the summary box is visible */
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .standard-clean-page .step {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .standard-clean-page .bubble-grid {
    grid-template-columns: 1fr;
  }
  
  .standard-clean-page .home-details {
    grid-template-columns: 1fr;
  }
  
  .standard-clean-page .frequency-options {
    flex-direction: column;
  }
  
  .standard-clean-page .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Detailed Booking Summary Styles */
.booking-summary-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0f7fa;
}

.booking-summary-header h3 {
  color: #00796b;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.booking-details, .booking-extras, .booking-schedule {
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  min-height: 48px;
}

.summary-item:last-child {
  border-bottom: none;
}

.item-icon {
  font-size: 1.2rem;
  min-width: 24px;
  width: 24px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.item-details {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.item-name {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.item-text {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.item-sub {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
  line-height: 1.2;
  word-wrap: break-word;
}

.item-price {
  font-weight: 600;
  color: #00796b;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
  align-self: flex-start;
  margin-top: 2px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.schedule-icon {
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
}

.schedule-text {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.booking-totals {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid #e0f7fa;
}

.subtotal-line, .tax-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #666;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin-top: 8px;
  border-top: 1px solid #e0e0e0;
  font-weight: bold;
}

.total-label {
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.5px;
}

.total-amount {
  font-size: 1.3rem;
  color: #00796b;
  font-weight: bold;
}

/* Mobile booking summary adjustments */
@media (max-width: 700px) {
  #summary-modal .booking-summary-header h3 {
    font-size: 1.1rem;
  }
  
  #summary-modal .summary-item {
    padding: 10px 0;
  }
  
  #summary-modal .item-name {
    font-size: 0.9rem;
  }
  
  #summary-modal .item-sub {
    font-size: 0.8rem;
  }
  
  #summary-modal .item-price {
    font-size: 0.9rem;
  }
  
  #summary-modal .schedule-text {
    font-size: 0.9rem;
  }
  
  #summary-modal .total-amount {
    font-size: 1.2rem;
  }
}

/* Step 6: Where's The Mess? - Google Maps Address Selection */
.address-selection-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.address-form-container {
  flex: 1;
  min-width: 300px;
}

.address-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
  background: white;
}

.address-input:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.half-input-container {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.half-input {
  flex: 1;
  margin-bottom: 0 !important;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  background: #f0f0f0;
}

gmp-map {
  width: 100%;
  height: 100%;
}

/* Google Maps custom elements */
gmpx-api-loader:not(:defined),
gmp-map:not(:defined),
gmp-advanced-marker:not(:defined) {
  display: block;
  height: 100%;
  background: #f0f0f0;
  position: relative;
}

gmpx-api-loader:not(:defined)::after,
gmp-map:not(:defined)::after {
  content: "Loading map...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
}

/* Autocomplete dropdown styling */
.pac-container {
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  font-family: Arial, sans-serif;
}

.pac-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.pac-item:hover {
  background: #e0f7fa;
}

.pac-item-selected {
  background: #e0f7fa;
}

.pac-matched {
  font-weight: bold;
  color: #00796b;
}

/* Mobile responsiveness for address selection */
@media (max-width: 768px) {
  .address-selection-container {
    flex-direction: column;
  }
  
  .address-form-container,
  .map-container {
    min-width: 100%;
  }
  
  .map-container {
    height: 300px;
  }
  
  .half-input-container {
    flex-direction: column;
    gap: 0;
  }
  
  .half-input {
    width: 100%;
    margin-bottom: 16px !important;
  }
}

/* Ensure proper spacing for the new step */
.standard-clean-page .step:last-child {
  margin-bottom: 60px;
}

/* Step 7: Additional Information Styles */
.additional-info-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-question {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.info-question label {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  font-size: 1rem;
}

.info-question select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
  margin-bottom: 12px;
}

.info-question select:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.info-question textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  background: white;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 80px;
}

.info-question textarea:focus {
  outline: none;
  border-color: #00796b;
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.other-field {
  margin-top: 12px;
  animation: slideDown 0.3s ease;
}

.other-field textarea {
  margin-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* Mobile responsiveness for additional info */
@media (max-width: 768px) {
  .additional-info-container {
    gap: 20px;
  }
  
  .info-question {
    padding: 16px;
  }
  
  .info-question label {
    font-size: 0.95rem;
  }
  
  .info-question select,
  .info-question textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* ===== iOS 26 GLASSMORPHISM HOMEPAGE STYLES ===== */

/* Homepage body with gradient background */
.homepage-glassmorphism {
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 25%, 
    #f093fb 50%, 
    #f5576c 75%, 
    #4facfe 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

/* Glass Header - Only for homepage */
.homepage-glassmorphism .glass-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homepage-glassmorphism .glass-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.homepage-glassmorphism .glass-header .logo,
.homepage-glassmorphism .glass-header nav {
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .glass-header .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.homepage-glassmorphism .glass-header .logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.homepage-glassmorphism .glass-nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

.homepage-glassmorphism .glass-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white !important;
}

/* Hero Section */
.homepage-glassmorphism .hero-glass {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  background-image: url('images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: background-image 1s ease-in-out;
}

.homepage-glassmorphism .hero-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.homepage-glassmorphism .hero-content {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 600px;
  width: 100%;
}

.homepage-glassmorphism .hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.homepage-glassmorphism .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .glass-cta-button {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .glass-cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.homepage-glassmorphism .services-glass {
  padding: 100px 20px;
  position: relative;
}

.homepage-glassmorphism .services-header {
  text-align: center;
  margin-bottom: 60px;
}

.homepage-glassmorphism .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.homepage-glassmorphism .glass-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-glassmorphism .glass-service-card {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.homepage-glassmorphism .glass-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.homepage-glassmorphism .glass-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.homepage-glassmorphism .service-content {
  position: relative;
  z-index: 2;
}

.homepage-glassmorphism .service-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .service-content .service-logo {
  height: 180px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: all 0.3s ease;
}

.homepage-glassmorphism .glass-service-card:hover .service-logo {
  opacity: 1;
  transform: scale(1.05);
}

.homepage-glassmorphism .service-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.5;
}

.homepage-glassmorphism .glass-book-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .glass-book-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white;
}

.homepage-glassmorphism .button-icon {
  font-size: 1.2rem;
}

/* Cities Section */
.homepage-glassmorphism .cities-glass {
  padding: 100px 20px;
  position: relative;
}

.homepage-glassmorphism .glass-cities-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.homepage-glassmorphism .glass-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.homepage-glassmorphism .glass-city-item {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px 15px;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

.homepage-glassmorphism .glass-city-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 50%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px;
  pointer-events: none;
}

.homepage-glassmorphism .glass-city-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Floating Glass Action Bar (iOS 26 Style) */
.homepage-glassmorphism .glass-action-bar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 8px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.homepage-glassmorphism .glass-action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 70px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.homepage-glassmorphism .glass-action-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: white;
}

.homepage-glassmorphism .glass-action-button.primary {
  background: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.5);
  color: white;
}

.homepage-glassmorphism .glass-action-button.primary:hover {
  background: rgba(76, 175, 80, 0.5);
  border-color: rgba(76, 175, 80, 0.7);
}

.homepage-glassmorphism .action-icon {
  font-size: 1.2rem;
}

/* Glass Footer */
.homepage-glassmorphism .glass-footer {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.homepage-glassmorphism .footer-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.homepage-glassmorphism .footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.homepage-glassmorphism .footer-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Tablet Responsiveness for Glassmorphism */
@media (max-width: 1024px) and (min-width: 769px) {
  .homepage-glassmorphism .hero-glass {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }
}

/* Tablet Landscape Specific - handles wide aspect ratios */
@media (max-width: 1024px) and (min-width: 769px) and (orientation: landscape) {
  .homepage-glassmorphism .hero-glass {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }
}

/* iPad Pro 12.9" Landscape Specific */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .homepage-glassmorphism .hero-glass {
    background-size: contain !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
  }
}

/* Mobile Responsiveness for Glassmorphism */
@media (max-width: 768px) {
  .homepage-glassmorphism .hero-glass {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll; /* Change from fixed to scroll for better mobile performance */
  }
  
  .homepage-glassmorphism .hero-title {
    font-size: 2.5rem;
  }
  
  .homepage-glassmorphism .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .homepage-glassmorphism .hero-content {
    padding: 40px 30px;
  }
  
  .homepage-glassmorphism .section-title {
    font-size: 2rem;
  }
  
  .homepage-glassmorphism .glass-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .homepage-glassmorphism .glass-service-card {
    padding: 30px 20px;
  }
  
  .homepage-glassmorphism .glass-cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .homepage-glassmorphism .glass-action-bar {
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    justify-content: space-around;
  }
  
  .homepage-glassmorphism .glass-action-button {
    min-width: 60px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .homepage-glassmorphism .action-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .homepage-glassmorphism .hero-glass {
    background-size: contain;
    background-position: center top;
    background-attachment: scroll;
    min-height: 100vh;
  }
  
  .homepage-glassmorphism .hero-title {
    font-size: 2rem;
  }
  
  .homepage-glassmorphism .glass-cities-grid {
    grid-template-columns: 1fr;
  }
  
  .homepage-glassmorphism .glass-nav-link {
    padding: 8px 14px;
    font-size: 14px;
    margin: 0 3px;
  }
}

/* Additional mobile-specific hero background adjustments */
@media (max-width: 600px) {
  .homepage-glassmorphism .hero-glass {
    background-size: auto 100%;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media (max-width: 400px) {
  .homepage-glassmorphism .hero-glass {
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll;
  }
}

/* ===== TRANSFORMATION MODAL STYLES ===== */

.transformation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.transformation-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.transformation-modal-content {
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 20px;
}

.transformation-modal-overlay.show .transformation-modal-content {
  transform: scale(1) translateY(0);
}

.transformation-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.transformation-modal-header {
  text-align: center;
  padding: 32px 32px 24px 32px;
  position: relative;
  z-index: 2;
}

.transformation-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.transformation-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00796b;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 121, 107, 0.2);
}

.transformation-modal-body {
  padding: 0 32px 24px 32px;
  position: relative;
  z-index: 2;
}

.transformation-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}

.transformation-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 121, 107, 0.05);
  border: 1px solid rgba(0, 121, 107, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
  background: rgba(0, 121, 107, 0.1);
  border-color: rgba(0, 121, 107, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 121, 107, 0.15);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-item span:last-child {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.transformation-modal-footer {
  padding: 24px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.transformation-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #00796b, #26a69a);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.transformation-start-btn:hover {
  background: linear-gradient(135deg, #26a69a, #4db6ac);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 121, 107, 0.4);
}

.transformation-start-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3);
}

.start-icon {
  font-size: 1.2rem;
}

.transformation-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.transformation-close-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
  transform: scale(1.1);
}

/* Mobile responsiveness for transformation modal */
@media (max-width: 768px) {
  .transformation-modal-content {
    width: 95%;
    margin: 10px;
    max-height: 90vh;
  }
  
  .transformation-modal-header {
    padding: 24px 24px 20px 24px;
  }
  
  .transformation-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .transformation-modal-header h2 {
    font-size: 1.6rem;
  }
  
  .transformation-modal-body {
    padding: 0 24px 20px 24px;
  }
  
  .transformation-message {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .transformation-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-icon {
    font-size: 1.3rem;
  }
  
  .benefit-item span:last-child {
    font-size: 0.9rem;
  }
  
  .transformation-modal-footer {
    padding: 20px 24px 24px 24px;
  }
  
  .transformation-start-btn {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .transformation-close-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .transformation-modal-header h2 {
    font-size: 1.4rem;
  }
  
  .transformation-message {
    font-size: 0.95rem;
  }
  
  .transformation-start-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}
