/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.site-header {
  background: #2c3e50;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.logo span {
  font-size: 1rem;
  font-weight: normal;
  color: #e74c3c;
}

.header-phone {
  background: #e74c3c;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.header-phone:hover {
  background: #c0392b;
}

/* Navigation */
.site-nav {
  background: #34495e;
  padding: 0.5rem 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
  color: #e74c3c;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: #e74c3c;
  color: white;
}

.btn-primary:hover {
  background: #c0392b;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
}

.btn-emergency {
  background: #f39c12;
  color: white;
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.btn-emergency:hover {
  background: #d68910;
}

/* Page Header */
.page-header {
  background: #ecf0f1;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */
.services-overview {
  padding: 4rem 0;
  background: white;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
  border: 1px solid #e5e8eb;
  border-left: 4px solid #3498db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:nth-child(1) { border-left-color: #e74c3c; }
.service-card:nth-child(2) { border-left-color: #3498db; }
.service-card:nth-child(3) { border-left-color: #2ecc71; }
.service-card:nth-child(4) { border-left-color: #f39c12; }

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 2px 0 0 0 rgba(231, 76, 60, 0.3);
}

.service-card:nth-child(1):hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 2px 0 0 0 rgba(231, 76, 60, 0.3);
}

.service-card:nth-child(2):hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 2px 0 0 0 rgba(52, 152, 219, 0.3);
}

.service-card:nth-child(3):hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 2px 0 0 0 rgba(46, 204, 113, 0.3);
}

.service-card:nth-child(4):hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 2px 0 0 0 rgba(243, 156, 18, 0.3);
}

.service-card h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card:nth-child(1) .read-more { color: #e74c3c; }
.service-card:nth-child(2) .read-more { color: #3498db; }
.service-card:nth-child(3) .read-more { color: #2ecc71; }
.service-card:nth-child(4) .read-more { color: #f39c12; }

.service-card .read-more:hover {
  opacity: 0.8;
  text-decoration: underline;
}



/* Benefits Grid */
.why-choose-us {
  padding: 4rem 0;
  background: #ecf0f1;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.benefit {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.benefit h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
}

/* Emergency Services */
.emergency-services {
  background: #e74c3c;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.emergency-services h2 {
  margin-bottom: 1rem;
}

.emergency-services p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

.form-note {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 1rem;
}

.contact-method {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 1.5rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  position: relative;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #3498db);
  border-radius: 14px 14px 0 0;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.contact-method h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-method ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.contact-method li {
  padding: 0.3rem 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.contact-method li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-overview {
  padding: 4rem 0;
  background: white;
}

.process-overview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  background: #e74c3c;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Service Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 350px));
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.area-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #3498db);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

.area-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.area-card p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

.area-card .area-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.area-card .area-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

.areas-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.areas-grid-bottom .area-card {
  width: 350px;
  min-width: 280px;
}

/* Service Details */
.service-details {
  padding: 4rem 0;
}

.service-content {
  max-width: 800px;
}

.service-content h2,
.service-content h3 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-content h2 {
  font-size: 1.8rem;
}

.service-content ul,
.service-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
}

.repair-services {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.repair-service {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  position: relative;
}

.repair-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e74c3c, #c0392b);
  border-radius: 14px 0 0 14px;
}

.repair-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.repair-service h4 {
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

/* Sidebar */
.service-sidebar {
  margin-left: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.contact-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-card p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-card .btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  margin-bottom: 1rem;
  width: 100%;
}

.contact-card .btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.emergency-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #e74c3c;
}

.emergency-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.emergency-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.emergency-card strong {
  color: #e74c3c;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.service-areas-card ul {
  list-style: none;
}

.service-areas-card li {
  padding: 0.25rem 0;
  color: #7f8c8d;
}

/* FAQ */
.faq-preview {
  padding: 4rem 0;
  background: #ecf0f1;
}

.faq-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #2c3e50;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: #2c3e50;
  color: white;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 2rem;
}

.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial footer {
  font-weight: bold;
  color: #e74c3c;
}

/* Footer */
.site-footer {
  background: #34495e;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #e74c3c;
}

.footer-bottom {
  border-top: 1px solid #4a5f7a;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
}

/* Emergency Contact */
.emergency-contact {
  background: #f39c12;
  color: white;
  padding: 3rem 0;
}

.emergency-contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.emergency-contact p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.emergency-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.emergency-phone {
  text-align: center;
}

.emergency-phone h3 {
  margin-bottom: 1rem;
}

.emergency-services h3 {
  margin-bottom: 1rem;
}

.emergency-services ul {
  list-style: none;
}

.emergency-services li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.emergency-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c3e50;
  font-weight: bold;
}

/* Service Areas Page Styles */
.service-areas-overview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #555;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #2c3e50;
  font-weight: 600;
}

.primary-service-areas {
  padding: 4rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.area-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.area-card.featured {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  border: none;
}

.area-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.area-card.featured h3 {
  color: white;
}

.area-description {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

.area-card.featured .area-description {
  color: rgba(255,255,255,0.9);
}

.area-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.area-details li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.area-details li:before {
  content: "✓ ";
  color: #e74c3c;
  font-weight: bold;
  margin-right: 0.5rem;
}

.area-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.area-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

.area-card.featured .area-link {
  color: #fff;
  background: #e74c3c;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.area-card.featured .area-link:hover {
  background: #c0392b;
  text-decoration: none;
}

.regional-coverage {
  padding: 4rem 0;
  background: #ecf0f1;
}

.regional-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.regional-text h4 {
  color: #e74c3c;
  margin: 2rem 0 1rem 0;
}

.regional-text ul {
  padding-left: 0;
  list-style: none;
}

.regional-text li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.regional-text strong {
  color: #2c3e50;
}

.additional-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.area-column h5 {
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e74c3c;
}

.area-column ul {
  list-style: none;
  padding: 0;
}

.area-column li {
  padding: 0.25rem 0;
  color: #666;
}

.service-guarantee {
  padding: 4rem 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guarantee-item {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e2e8f0;
  border-left: 6px solid #e74c3c;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
}

.guarantee-item::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e74c3c;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

.guarantee-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  text-align: center;
}

.contact-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Location Page Styles */
.location-overview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.location-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #555;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #e74c3c;
}

.highlight h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.services-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.services-text h3 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.services-text ul {
  padding-left: 0;
  list-style: none;
}

.services-text li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.services-text strong {
  color: #e74c3c;
}

.approach-grid,
.exterior-grid,
.structural-grid,
.assessment-steps,
.flooring-content,
.basement-grid,
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.approach-item,
.exterior-item,
.structural-item,
.basement-item,
.step {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
}

.approach-item::before,
.exterior-item::before,
.structural-item::before,
.basement-item::before,
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #3498db);
  border-radius: 16px 16px 0 0;
}

.approach-item:hover,
.exterior-item:hover,
.structural-item:hover,
.basement-item:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

.approach-item h3,
.exterior-item h3,
.structural-item h3,
.basement-item h3,
.step h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.nearby-areas {
  padding: 4rem 0;
  background: #ecf0f1;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.nearby-area {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.nearby-area h3 a {
  color: #2c3e50;
  text-decoration: none;
}

.nearby-area h3 a:hover {
  color: #e74c3c;
}

.local-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.benefit-text h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-text ul {
  padding-left: 0;
  list-style: none;
}

.benefit-text li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guarantee-point {
  padding: 1rem;
  background: #f8f9fa;
  border-left: 3px solid #e74c3c;
}

.guarantee-point strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 0.5rem;
}

.moisture-content,
.hillside-content,
.prevention-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.moisture-text h3,
.hillside-text h3,
.prevention-text h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.prevention-strategies h4,
.maintenance-tips h4,
.flooring-benefits h4,
.maintenance-program h4 {
  color: #e74c3c;
  margin-bottom: 1rem;
}

.strategy,
.tip,
.benefit,
.program-point {
  padding: 1rem;
  margin-bottom: 1rem;
  background: white;
  border-left: 3px solid #e74c3c;
  border-radius: 0 5px 5px 0;
}

.strategy strong,
.tip strong,
.benefit strong,
.program-point strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 0.25rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.material-category {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
}

.material-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e74c3c, #c0392b);
  border-radius: 16px 0 0 16px;
}

.material-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

.material-category h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e74c3c;
}

