/* CSS for section section:Header */
section {
  max-width: 1440px;
  margin: 0 auto;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 12px 40px; */
  background-color: #ffffff;
  border-bottom: 1px solid #f0f2f4;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  height: 65px;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 38px;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #111418;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 16px;
  color: #111418;
  font-weight: 500;
}

.cta-button {
  background-color: #137fec;
  color: #ffffff;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }
  
  .main-nav {
    display: none;
  }
}

/* CSS for section section:Hero */
#hero {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-background {
  background-image: url('../images/91693d7d8c963c970ca16b67b0f0e5716363bbe2.png');
  background-size: cover;
  background-position: center;
  padding: 66px 0;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
  width: 100%;
  max-width: 1440px;
}

.hero-text {
  max-width: 607px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero-form-card {
  width: 440px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-header {
  background-color: #137fec;
  padding: 16px 24px;
  text-align: center;
  color: #ffffff;
}

.form-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-header p {
  color: #dbeafe;
  font-size: 14px;
}

.booking-form {
  padding: 32px 32px 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  color: #617589;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dbe0e6;
  border-radius: 8px;
  font-size: 14px;
  color: #111418;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #6b7280;
}

.location-input {
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
}

.form-actions {
  margin-top: 8px;
}

.submit-btn {
  width: 100%;
  background-color: #137fec;
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 4px 6px -4px rgba(59, 130, 246, 0.3);
}

.form-footer {
  margin-top: 4px;
  display: flex;
  justify-content: center;
}

.secure-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9aaabb;
  font-size: 12px;
}

@media (max-width: 992px) {
  /* .hero-background {
    background-image: url('images/banner-mobile.jpg');
    background-size: cover;
    background-position: center;
    padding: 66px 0;
    
    justify-content: center;
  } */
  .hero-background {
    background-image: url('../images/banner-mobile.jpg');
    background-size: cover;
    background-position: center;
    padding: 66px 0;
    /* display: flex; */
    justify-content: center;
    height: 508px;
  }
  
  .hero-content {
    display: block;
    /* flex-direction: column; */
    /* text-align: center; */
    gap: 40px;
    margin-top: 160px;
  }

    .hero-text {
        width: 100%;
        padding: 24px 16px;
        text-align: center;
    }
  
  .hero-text h1 {
    font-size: 32px;
    line-height: 40px;
  }
  
  .hero-form-card {
    width: 100%;
    max-width: 440px;
    margin-top: 37px;
  }

  
}

/* CSS for section section:Features */
#features {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.features-image-wrapper {
  flex: 0 0 357px;
  position: relative;
}

.merged-image-container {
  position: relative;
  width: 357px;
  height: 899px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.main-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-img-1 {
  position: absolute;
  /* top: -64px;
  left: -8px;
  width: 373px;
  height: 559px; */
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-img-2 {
  position: absolute;
  bottom: -13px;
  left: -264px;
  width: 1185px;
  height: 449px;
  object-fit: cover;
  z-index: 2;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.trusted-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 4;
  color: #ffffff;
}

.trusted-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trusted-text p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 293px;
}

.features-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111418;
  margin-bottom: 16px;
}

.features-header p {
  color: #617589;
  font-size: 16px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid #dbe0e6;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.feature-icon-bg {
  background-color: #eff6ff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111418;
  margin-bottom: 4px;
}

.feature-subtitle {
  color: #617589;
  font-size: 14px;
  margin-bottom: 4px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  color: #617589;
  font-size: 14px;
}

.feature-row {
  display: flex;
  gap: 8px;
}

.feature-card-small {
  flex: 1;
  padding: 32px;
  border: 1px solid #dbe0e6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f2f4;
  padding-bottom: 16px;
}

.icon-bg-blue {
  background-color: #dbeafe;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg-orange {
  background-color: #ffedd5;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111418;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #617589;
}

.check-list li img {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}

.features-cta {
  display: flex;
  justify-content: flex-start;
}

.btn-primary {
  background-color: #137fec;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0px 4px 6px -4px rgba(59, 130, 246, 0.3);
}

@media (max-width: 992px) {

  

  #features {
    margin-top: 300px;
  }
  .features-container {
    flex-direction: column;
    align-items: center;
  }
  
  .features-header h2 {
    text-align: center;
  }
  .features-image-wrapper {
    display: none; /* Hiding complex image collage on mobile for simplicity, or could stack */
  }
  
  .feature-row {
    flex-direction: column;
  }
  .features-cta {
    justify-content: center;
  }
}

/* CSS for section section:ColorConsultation */
#color-consultation {
  background-color: #f9fafb;
  padding: 80px 0;
  max-width: 100%;
}

