/*
Theme Name: Plumbing Theme
Author: Your Name
Version: 1.0
*/

body {font-family: Arial, sans-serif; margin:0; padding:0;}
header {background: #007bff; color:#fff; padding:30px 20px; text-align:center;}
nav {display:flex; justify-content:center; gap:15px; padding:12px; background:#0056b3;}
nav a {color:#fff; text-decoration:none; font-weight:bold;}
section {padding:70px 20px;}

.hero {
  background:url('https://images.pexels.com/photos/4057832/pexels-photo-4057832.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
  color:#fff;
  text-align:center;
}

.hero h1 {font-size:48px; margin:0;}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.service img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reviews */
#reviews {background: #f9fafb; padding: 80px 20px;}

.section-title {text-align: center; font-size: 36px;}
.section-subtitle {text-align: center; color:#666; margin-bottom:50px;}

.testimonials {
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  justify-content:center;
}

.testimonial-card {
  background:#fff;
  padding:25px;
  max-width:330px;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.contact-card {
  background:#f8f8f8;
  padding:22px;
  border-radius:10px;
  text-align:center;
  max-width:420px;
  margin:auto;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color:#fff;
  padding-top:60px;
}

.footer-container {
  max-width:1200px;
  margin:auto;
  padding:0 20px 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-btn {
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  color:#fff;
  border-radius:25px;
  text-decoration:none;
}

.footer-bottom {
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.btn {
  background:#007bff;
  color:#fff;
  padding:12px 22px;
  display:inline-block;
  margin-top:12px;
  border-radius:5px;
}