/* ===== Base ===== */
* {margin:0; padding:0; box-sizing:border-box;}
body {  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;}
a {text-decoration:none; color:inherit;}
.container {max-width:1100px; margin:0 auto; padding:0 20px;}
.section {padding:60px 20px;}
.alt-bg {background:#000000;}
h2 {text-align:center; margin-bottom:30px;}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== Orange Theme Colors ===== */
:root {
  --primary: #fd9667;       /* Main orange */
  --primary-dark: #e86c00;  /* Darker orange for hover */
  --nav-bg: #ffffff;
}

/* ===== Header & Nav ===== */
header {
  background: var(--nav-bg);
  color:#fff;
  position:sticky;
  top:0; z-index:1000;
}
.nav-container {
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 20px;
}
.logo {font-size:1.5rem; font-weight:bold; color:var(--primary);}
nav ul {list-style:none; display:flex; align-items:center;}
nav li + li {margin-left:20px;}
nav a {color:#000000; padding:8px 10px; transition:color 0.3s;}
nav a:hover {color:var(--primary);}
.menu-toggle {display:none; font-size:1.8rem; cursor:pointer;}

/* Dropdown */
.dropdown {position:relative;}
.dropdown-content {
  display:none; position:absolute; background:#fff; min-width:180px;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
}
.dropdown-content a {
  display:block; padding:10px 15px; color:#333;
}
.dropdown-content a:hover {background:var(--primary); color:#fff;}
.dropdown:hover .dropdown-content {display:block;}


/* Responsive Nav */
@media (max-width:768px){
  nav {position:absolute; top:60px; left:0; right:0;
       background:var(--nav-bg); display:none; flex-direction:column;}
  nav.show {display:flex;}
  nav li + li {margin-left:0;}
  nav a {padding:12px 20px;}
  .menu-toggle {display:block; color:#000000;}
}

/* ===== Hero ===== */
.hero {
  background: rgba(0, 0, 0, 0.05) url('hero.jpg') center/cover no-repeat;
  color: #000000;
  text-align: center;
  padding: 120px 20px;
  background-blend-mode: overlay; /* 💡 key to blend the color */
}

.btn-primary {
  background:var(--primary); color:#fff; padding:12px 25px;
  border-radius:4px; font-weight:bold; transition:background 0.3s;
}
.btn-primary:hover {background:var(--primary-dark);}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
}



/* ===== Services Section ===== */
.services-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #333;
}

.services-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #f47c20;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 380px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content inside the card */
.service-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #007d6c;
  text-decoration: underline;
  margin-bottom: 12px;
  display: inline-block;
}

.service-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* CTA Button */
.btn-learn {
  background-color: #f47c20;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-learn:hover {
  background-color: #d96616;
}

/* Mobile Optimizations */
@media (max-width: 600px) {
  .services-section h2 {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .btn-learn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* ===== Contact ===== */
/* General Section Styling */
#contact {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

/* Form Styling */
#contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.contact-info {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.contact-info a {
  color: #f47c20;
  font-weight: 600;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.checkbox-group input {
  margin-right: 8px;
}

/* Button Styling */
.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Form Status Message */
#form-status {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  color: #28a745;
}



/* ===== Footer ===== */
footer {
  background:#111; color:#bbb; text-align:center; padding:20px;
}
/* ===== Footer Social Links ===== */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links img {
  width: 22px;
  height: 22px;
}

.social-links a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
.icon-nextdoor img {
  transform: translateY(-1.5px) scale(1.8);
}

/* ===== Logo Grid ===== */

.logo-carousel {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.logo-carousel h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-template-rows: repeat(2, auto);  /* 2 rows */
  gap: 2rem;
  justify-items: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.logo-item {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
}

/* Intro animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fallback */
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: auto;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fallback: stack into 2x2 or 3x3 on smaller screens */
@media (max-width: 992px) {
  .carousel-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .carousel-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Hover animation */
.logo-item:hover {
  transform: scale(1.1);
}

/* Fade-in animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Keyframes for scrolling effect */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Make it responsive */
@media (max-width: 600px) {
  .logo-item {
    width: 140px;
    height: 80px;
    font-size: 0.9rem;
    margin: 0 10px;
  }
}

/* ===== Coupon Section ===== */
.coupon-section {
  text-align: center;
  background: #fff8f2;
  padding: 60px 20px;
}

.coupon-card {
  display: inline-block;
  border: 3px dashed #ff7b00; /* dashed border for coupon look */
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 400px;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coupon-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.coupon-image {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.coupon-text {
  font-size: 1.1rem;
  color: #333;
}

.coupon-text strong {
  color: #ff7b00;
}
.coupon-text.small-text {
  font-size: 0.9rem;   /* smaller but still readable */
}


.expires {
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}

/* Optional ✂️ scissor icon for coupon edge */
.coupon-card::before {
  content: "✂️";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff8f2;
  padding: 0 5px;
  font-size: 1.3rem;
}

.page-header {
  text-align: center;
  background: #3e7551;
  color: #fff;
  padding: 40px 20px;
}

.service-detail {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
}

.service-detail img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-detail .btn-learn {
  display: inline-block;
  margin-top: 20px;
}
/* washers.html */
.service-detail h1, 
.service-detail h2 {
  color: #f47c20; /* Orange theme */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.washer-signs {
  list-style: disc;
  margin: 20px auto;
  padding: 0 40px;
  max-width: 600px;
  text-align: left;
}

.washer-signs li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

.service-areas {
  margin-top: 25px;
  font-weight: 500;
  color: #444;
}

.service-detail p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.btn-learn {
  background-color: #f47c20;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-learn:hover {
  background-color: #d96616;
}

/* aboutus.html */
#about {
  position: relative;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.90; /* Low opacity */
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2; /* Make sure content stays above the video */
}

#about .container {
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay box */
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

/* ===== Page Header Video ===== */
.page-header-video {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* Background video */
.page-header-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for contrast */
.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content stays above video */
.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .page-header-video {
    padding: 60px 20px;
  }

  .page-header-content h1 {
    font-size: 1.8rem;
  }
}