.material-category ul {
  list-style: none;
  padding: 0;
}

.material-category li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #ddd;
}

/* Thank You Page Styles */
.next-steps {
  padding: 5rem 0;
  background: #f8f9fa;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.2rem;
  color: #2c3e50;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.next-steps .step {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #e74c3c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-steps .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.next-steps .step-number {
  background: #e74c3c;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.next-steps .step h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.next-steps .step p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content .contact-info {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  border-left: 4px solid #f39c12;
}

.hero-content .contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-content .contact-info strong {
  color: #f39c12;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-list {
    display: none;
    flex-direction: column;
    background: #34495e;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 20px;
    gap: 0;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list a {
    padding: 1rem 0;
    border-bottom: 1px solid #4a5f7a;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-sidebar {
    margin-left: 0;
  }
  
  .emergency-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .regional-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .additional-areas {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .local-benefits {
    grid-template-columns: 1fr;
  }
  
  .moisture-content,
  .hillside-content,
  .prevention-content {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .areas-grid-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .areas-grid-bottom .area-card {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .btn-emergency {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    text-align: center;
  }
  
  .next-steps {
    padding: 3rem 0;
  }
  
  .next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  
  .steps-grid {
    gap: 2rem;
  }
  
  .next-steps .step {
    padding: 2rem 1.5rem;
  }
  
  .next-steps .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .hero-content .contact-info {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}