* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar--hidden {
  transform: translateY(-110%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo img {
  height: 150px;
  width: 150px;
}

.logo-text {
  font-size: 1.5em;
  font-weight: 900;
  color: #2c5aa0;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2c5aa0;
}

.cta-btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #2c5aa0;
}

/* Hero Section with Pressure Wash Effects */
.hero {
  margin-top: 70px;
  min-height: 90vh;
  background: linear-gradient(135deg, #1e3a66 0%, #2c5aa0 50%, #4a7bc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

/* Water Droplets Animation */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.8) 2px,
      transparent 2px
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 200px 200px, 150px 150px, 250px 250px, 180px 180px;
  background-position: 0 0, 50px 60px, 130px 270px, 70px 100px;
  animation: droplets 8s linear infinite;
  opacity: 0.4;
  z-index: 1;
}

@keyframes droplets {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Bubbles Effect */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.3) 10px,
      transparent 10px
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 8px, transparent 8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 12px, transparent 12px);
  background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px;
  background-position: 20% 80%, 80% 20%, 40% 40%, 60% 70%;
  animation: bubbles 15s ease-in-out infinite;
  opacity: 0.5;
  z-index: 1;
}

@keyframes bubbles {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50px) scale(1.1);
    opacity: 0.7;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

/* Power Spray Effect on Title */
.hero-title {
  font-size: 5em;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

.hero-subtitle {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-tagline {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  font-size: 1.1em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #2c5aa0;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c5aa0;
}

.btn-outline {
  background: transparent;
  color: #2c5aa0;
  border: 2px solid #2c5aa0;
  padding: 10px 25px;
  font-size: 1em;
}

.btn-outline:hover {
  background: #2c5aa0;
  color: white;
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.btn-large {
  width: 100%;
  padding: 18px 40px;
  font-size: 1.2em;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.feature-badge:nth-child(1) {
  animation-delay: 0s;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-badge:nth-child(3) {
  animation-delay: 1s;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 2em;
  animation: bounce 2s infinite;
  color: white;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Info Bar */
.info-bar {
  background: #f8f9fa;
  padding: 30px 20px;
  border-bottom: 3px solid #2c5aa0;
}

.info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  text-align: left;
}

.info-icon {
  font-size: 2.5em;
  flex-shrink: 0;
}

.info-item strong {
  color: #2c5aa0;
  font-size: 1.1em;
  display: block;
}

.info-item p {
  color: #666;
  margin: 0;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 15px;
  color: #2c5aa0;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: #666;
  margin-bottom: 60px;
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: white;
}

.service-category {
  margin-bottom: 80px;
}

.category-title {
  font-size: 2.5em;
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
  border-color: #2c5aa0;
}

.service-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #2c5aa0;
  font-weight: 700;
}

.service-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Why Choose Us */
.why-choose {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
}

.benefit-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3em;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: #666;
  line-height: 1.8;
}

/* ================= GALLERY SECTION (UPDATED FOR REAL IMAGES) ================= */
.gallery {
  padding: 100px 20px;
  background: white;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 12px 30px;
  background: white;
  border: 2px solid #2c5aa0;
  color: #2c5aa0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: #2c5aa0;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* NEW structure */
.gallery-card {
  width: 100%;
  height: 300px; /* matches your screenshot card size */
  display: flex;
  flex-direction: column;
}

/* Top "before/after" image area */
.gallery-before-after {
  display: flex;
  width: 100%;
  height: 220px;
}

/* Each half */
.gallery-half {
  position: relative;
  flex: 1;
  margin: 0;
  overflow: hidden;
}

/* The actual images fill their half */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY: makes images crop neatly like the boxes */
  object-position: center;
  display: block;
}

/* Label overlay */
.gallery-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5em;
  letter-spacing: 1px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.15);
  user-select: none;
}

/* Bottom title strip */
.gallery-title {
  margin-top: auto;
  padding: 18px 20px;
  text-align: center;
  font-size: 1.2em;
  font-weight: 800;
  color: white;
}

/* About Section */
.about {
  padding: 100px 20px;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.1em;
  line-height: 1.9;
}

.about-cta {
  margin-top: 40px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-cta h3 {
  color: #2c5aa0;
  font-size: 2em;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-image {
  height: 500px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.3;
  }
}

.placeholder-content {
  text-align: center;
  color: white;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.logo-display {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.placeholder-content p {
  font-size: 1.5em;
  font-weight: 600;
}

/* ================= CONTACT SECTION (FIXED) ================= */
.contact {
  padding: 100px 20px;
  background: white;
}

/* ✅ Make the whole contact area a 2-column grid:
   Left = form + logo card underneath
   Right = info cards */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✅ Lock the form into the LEFT column / first row */
.contact-form-wrapper {
  grid-column: 1 / 2;
  grid-row: 1;
}

.contact-form-wrapper h3 {
  font-size: 2em;
  color: #2c5aa0;
  margin-bottom: 30px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #2c5aa0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ✅ Put the info-cards block in the RIGHT column */
.contact-info-cards {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Cards */
.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.contact-card.highlight {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
  color: white;
}

.contact-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.5em;
  color: #2c5aa0;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-card.highlight h3 {
  color: white;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

.contact-card.highlight p {
  color: white;
}

/* ✅ Logo card now sits UNDER the form (left column), centered, clean spacing */
.contact-card.logo-card {
  grid-column: 1 / 2;
  grid-row: 2;
  margin-top: 20px;

  background: white;
  border: 3px solid #2c5aa0;
  border-radius: 15px;

  padding: 40px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.logo-tagline {
  font-size: 1.1em;
  font-weight: 700;
  color: #2c5aa0;
  text-align: center;
}

.contact-link {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3em;
}

.contact-link:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.social-btn {
  background: #2c5aa0;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #1e3a66;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1e3a66;
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: #4a7bc8;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 900;
}

.footer-section h4 {
  color: #4a7bc8;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-phone {
  font-size: 1.3em;
  font-weight: 700;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #4a7bc8;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4em;
  }

  .section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 968px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 400px;
  }

  .services-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* ✅ Tablet: everything becomes 1 column, order stays clean */
  .contact-form-wrapper,
  .contact-card.logo-card,
  .contact-info-cards {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-container .cta-btn {
    display: none;
  }

  .logo img {
    height: 50px;
  }

  .logo-text {
    font-size: 1.2em;
  }

  /* Hero */
  .hero {
    margin-top: 70px;
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.5em;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.3em;
  }

  .hero-tagline {
    font-size: 1em;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Sections */
  .section-title {
    font-size: 2em;
  }

  .section-subtitle {
    font-size: 1.1em;
  }

  .category-title {
    font-size: 1.8em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-items {
    grid-template-columns: 1fr;
  }

  .info-item {
    justify-content: flex-start;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  /* ✅ Mobile: contact cards become 1 column */
  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-card.logo-card {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .section-title {
    font-size: 1.6em;
  }

  .service-card,
  .benefit-card,
  .contact-card {
    padding: 25px;
  }

  .logo-display {
    font-size: 2em;
  }

  /* Contact Logo Card Mobile */
  .contact-logo {
    max-width: 200px;
  }

  /* Footer Logo Mobile */
  .footer-logo {
    max-width: 150px;
    margin: 0 auto 20px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }
}
