/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #1e293b;
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #fff;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 2.5rem;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-right: 2.5rem;
  color: #1e293b;
  position: relative;
}
.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: -0.2px;
}
nav a:hover {
  color: #1e293b;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #3b82f6;
  transition: width 0.3s ease;
  border-radius: 1px;
}
nav a:hover::after {
  width: 100%;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.phone {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}
.phone:hover {
  color: #3b82f6;
  transform: scale(1.05);
}
.cta-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245,158,11,0.15);
  outline: none;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.2px;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.cta-btn:hover::before {
  left: 100%;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 6px 20px rgba(217,119,6,0.25);
  transform: translateY(-2px);
}
.cta-btn.large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #fff;
  border: 2px solid #f59e0b;
  box-shadow: 0 8px 25px rgba(251,191,36,0.2);
  border-radius: 12px;
}
.cta-btn.large:hover, .cta-btn.large:focus {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-color: #d97706;
  box-shadow: 0 12px 30px rgba(245,158,11,0.3);
  transform: translateY(-3px);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
  padding: 3rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  flex: 1 1 350px;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1e293b;
  text-shadow: 0 4px 8px rgba(0,0,0,0.08);
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}
.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 2px;
  animation: slideInLeft 1s ease-out 0.3s both;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #475569;
  font-weight: 400;
  letter-spacing: -0.2px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  opacity: 0;
}
.hero-image-placeholder {
  flex: 1 1 600px;
  border-radius: 12px;
  border: 2px dashed #6ec1e4;
  background: #e3f0fc;
}

/* Hero Info Boxes */
.hero-info-boxes {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  opacity: 0;
}
.hero-info-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e293b;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}
.hero-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.1), transparent);
  transition: left 0.5s ease;
}
.hero-info-box:hover::before {
  left: 100%;
}
.hero-info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.12);
  border-color: #3b82f6;
}

/* Lead Form Section */
#lead-form-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem 0 2rem 0;
}
.lead-form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.lead-image-placeholder {
  border-radius: 12px;
  border: 2px dashed #6ec1e4;
  flex: 1 1 400px;
  min-width: 300px;
  background: #e3f0fc;
}
#lead-form {
  margin: 0 auto;
  max-width: 370px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#lead-form h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}
#lead-form label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #374151;
  letter-spacing: -0.2px;
}
#lead-form input,
#lead-form textarea {
  font-size: 0.95rem;
  padding: 0.7rem;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  margin-bottom: 0.7rem;
  background: #fff;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
}
#lead-form input:focus,
#lead-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  outline: none;
}
#lead-form textarea {
  resize: vertical;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.1px;
}
#lead-form button {
  margin-top: 1rem;
}
.info-section {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #2b5876;
  text-align: center;
}
.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.info-section li {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Info Section Boxes */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
  border-radius: 16px;
  margin: 2rem auto 0 auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}
.info-boxes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6 20%, #1d4ed8 50%, #3b82f6 80%, transparent);
}
.info-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1e293b;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(59,130,246,0.1);
  text-align: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  max-width: 250px;
  flex: 0 1 auto;
  margin: 0.25rem;
  backdrop-filter: blur(10px);
}
.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.info-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.05), transparent);
  transition: left 0.6s ease;
}
.info-box:hover::before {
  transform: scaleX(1);
}
.info-box:hover::after {
  left: 100%;
}
.info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.15);
  border-color: #3b82f6;
  color: #1e293b;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

/* Add specific styling for each info box */
.info-box:nth-child(1) {
  border-left: 3px solid #f59e0b;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}
.info-box:nth-child(1):hover {
  border-left-color: #d97706;
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 100%);
}

.info-box:nth-child(2) {
  border-left: 3px solid #10b981;
  background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
}
.info-box:nth-child(2):hover {
  border-left-color: #059669;
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
}

