/* Accent color variables */
html {
  scroll-behavior: smooth;
}
:root {
  --accent: #8B6F4E;
  --accent-dark: #6E543A;
}

html, body {
  cursor: none;
}

* {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.97;
  background: #725a37;
  box-shadow: 0 2px 8px 2px #c8a16555;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 
    box-shadow 0.25s,
    background 0.25s,
    transform 0.18s cubic-bezier(0.4,0,0.2,1);
  will-change: transform, box-shadow, background;
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px 1px #fff8;
  pointer-events: none;
  z-index: 2;
  transition: background 0.25s;
}

.custom-cursor.cursor-hover {
  box-shadow: 0 4px 16px 4px #c8a16599;
  background: #fff;
  transform: translate(-50%, -50%) scale(1.18);
}

.custom-cursor.cursor-hover .cursor-dot {
  background: #725a37;
  box-shadow: 0 0 4px 1px #c8a16555;
}

.custom-cursor.cursor-click {
  animation: cursorClickAnim 0.22s cubic-bezier(0.4,0,0.2,1);
}

@keyframes cursorClickAnim {
  0% { transform: translate(-50%, -50%) scale(1.18); }
  50% { transform: translate(-50%, -50%) scale(0.85); }
  100% { transform: translate(-50%, -50%) scale(1.18); }
}


body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #ececec;
  color: #222;
  padding-top: 64px;
  line-height: 1.7;
}

section, .about-section, .materials-section, .process-section, .testimonials {
  margin-bottom: 64px;
  padding-top: 32px;
  padding-bottom: 32px;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 24px;
}

.materials-section, .about-section, .process-section, .testimonials {
  padding-left: 0;
  padding-right: 0;
}

.btn-primary {
  background: linear-gradient(90deg, #8B6F4E 0%, #bfa074 100%);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: 0 2px 12px rgba(139,111,78,0.13);
  display: inline-block;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #bfa074 0%, #8B6F4E 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(139,111,78,0.18);
  transform: scale(1.06) translateY(-2px);
  outline: none;
}
.material-learn-more, .back-to-top {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(139,111,78,0.15);
}
.btn-primary:hover, .material-learn-more:hover, .back-to-top:hover {
  background: transparent;
  color: #fff;
}

header.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/carpet-cleaning.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px 60px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border: 0.5px solid white;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(139,111,78,0.15);
}
.btn-primary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary {
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border: 0.5px solid white;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(139,111,78,0.15);
}
.btn-secondary:hover {
  background-color: transparent;
  color: rgb(124, 96, 66);
  border-color: white;
}

.services {
  padding: 50px 20px 30px 20px;
  background: #fff;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service-item {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 30px 24px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.service-item:hover {
  transform: translateY(-6px) scale(1.03);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-item h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.service-item p {
  font-size: 1rem;
  color: #444;
}

.testimonials {
  background: linear-gradient(135deg, #42311a 0%, #8B6F4E 100%);
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.testimonial-slider {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: none;
}
.testimonial {
  display: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(139,111,78,0.08);
  font-size: 1.1rem;
  color: #222;
  min-height: 220px;
  width: 100%;
  max-width: 500px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale(0.98) translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.testimonial.active {
  display: flex;
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
}
.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.testimonial-avatar i {
  font-size: 2.7rem;
  color: #b2c9b7;
  background: #eafaf1;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(139,111,78,0.10);
}
.testimonial p {
  margin: 0 0 8px 0;
  font-size: 1.13rem;
  line-height: 1.6;
}
.testimonial span {
  margin-top: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 4;
}
.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eafaf1;
  border: 2px solid #b2c9b7;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: inline-block;
}
.testimonial-dots .dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.18);
}
.highlight {
  color: var(--accent);
  font-weight: 700;
  background: #f7f1ea;
  border-radius: 6px;
  padding: 0 4px;
}
.slider-btn {
  position: absolute;
  bottom: 38px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}
.slider-btn:hover {
  background: var(--accent-dark);
}

footer {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 28px 10px 18px 10px;
  font-size: 1rem;
  margin-top: 0;
  position: relative;
}

/* Navbar styles */
.navbar {
  width: 100%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 8px rgba(139,111,78,0.07);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* Navbar left-aligned links next to logo */
.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  height: 64px;
  position: relative;
}
/* Update accent color in navbar logo */
.navbar-logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-right: 32px;
  text-decoration: none;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}