.color-container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.color-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-block;
  background-color: #dbeafe;
  color: #137fec;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
}

.color-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111418;
}

.color-description {
  color: #617589;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.color-stats {
  display: flex;
  gap: 16px;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid #dbe0e6;
  border-radius: 8px;
  padding: 16px;
  width: 168px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.stat-icon img {
  width: 30px;
  height: 36px;
}

.stat-text strong {
  color: #111418;
  font-size: 14px;
}

.color-image {
  flex: 1;
}

.color-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .color-container {
    flex-direction: column;
  }
  
  .color-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    background-color: #ffffff;
    border: 1px solid #dbe0e6;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    align-items: center;
  }
  .color-cta {
    text-align: center;
  }
}

/* CSS for section section:Process */
#process {
  background-color: #f2f2f7;
  padding: 80px 0;
  max-width: 100%;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-header p {
  color: #9ca3af;
  font-size: 16px;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}

.process-line {
  position: absolute;
  top: 40%;
  left: 15%;
  right: 15%;
  height: 4px;
  background-color: #374151;
  z-index: 0;
  transform: translateY(-50%);
}

.step-card {
  position: relative;
  z-index: 1;
  width: 352px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.step-image {
  position: relative;
  width: 352px;
  height: 264px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background-color: #137fec;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

.step-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-info p {
  color: #757575;
  font-size: 14px;
  line-height: 1.5;
}

.process-cta {
  text-align: center;
}

.btn-cta {
  background-color: #0088ff;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-line {
    display: none;
  }
}

/* CSS for section section:CleaningPayment */
#cleaning-payment {
  background-color: #f9fafb;
  padding: 64px 0;
  max-width: 100%;
}

.cp-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cleaning-section {
  display: flex;
  gap: 32px;
  background-color: #ffffff;
  border: 1px solid #dbe0e6;
  border-radius: 16px;
  overflow: hidden;
}

.cleaning-images {
  display: flex;
  width: 50%;
}

.clean-img-1, .clean-img-2 {
  width: 50%;
  height: 296px;
  object-fit: cover;
}

.cleaning-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-text {
  color: #137fec;
  font-weight: 600;
}

.cleaning-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.cleaning-desc {
  color: #617589;
  line-height: 1.5;
}

.cleaning-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cleaning-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #617589;
}

.payment-section {
  display: flex;
  gap: 32px;
}

.guarantee-card {
  flex: 1;
  background-color: #137fec;
  color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee-card p {
  color: #dbeafe;
}

.payment-card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #dbe0e6;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.p-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-percent {
  color: #137fec;
  font-weight: 700;
  font-size: 20px;
}

.p-label {
  color: #617589;
  font-size: 12px;
}

.p-divider {
  height: 2px;
  background-color: #f0f2f4;
  flex: 1;
  margin: 0 16px;
}

.payment-footer {
  background-color: #f9fafb;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #617589;
}

.final-cta {
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .cleaning-section {
    flex-direction: column;
  }
  .cleaning-images {
    width: 100%;
  }
  .payment-section {
    flex-direction: column;
  }
}

/* CSS for section section:Footer */
#footer {
  background-color: #ffffff;
  border-top: 1px solid #f0f2f4;
  padding: 24px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #617589;
}

.footer-left .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111418;
}

.footer-center {
  display: flex;
  gap: 4px;
}

.designer-name {
  color: #137fec;
  font-weight: 600;
}

.footer-right {
  color: #9aaabb;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* CSS for Thank you Page section:Main */
#main-section {
  background-color: var(--bg-light);
  min-height: calc(100vh - 65px - 74px); /* Viewport minus header and footer */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confirmation-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 800px;
}

.status-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.sub-text {
  font-size: 18px;
  color: var(--text-grey);
  margin: 0;
  line-height: 1.5;
}

.sub-text strong {
  font-weight: 600;
  color: var(--text-grey);
}

.action-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-button {
  background-color: var(--primary-blue);
  color: white;
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 4px 6px -4px rgba(59, 130, 246, 0.3), 0px 10px 15px -3px rgba(59, 130, 246, 0.3);
  transition: transform 0.1s, box-shadow 0.1s;
}

.home-button:hover {
  transform: translateY(-1px);
  box-shadow: 0px 6px 8px -4px rgba(59, 130, 246, 0.4), 0px 12px 18px -3px rgba(59, 130, 246, 0.4);
}

.security-note {
  font-size: 14px;
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .main-heading {
    font-size: 24px;
  }
  .sub-text {
    font-size: 16px;
  }
  .icon-wrapper {
    width: 80px;
    height: 80px;
  }
}