.info-box:nth-child(3) {
  border-left: 3px solid #8b5cf6;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
}
.info-box:nth-child(3):hover {
  border-left-color: #7c3aed;
  background: linear-gradient(135deg, #ffffff 0%, #ddd6fe 100%);
}

.info-box:nth-child(4) {
  border-left: 3px solid #ef4444;
  background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
}
.info-box:nth-child(4):hover {
  border-left-color: #dc2626;
  background: linear-gradient(135deg, #ffffff 0%, #fecaca 100%);
}

/* Services Section */
#services {
  background: #f8fafc;
  padding: 3rem 0 2rem 0;
  position: relative;
}
.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.service-group {
  flex: 1 1 350px;
}
.service-group h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.service-group ul {
  list-style: none;
  padding: 0;
}
.service-group li {
  margin-bottom: 1.5rem;
  background: #f4f8fb;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(43,88,118,0.05);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-img {
  border-radius: 8px;
  border: 2px dashed #6ec1e4;
  margin-bottom: 0.5rem;
  background: #e3f0fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8bb7;
  font-size: 1rem;
}

/* Testimonials Section */
#testimonials {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem 0 2rem 0;
}
.testimonials-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 1.5rem 1.2rem;
  max-width: 350px;
  text-align: center;
  flex: 1 1 250px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.testimonial-img {
  margin: 0 auto 1rem auto;
  border: 2px dashed #60a5fa;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8bb7;
  font-size: 0.9rem;
  border-radius: 50%;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.testimonial-name {
  font-weight: bold;
  margin-top: 0.7rem;
  color: #1e293b;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}

/* Footer */
#site-footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding: 2rem 0 1rem 0;
  position: relative;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-contact .phone {
  color: #60a5fa;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}
.footer-contact .phone:hover {
  color: #3b82f6;
  transform: scale(1.05);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}
.footer-nav a:hover {
  color: #60a5fa;
  transform: translateY(-1px);
}
.footer-disclaimer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  opacity: 0.8;
  letter-spacing: -0.1px;
}

/* Plumbing Services Boxes */
.plumbing-services-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.service-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 1rem;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #3b82f6;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.service-box:hover::before {
  transform: scaleX(1);
}
.service-box:hover, .service-box:focus {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59,130,246,0.08);
  transform: translateY(-2px);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.3rem;
  letter-spacing: -0.2px;
}
.service-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.1px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .header-flex, .hero-flex, .lead-form-flex, .services-flex, .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  nav ul {
    gap: 1.2rem;
  }
  .header-cta {
    gap: 1.2rem;
  }
  .hero-image-placeholder, .lead-image-placeholder {
    width: 100%;
    height: 250px;
  }
  .service-img {
    width: 100%;
    height: 150px;
  }
  .plumbing-services-boxes {
    gap: 0.8rem;
  }
  .service-box {
    max-width: 98vw;
    min-width: 0;
    padding: 1rem 0.8rem;
    flex: 1 1 250px;
  }
  .info-boxes {
    margin: 2rem 1rem 0 1rem;
    padding: 1.5rem 0;
  }
  .info-box {
    min-width: 150px;
    max-width: 200px;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 0 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .cta-btn, .cta-btn.large {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }
  #lead-form h2 {
    font-size: 1.2rem;
  }
  .testimonial {
    padding: 1rem 0.5rem;
  }
  .plumbing-services-boxes {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  .service-box {
    max-width: 98vw;
    min-width: 0;
    padding: 1rem 0.5rem;
    flex: 1 1 auto;
  }
  #lead-form {
    max-width: 98vw;
    padding: 1rem 0.3rem;
  }
  .hero-info-boxes {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .info-boxes {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    margin: 1.5rem 0.5rem 0 0.5rem;
    padding: 1rem 0;
  }
  .info-box {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    margin: 0.2rem 0;
  }
} 

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Responsive adjustments for animations */
@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .hero-content p,
  .hero-info-boxes {
    animation: none;
    opacity: 1;
  }
  .hero-content h1::after {
    animation: none;
    width: 60px;
  }
} 

/* Geolocation highlighting */
#geo-city, #geo-city-2 {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
  position: relative;
  display: inline-block;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

#geo-city:hover, #geo-city-2:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

#geo-city::before, #geo-city-2::before {
  content: '📍';
  margin-right: 0.3rem;
  font-size: 0.9em;
}

/* Special highlighting for New York City */
#geo-city.nyc-highlight, #geo-city-2.nyc-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
  animation: nycPulse 2s ease-in-out infinite;
}

#geo-city.nyc-highlight:hover, #geo-city-2.nyc-highlight:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 4px 12px rgba(245,158,11,0.5);
}

@keyframes nycPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
} 