.navbar-links li {
  opacity: 0;
  transform: translateY(-10px);
  animation: navLinkFade 0.5s forwards;
}
.navbar-links li:nth-child(1) { animation-delay: 0.1s; }
.navbar-links li:nth-child(2) { animation-delay: 0.2s; }
.navbar-links li:nth-child(3) { animation-delay: 0.3s; }

@keyframes navLinkFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar links accent color */
.nav-link {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-link:hover {
  color: var(--accent);
}
.nav-link:hover:after {
  width: 100%;
}

.nav-link.active {
  color: #fff !important;
  font-weight: 800;
  background: var(--accent);
  border-radius: 18px;
  padding: 8px 22px;
  box-shadow: 0 2px 8px rgba(139,111,78,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-link.active:hover {
  background: var(--accent-dark);
  color: #fff !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 110;
}
.navbar-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--accent);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger and toggle accent */
.navbar-toggle.active span:nth-child(1),
.navbar-toggle.active span:nth-child(3) {
  background: var(--accent-dark);
}

/* Services page styles */
.services-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
  min-height: 70vh;
}
.services-headline {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--accent);
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(139,111,78,0.08);
  padding: 32px 24px 24px 24px;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(139,111,78,0.13);
}
.service-icon {
  font-size: 2.7rem;
  margin-bottom: 18px;
}
.service-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #222;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}
.service-note {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}
.pricing-note {
  text-align: center;
  background: #eafaf1;
  border-radius: 10px;
  padding: 18px 10px;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.footer-contacts {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.footer-contacts a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer-contacts a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}
.footer-socials {
  margin: 18px 0 10px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.footer-socials a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-socials a:hover {
  color: var(--accent);
  transform: scale(1.18) rotate(-8deg);
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  box-shadow: 0 2px 12px rgba(139,111,78,0.18);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.back-to-top:hover {
  background: var(--accent-dark);
  transform: scale(1.12) translateY(-4px);
}
@media (max-width: 700px) {
  .back-to-top {
    right: 10px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* About section */
.about-section {
  background: #fff;
  padding: 50px 20px 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 220px;
  background: radial-gradient(ellipse at center, #eafaf1 0%, #fff 80%);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.about-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.about-type {
  border-radius: 16px;
  padding: 38px 24px 30px 24px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
  color: #fff;
  background: linear-gradient(135deg, #8B6F4E 0%, #6E543A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-type:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 8px 32px rgba(139,111,78,0.18), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.about-type:nth-child(1) {
  background: linear-gradient(135deg, #987a53 0%, #d9e4db 100%);
  color: #222;
}
.about-type:nth-child(2) {
  background: linear-gradient(135deg, #dfe9e3 0%, #77785d 100%);
  color: #222;
}
.about-type:nth-child(3) {
  background: linear-gradient(135deg, #4E7A8B 0%, #8B6F4E 100%);
  color: #fff;
}
.about-type-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(139,111,78,0.13));
}
.about-type:nth-child(2) .about-type-icon {
  color: #4E7A8B;
}
.about-type h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.about-type p {
  font-size: 1rem;
}
.about-type-domestic {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/domestic-cleaning.jpg') center/cover no-repeat;
}
.about-type-commercial {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/commercial-cleaning.jpeg') center/cover no-repeat;
}
.about-type-passing-by {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/passing-bycleaning.jpeg') center/cover no-repeat;
}

/* Materials section */
.materials-section {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/rug.jpg') center/cover no-repeat;
    padding: 50px 20px 30px 20px;
    text-align: center;
}
.materials-section h2 {
    color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.materials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 10px;
}
.material-card {
  position: relative;
  width: 320px;
  height: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(139,111,78,0.13), 0 1.5px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.material-card:hover {
  box-shadow: 0 8px 32px rgba(139,111,78,0.18);
  transform: translateY(-4px) scale(1.03);
}
.material-front {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  z-index: 1;
  transition: color 0.2s, opacity 0.5s;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.material-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--accent);
  display: block;
}
.material-learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 1rem;
  color: var(--accent);
  background: rgba(139,111,78,0.08);
  border-radius: 14px;
  padding: 4px 14px 4px 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(139,111,78,0.07);
  gap: 7px;
}
.material-learn-more i {
  font-size: 1.1em;
  margin-right: 4px;
}
.material-learn-more:hover, .material-learn-more:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.material-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--info-color, #8B6F4E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}
/* Slide-in animation */
.material-anim-slide .material-info {
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}
.material-anim-slide.show-info .material-info {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.material-anim-slide.show-info .material-front {
  opacity: 0;
}
/* Fade-scale animation */
.material-anim-fade .material-info {
  transform: scale(0.7);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
}
.material-anim-fade.show-info .material-info {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.material-anim-fade.show-info .material-front {
  opacity: 0;
}
/* Flip animation */
.material-anim-flip .material-info {
  transform: rotateY(90deg);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  backface-visibility: hidden;
}
.material-anim-flip.show-info .material-info {
  opacity: 1;
  transform: rotateY(0deg);
  pointer-events: auto;
}
.material-anim-flip .material-front {
  transition: opacity 0.5s, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.material-anim-flip.show-info .material-front {
  opacity: 0;
  transform: rotateY(-90deg);
}
.material-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139,111,78,0.07);
  margin-bottom: 10px;
  color: var(--accent);
}
.material-item.explaining {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(139,111,78,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* Process section */
.process-section {
  padding: 50px 20px 30px 20px;
  text-align: center;
}
.process-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.process-step {
  border-radius: 16px;
  padding: 30px 24px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(139,111,78,0.07);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step:hover {
  transform: translateY(-6px) scale(1.03);
}
.process-step-1 {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/carpet-pickup.jpg') center/cover no-repeat;
}
.process-step-2 {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/carpet-cleaning\ \(1\).jpg') center/cover no-repeat;
}
.process-step-3 {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/carpet-done.jpg') center/cover no-repeat;
}
.process-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.process-step h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.process-step p {
  font-size: 1rem;
  color: #444;
}


.process-step p {
    color: #fff;
}
/* About page hero section */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('assets/carpet-pickup.jpg') center/cover no-repeat;
  height: 383px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-hero-overlay {
  width: 100%;
  text-align: center;
}
.about-hero-overlay h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(139,111,78,0.18);
}
.about-hero-subtitle {
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #eafaf1;
  text-shadow: 0 2px 8px rgba(139,111,78,0.13);
  letter-spacing: 0.2px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}
.about-hero {
  position: relative;
  overflow: hidden;
}
.about-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.about-summary {
  padding: 64px 0 56px 0;
}
.about-summary h2 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.about-summary p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.about-why {
  margin-bottom: 40px;
  text-align: center;
}
.about-why h2 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.about-why-card {
  background: linear-gradient(135deg, #987a53 0%, #d9e4db 100%);
  border-radius: 16px;
  padding: 30px 24px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(139,111,78,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}
.about-why-card:hover {
  transform: translateY(-6px) scale(1.03);
}
.about-why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.about-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.about-why-card p {
  font-size: 1rem;
  color: #444;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.about-stats-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(139,111,78,0.07);
  padding: 32px 24px 24px 24px;
  width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-stats-number {
  font-size: 2.1rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.about-stats-label {
  font-size: 1.05rem;
  color: #222;
  font-weight: 600;
}

.about-reviews {
  text-align: center;
  margin-bottom: 40px;
}
.about-reviews h2 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-cta {
  margin-top: 24px;
}
.about-cta .btn-primary {
  font-size: 1.1rem;
  padding: 14px 36px;
}

/* Top right contact links */
.contact-links {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px 0 0;
  z-index: 200;
}
.contact-links a {
  color: var(--accent);
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.contact-links a:hover {
  color: var(--accent-dark);
}
.contact-links .contact-icon {
  margin-right: 6px;
  font-size: 1.25rem;
  filter: sepia(0.5) hue-rotate(-20deg) saturate(1.2) brightness(0.95);
}

@media (max-width: 900px) {
  .navbar-container {
    padding: 0 10px;
  }
  .navbar-links {
    gap: 18px;
  }
  .service-list {
    gap: 18px;
  }
  .service-item {
    width: 210px;
    padding: 22px 10px;
  }
  .slider-btn.prev {
    left: -30px;
  }
  .slider-btn.next {
    right: -30px;
  }
  .services-cards {
    gap: 18px;
  }
  .service-card {
    width: 210px;
    padding: 22px 10px 18px 10px;
  }
  .about-types, .materials-list, .process-steps {
    gap: 18px;
  }
  .about-type, .process-step {
    width: 210px;
    padding: 22px 10px;
  }
  .material-item {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .about-why-cards, .about-stats {
    gap: 18px;
  }
  .about-why-card, .about-stats-card {
    width: 180px;
    padding: 18px 8px;
  }
  .materials-list {
    gap: 16px;
  }
  .material-card {
    width: 95vw;
    max-width: 340px;
    height: 140px;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .services h2, .testimonials h2 {
    font-size: 1.3rem;
  }
  .service-list {
    flex-direction: column;
    align-items: center;
  }
  .service-item {
    width: 100%;
    max-width: 320px;
  }
  .testimonial-slider {
    max-width: 100%;
  }
  .slider-btn.prev, .slider-btn.next {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: -50px;
    transform: none;
  }
  .slider-btn.next {
    left: auto;
    right: 10px;
  }
  .services-main {
    padding: 30px 5px 0 5px;
  }
  .services-headline {
    font-size: 1.3rem;
  }
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .service-card {
    width: 100%;
    max-width: 320px;
  }
  .pricing-note {
    font-size: 0.98rem;
    padding: 12px 4px;
  }
  .about-section h2, .materials-section h2, .process-section h2 {
    font-size: 1.3rem;
  }
  .about-types, .materials-list, .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .about-type, .process-step {
    width: 100%;
    max-width: 320px;
  }
  .material-item {
    width: 100%;
    max-width: 320px;
    padding: 10px 8px;
    font-size: 0.98rem;
  }
  .about-hero {
    height: 140px;
  }
  .about-hero-overlay h1 {
    font-size: 1.3rem;
  }
  .about-main {
    padding: 30px 5px 0 5px;
  }
  .about-summary h2, .about-why h2, .about-reviews h2 {
    font-size: 1.3rem;
  }
  .about-why-cards, .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .about-why-card, .about-stats-card {
    width: 100%;
    max-width: 320px;
  }
} 

/* Make the broom icon stand out in the navbar */
.navbar-brand-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-right: 22px;
  filter: drop-shadow(0 2px 6px rgba(139,111,78,0.18));
  transition: transform 0.3s, color 0.2s, filter 0.3s;
}
.navbar-brand-icon:hover {
  color: var(--accent-dark);
  transform: rotate(-18deg) scale(1.08);
  filter: drop-shadow(0 6px 18px rgba(139,111,78,0.22));
} 

.navbar-divider {
  display: inline-block;
  width: 1.5px;
  height: 28px;
  background: #e0d6ce;
  margin: 0 18px;
  border-radius: 2px;
  vertical-align: middle;
} 

@media (max-width: 800px) {
  .navbar-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 4px 16px rgba(139,111,78,0.08);
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    z-index: 150;
  }
  .navbar-links.active {
    max-height: 400px;
    opacity: 1;
    padding: 12px 0 12px 24px;
  }
  .navbar-links li {
    opacity: 1;
    transform: none;
    animation: none;
    width: 100%;
    padding: 10px 0;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-logo, .navbar-divider {
    display: none;
  }
} 

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in, .slide-up {
  opacity: 0;
}
.fade-in.in-view {
  animation: fadeIn 1.1s ease forwards;
  opacity: 1;
}
.slide-up.in-view {
  animation: slideUp 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 1;
}
@keyframes statSlideUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.8); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.spin-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}
.spin-animate.in-view {
  animation: statSlideUp 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.about-summary-columns {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
  padding: 24px 0;
}
.about-summary-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-summary-catch .catch-phrase {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent, #8B6F4E);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.about-summary-img img {
  width: 340px;
  height: 340px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(139,111,78,0.18);
  max-width: 100%;
}
.about-summary-text .summary-small {
  font-size: 1rem;
  color: #555;
  text-align: left;
  line-height: 1.6;
  max-width: 320px;
}
@media (max-width: 900px) {
  .about-summary-columns {
    flex-direction: column;
    gap: 18px;
    padding: 10px 0;
  }
  .about-summary-col {
    align-items: center;
    justify-content: center;
  }
  .about-summary-text .summary-small {
    text-align: center;
    max-width: 100%;
  }
}
.about-cta-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px 0 32px 0;
}

.contact-main {
  min-height: 70vh;
  background: #ececec;
  padding-bottom: 48px;
}
.contact-hero {
  text-align: center;
  padding: 64px 0 32px 0;
}
.contact-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--accent, #8B6F4E);
  margin-bottom: 12px;
}
.contact-hero-desc {
  font-size: 1.18rem;
  color: #444;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(139,111,78,0.10);
  padding: 38px 28px 28px 28px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
}
.contact-card:hover, .contact-card:focus {
  box-shadow: 0 8px 32px rgba(139,111,78,0.13);
  border: 2px solid var(--accent, #8B6F4E);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
  outline: none;
}
.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eafaf1;
  box-shadow: 0 2px 8px rgba(139,111,78,0.08);
  transition: background 0.22s, color 0.22s;
}
.contact-card-icon.call { color: #8B6F4E; }
.contact-card-icon.whatsapp { color: #25d366; }
.contact-card-icon.email { color: #6E4E8B; }
.contact-card-icon.instagram { color: #E1306C; }
.contact-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--accent, #8B6F4E);
}
.contact-card-detail {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0;
}
.contact-form-section {
  max-width: 520px;
  margin: 0 auto 48px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(139,111,78,0.10);
  padding: 38px 28px 28px 28px;
  text-align: center;
}
.contact-form-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent, #8B6F4E);
  margin-bottom: 18px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.contact-form label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #444;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #eafaf1;
  font-size: 1.05rem;
  font-family: inherit;
  background: #f8f9fa;
  color: #222;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(139,111,78,0.04);
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent, #8B6F4E);
  outline: none;
  box-shadow: 0 2px 8px rgba(139,111,78,0.10);
}
.contact-form-btn {
  margin-top: 10px;
  width: 100%;
  font-size: 1.13rem;
  padding: 14px 0;
  border-radius: 14px;
}
.optional {
  font-size: 0.95em;
  color: #888;
  font-weight: 400;
}
@media (max-width: 900px) {
  .contact-cards {
    flex-direction: column;
    gap: 18px;
    padding: 12px 0;
    max-width: 100%;
  }
  .contact-card {
    min-width: 160px;
    max-width: 100%;
    padding: 28px 10px 18px 10px;
  }
}
@media (max-width: 700px) {
  .contact-form-section {
    padding: 18px 6px 12px 6px;
  }
}