/* ============================================
   LAUNDRY WHATSAPP CTA SECTION
   ============================================ */

/* Reset for section */
.laundry-cta-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #a4f542 0%, #7fd600 100%);
  overflow: hidden;
  font-family: sans-serif;
}

/* Container */
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Grid Layout */
.cta-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================
   LEFT CONTENT
   ============================================ */

.cta-content-left {
  position: relative;
  z-index: 2;
}

.cta-text-wrapper {
  max-width: 550px;
}

/* Heading */
.cta-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

/* Subtext */
.cta-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: #2d2d2d;
  font-weight: 500;
  margin-bottom: 32px;
}

/* Button Group */
.cta-button-group {
  margin-bottom: 20px;
}

/* WhatsApp Button */
.cta-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5849f6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(88, 73, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-whatsapp-btn i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.cta-whatsapp-btn:hover {
  background: #4638d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73, 136, 196, 0.4);
  color: #ffffff;
}

.cta-whatsapp-btn:hover i {
  transform: scale(1.1);
}

.cta-whatsapp-btn:active {
  transform: translateY(0);
}

/* Promo Text */
.cta-promo-text {
  font-size: 14px;
  font-style: italic;
  color: #2d2d2d;
  font-weight: 500;
}

/* ============================================
   RIGHT IMAGE
   ============================================ */

.cta-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 500px;
}

/* Phone Mockup */
.cta-phone-mockup {
  position: relative;
  z-index: 2;
  animation: floatPhone 3s ease-in-out infinite;
}

.cta-phone-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Float Animation */
@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Decorative Elements */
.cta-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.cta-decoration-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  top: -50px;
  right: -50px;
  animation: pulse 4s ease-in-out infinite;
}

.cta-decoration-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 50px;
  right: 100px;
  animation: pulse 3s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 991px)
   ============================================ */

@media only screen and (max-width: 991px) {
  .laundry-cta-section {
    padding: 60px 20px;
  }

  .cta-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-text-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-heading {
    font-size: 40px;
  }

  .cta-subtext {
    font-size: 16px;
  }

  .cta-image-wrapper {
    min-height: 400px;
    order: -1; /* Move image to top */
  }

  .cta-phone-image {
    max-width: 100%;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 767px)
   ============================================ */

@media only screen and (max-width: 767px) {
  .laundry-cta-section {
    padding: 50px 15px;
  }

  .cta-content-grid {
    gap: 30px;
  }

  .cta-heading {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .cta-subtext {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-button-group {
    margin-bottom: 16px;
  }

  .cta-whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }

  .cta-whatsapp-btn i {
    font-size: 22px;
  }

  .cta-promo-text {
    font-size: 13px;
  }

  .cta-image-wrapper {
    min-height: 350px;
  }

  .cta-phone-image {
    max-width: 100%;
  }

  .cta-decoration-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
  }

  .cta-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    right: 50px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */

@media only screen and (max-width: 480px) {
  .laundry-cta-section {
    padding: 40px 15px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-subtext {
    font-size: 14px;
    line-height: 1.5;
  }

  .cta-whatsapp-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .cta-phone-image {
    max-width: 100%;
  }

  .cta-image-wrapper {
    min-height: 300px;
  }
}

/* ============================================
   ACCESSIBILITY & INTERACTIONS
   ============================================ */

/* Focus State for Button */
.cta-whatsapp-btn:focus {
  outline: 3px solid rgba(88, 73, 246, 0.5);
  outline-offset: 3px;
}

/* Reduce Motion for Users Who Prefer It */
@media (prefers-reduced-motion: reduce) {
  .cta-phone-mockup,
  .cta-decoration {
    animation: none;
  }

  .cta-whatsapp-btn {
    transition: none;
  }
}
