/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #F9FAFE;
  color: #1F2937;
  line-height: 1.5;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.highlight {
  color: #0F766E;
  position: relative;
}
/* ===== HEADER / NAV ===== */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: #0F293B;
}
.logo img {
  height: 65px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}
.logo span strong {
  color: #5b8a72;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1F2937;
  font-size: 1.05rem;
  transition: 0.2s;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #aa8660;
}
.btn-book-pickup {
  background: linear-gradient(135deg, #7a9e96, #598679);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(89, 134, 121, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-book-pickup:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(89, 134, 121, 0.4);
}
.mobile-actions {
  display: none;
}
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}
.btn-book-mobile {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  transition: 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-book-mobile:active {
  transform: scale(0.95);
}
.btn-call-mobile {
  background: #0F766E;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  animation: jelly-pop 4s infinite;
}
.btn-call-mobile i {
  color: white;
  font-size: 0.95rem;
}
@keyframes jelly-pop {
  0%, 80% { transform: scale(1); }
  84% { transform: scale(1.1, 0.9); }
  88% { transform: scale(0.95, 1.05); }
  92% { transform: scale(1.02, 0.98); }
  96% { transform: scale(0.99, 1.01); }
  100% { transform: scale(1); }
}
/* ===== HERO SECTION ===== */
.split-hero {
  background-color: #ffffff;
  padding: 0 0 1rem 0;
}
.hero-bottom-content {
  position: relative;
  z-index: 10;
  margin-top: 1rem;
}
.hero-text-left {
  text-align: left;
  max-width: 800px;
  padding: 0 1rem;
}
.hero-left {
  padding-right: 2rem;
}
.hero-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  text-shadow: none;
}
.hero-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 650px;
  text-shadow: none;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.btn-schedule {
  background: linear-gradient(135deg, #7a9e96, #598679);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(89, 134, 121, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-schedule:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(89, 134, 121, 0.4);
}
.laundry-basket-icon {
  font-size: 3.5rem;
  color: #c7b69c;
  opacity: 0.8;
}
.process-path {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
}
.path-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23a0b8b2" fill-opacity="0.3" d="M0,160L80,170.7C160,181,320,203,480,186.7C640,171,800,117,960,112C1120,107,1280,149,1360,170.7L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>') no-repeat center;
  background-size: cover;
  z-index: 0;
  border-radius: 30px;
  opacity: 0.7;
}
.path-step {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 30%;
}
.path-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #446961, #598679);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(68, 105, 97, 0.4), inset 0 0 0 6px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}
.path-step:hover .path-icon {
  transform: scale(1.1);
}
.path-content h4 {
  font-size: 1.1rem;
  color: #1a2227;
  margin-bottom: 0.5rem;
}
.path-content p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
}
/* Hero Image Slider (Full Width Banner) */
.hero-banner-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 550px;
  overflow: hidden;
  margin-bottom: 2rem;
  margin-top: 70px; /* Offset for header */
}
.img-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.img-slide.active {
  opacity: 1;
}
/* Hero Text Slider */
.hero-text-slider {
  position: relative;
  min-height: 130px;
  margin-bottom: 1rem;
}
.text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.text-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}
/* Slider Controls */
.hero-slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
  align-items: center;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #0F766E;
  width: 30px;
  border-radius: 10px;
}
/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}
.fade-up.revealed {
  animation: fadeUpAnim 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-left {
  opacity: 0;
  transform: translateX(40px);
}
.fade-left.revealed {
  animation: fadeLeftAnim 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-right {
  opacity: 0;
  transform: translateX(-40px);
}
.fade-right.revealed {
  animation: fadeRightAnim 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
}
.zoom-in.revealed {
  animation: zoomInAnim 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnim {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnim {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnim {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-right {
    height: 500px;
    margin-top: 3rem;
  }
  .img-card.card-1 { left: 5%; }
  .img-card.card-2 { right: 5%; }
}
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .logo img { height: 60px; }
  .hero-heading { font-size: 2.5rem; }
  .process-path { flex-direction: column; gap: 2rem; align-items: center; }
  .path-step { width: 100%; max-width: 300px; }
  .path-line { display: none; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-banner-slider {
    height: 45vh;
    min-height: 300px;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hamburger {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .simple-hero {
    padding: 6rem 0 3rem;
  }
  .hero-image-box {
    height: 40vh;
    min-height: 300px;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .hero-content {
    flex-direction: column-reverse;
  }
  .marquee-track,
  .gallery-track {
    animation-duration: 25s;
  }
  .hero-right { height: 400px; }
  .img-card.card-1 { width: 200px; height: 260px; }
  .img-card.card-2 { width: 160px; height: 280px; }
  .img-card.card-3 { width: 150px; height: 200px; }
  .img-card.card-4 { width: 140px; height: 160px; }
}
.process-strip {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,245,249,0.95));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.process-step {
  position: relative;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(15,118,110,0.15);
  box-shadow: 0 30px 80px rgba(15,118,110,0.08);
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(15,118,110,0.08), transparent 50%);
  pointer-events: none;
}
.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F766E, #1E3A8A);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1.2rem;
  color: #0B2B42;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}
.process-step p {
  color: #475569;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    justify-items: center;
  }
  .hero-side-cards {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem;
  }
  .hero-copy h1 {
    font-size: 2.6rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badges {
    justify-content: flex-start;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    background: white;
    width: 70%;
    height: 100vh;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    padding: 2rem;
    box-shadow: -5px 0 25px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hamburger {
    display: block;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.service-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-thumb {
  overflow: hidden;
}
.service-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.15);
  border-color: rgba(15, 118, 110, 0.2);
}
.service-card:hover .service-thumb img {
  transform: scale(1.05);
}
.service-content {
  padding: 1.5rem 1.5rem 2rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-content {
  /* removed translation */
}
/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0B2B42;
}
/* ===== ANIMATED MARQUEE (SERVICES) ===== */
.services-showcase {
  padding: 5rem 0;
  background: #F1F5F9;
  overflow: hidden;
}
.marquee-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.marquee-track,
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slide 40s linear infinite;
  padding: 0.75rem 0;
}
.gallery-track:hover,
.marquee-track:hover {
  animation-play-state: paused;
}
.gallery-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(15,118,110,0.1);
}
/* End duplicate gallery card styles. */
.marquee-card {
  background: white;
  width: 320px;
  padding: 1.5rem;
  border-radius: 28px;
  box-shadow: 0 15px 35px -15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(15,118,110,0.1);
}
.marquee-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
  border-color: #0F766E;
}
.marquee-card i {
  font-size: 2.8rem;
  color: #0F766E;
  margin-bottom: 1rem;
}
.marquee-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===== TIMELINE ===== */
.how-it-works {
  padding: 5rem 0;
  background: white;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.timeline-card {
  background: #F9FAFE;
  padding: 2rem 1.5rem;
  border-radius: 32px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #E2E8F0;
}
.timeline-img {
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  height: 180px;
  background: #E6F7F5;
}
.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.timeline-card:hover .timeline-img img {
  transform: scale(1.05);
}
/* ===== WHY US GRID ===== */
.why-us {
  background: #F1F5F9;
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.lift-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
}
.feature-card i {
  font-size: 2.5rem;
  color: #0F766E;
  margin-bottom: 1rem;
}
/* ===== STATS COUNTER ===== */
.stats-counter {
  background: linear-gradient(115deg, #0B2B42 0%, #1E3A8A 100%);
  color: white;
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 4rem 0;
  background: white;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-info, .contact-map {
  flex: 1;
}
.contact-intro {
  color: #4B5563;
  max-width: 620px;
  margin-top: 0.75rem;
  line-height: 1.8;
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: #0F766E;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15,118,110,0.2);
}
.btn-contact-alt {
  background: #25D366;
}
.contact-details {
  list-style: none;
  margin: 2rem 0;
}
.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
}
.contact-details a {
  color: #0F766E;
  text-decoration: none;
  font-weight: 600;
}
.contact-map iframe {
  border-radius: 24px;
  min-height: 320px;
}
.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details i {
  width: 30px;
  color: #0F766E;
  font-size: 1.3rem;
}
.social-links a {
  background: #E6F7F5;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #0F766E;
  transition: 0.2s;
}
.social-links a:hover {
  background: #0F766E;
  color: white;
}
/* ===== FOOTER ===== */
.site-footer {
  background: #0B2B42;
  color: #CBD5E1;
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-col h3, .footer-col h4 {
  color: white;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col a {
  color: #CBD5E1;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #2D4A6E;
}
/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.2s;
  z-index: 999;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #128C7E;
}
/* ===== LAUNDRY PROCESS SECTION (NEW HOW IT WORKS) ===== */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: stretch;
}
.process-badge {
  display: inline-block;
  background: transparent;
  color: #0F766E;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid #0F766E;
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #0B2B42;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}
.process-subtitle {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 90%;
}
.timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2rem;
  border-left: 1px dashed #CBD5E1;
}
.timeline-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 16px;
  background: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: #E8F4F1;
  color: #0F766E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  left: -28px;
  top: 0.5rem;
  transition: all 0.4s ease;
  box-shadow: none;
}
.step-content {
  margin-left: 2rem;
}
.step-label {
  display: block;
  font-size: 0.8rem;
  color: #0F766E;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.step-content h3 {
  font-size: 1.25rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.step-content p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
/* Hover and Active states */
.timeline-step:hover,
.timeline-step.active {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: 1px solid transparent;
  transform: translateX(5px);
}
.timeline-step:hover .step-icon,
.timeline-step.active .step-icon {
  background: #E8F4F1;
  color: #0F766E;
  box-shadow: 0 5px 15px rgba(15, 118, 110, 0.1);
  transform: scale(1.05);
}
.timeline-step:hover h3,
.timeline-step.active h3 {
  color: #0F766E;
}
.process-badge-bottom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #064E3B;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 2rem;
  box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}
/* Right Side Image */
.process-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.organic-shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: #E8F4F1;
  border-radius: 120px 0 0 120px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: visible;
  margin: 0;
  border: 10px solid #F1F8F6;
  border-right: none;
}
.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 110px 0 0 110px;
  display: block;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.process-image.changing {
  opacity: 0.5;
  transform: scale(0.95);
}
.trusted-badge {
  position: absolute;
  bottom: 20%;
  left: -70px;
  background: white;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: center;
  z-index: 10;
  border: none;
}
.trusted-badge i {
  color: #0F766E;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.trusted-badge strong {
  color: #0F766E;
  font-size: 0.95rem;
  display: block;
}
.trusted-badge span {
  color: #64748B;
  font-size: 0.75rem;
}
/* Responsive updates for new layout */
@media (max-width: 992px) {
  .process-container {
    grid-template-columns: 1fr;
  }
  .process-image-wrapper {
    min-height: 400px;
    margin-top: 3rem;
  }
  .trusted-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }
}
/* ===== ANIMATED BORDER FOR STATS ===== */
@keyframes spinBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.stat-item.animated-border {
  position: relative;
  overflow: hidden;
  border: none;
  background: transparent !important;
  border-radius: 12px;
}
.stat-item.animated-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #10B981, #F97316, #3B82F6, #10B981);
  animation: spinBorder 4s linear infinite;
  z-index: 0;
}
.stat-item.animated-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #2D3748; /* Dark interior card color */
  border-radius: 10px;
  z-index: 1;
}
.stat-item.animated-border > * {
  position: relative;
  z-index: 2;
}
/* ===== RESTORED GALLERY & SERVICE CARD CSS ===== */
.service-card h3 {
  margin-bottom: 0.75rem;
}
.service-card p {
  color: #475569;
  transition: color 0.3s ease;
}
.service-card:hover p {
  color: #1F2937;
}
.gallery-marquee {
  padding: 2rem 0 4rem;
  background: #F8FAFC;
  width: 100%;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 2rem 2rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: center;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: white;
}
.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallery-card h4 {
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    background: white;
    width: 70%;
    height: 100vh;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    padding: 2rem;
    box-shadow: -5px 0 25px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
  }
  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-info, .contact-map {
    width: 100%;
    flex: none;
  }
  
  /* Make gallery swipable on mobile */
  .gallery-track.marquee-track {
    animation: none !important;
    width: 100% !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
}
/* ===== PROMO CTA SECTION ===== */
@keyframes offerPulseAnim {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(15, 118, 110, 0.3); }
  50% { transform: scale(1.025); box-shadow: 0 20px 50px rgba(15, 118, 110, 0.6); }
  100% { transform: scale(1); box-shadow: 0 10px 30px rgba(15, 118, 110, 0.3); }
}
.offer-pulse {
  animation: offerPulseAnim 2s infinite ease-in-out;
}
.promo-box {
  background: linear-gradient(135deg, #0F766E 0%, #064E3B 100%);
  border-radius: 24px;
  padding: 4.5rem 2rem;
  text-align: center;
  margin: 1rem auto 3rem;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(52, 211, 153, 0.2);
}
.promo-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #34D399;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.promo-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.promo-highlight {
  color: #FBBF24;
  display: inline-block;
}
.btn-promo {
  display: inline-block;
  background: #F59E0B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}
.btn-promo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.6);
  background: #D97706;
}
/* ===== NEW PROFESSIONAL CONTACT BUTTONS ===== */
.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.btn-pro-contact {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1rem;
  color: #1F2937 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  padding-right: 1.5rem;
}
.btn-pro-contact .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  margin: 4px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.btn-pro-contact .text-wrapper {
  margin-left: 0.75rem;
}
.btn-pro-contact.call-btn .icon-wrapper {
  background: linear-gradient(135deg, #0F766E, #064E3B);
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.3);
}
.btn-pro-contact.wa-btn .icon-wrapper {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn-pro-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.btn-pro-contact:hover .icon-wrapper {
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .contact-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-pro-contact {
    width: 100%;
  }
}
/* ===== CORAL WEB TECHNOLOGY LINK ===== */
.coral-link {
  background: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6, #10B981);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  animation: gradientText 4s linear infinite;
  transition: transform 0.3s ease;
}
.coral-link:hover {
  transform: scale(1.05);
}
@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
