/* ============================================
   East Orlando Pressure Washers - Main Stylesheet
   Brand Colors: Primary rgb(94,112,145), Text rgb(51,51,51)
   Fonts: Montserrat (headings), Open Sans (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: rgb(51, 51, 51);
  line-height: 1.6;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: rgb(94, 112, 145);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: rgb(60, 80, 110);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: rgb(94, 112, 145);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header / Navigation --- */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: rgb(94, 112, 145);
}

.phone-cta {
  background-color: rgb(94, 112, 145);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
}

.phone-cta:hover {
  background-color: rgb(60, 80, 110);
  color: #ffffff !important;
}

.text-cta {
  border: 2px solid rgb(94, 112, 145);
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  margin-right: 8px;
  background-color: rgb(94, 112, 145);
}

.text-cta:hover {
  background-color: #ffffff;
  color: rgb(94, 112, 145) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgb(94, 112, 145);
}

/* --- Hero Section --- */
.hero {
  background-color: rgb(221, 230, 235);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgb(94, 112, 145);
}

.hero .subtitle {
  font-size: 1.3rem;
  color: rgb(51, 51, 51);
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background-color: rgb(94, 112, 145);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: rgb(60, 80, 110);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Section Styling --- */
.section {
  padding: 60px 20px;
}

.section-alt {
  background-color: rgb(221, 230, 235);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: rgb(100, 100, 100);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-card h3 {
  color: rgb(94, 112, 145);
  margin-bottom: 10px;
}

/* --- About Section --- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: rgb(94, 112, 145);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-banner .btn-white {
  display: inline-block;
  background-color: #ffffff;
  color: rgb(94, 112, 145);
  padding: 15px 35px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.cta-banner .btn-white:hover {
  background-color: rgb(221, 230, 235);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgb(94, 112, 145);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgb(221, 230, 235);
  border-radius: 5px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(94, 112, 145);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: rgb(94, 112, 145);
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: rgb(60, 80, 110);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  background-color: #f5f5f5;
}

/* --- Customer Reviews Section --- */
.reviews-section {
  padding: 60px 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.review-stars {
  color: #f5a623;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: rgb(51, 51, 51);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: rgb(94, 112, 145);
  font-size: 1rem;
  margin-bottom: 3px;
}

.review-location {
  display: inline-block;
  color: rgb(100, 100, 100);
  font-size: 0.82rem;
  background-color: rgb(221, 230, 235);
  padding: 3px 10px;
  border-radius: 12px;
}

/* --- Footer --- */
.site-footer {
  background-color: rgb(51, 51, 51);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-phone {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-phone a {
  color: #ffffff;
  font-weight: 700;
}

.footer-phone a:hover {
  color: rgb(221, 230, 235);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgb(221, 230, 235);
  font-size: 0.9rem;
}

.footer-copy {
  color: rgb(150, 150, 150);
  font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    gap: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 40px 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
