.hero-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #0056b3;
}

.flowchart-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.flowchart-container::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #007bff;
}

.flow-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 15px;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #333;
}

.step-content p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .flowchart-container::before {
    left: 25px;
  }

  .step-number {
    left: 5px;
  }

  .flow-step {
    padding-left: 70px;
  }
}

.local-market-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.local-market-section h2 {
  text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.local-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.local-market-point {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.local-market-point .icon {
  font-size: 28px;
  flex-shrink: 0;
}

.local-market-point p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.local-cities-box {
  background-color: #EFEFEF;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
}

.local-cities-box .call-text {
  font-weight: bold;
  margin-top: 8px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .local-market-grid {
    grid-template-columns: 1fr;
  }

  .local-market-section h2 {
    font-size: 24px;
  }
}


.portfolio-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-item h3 {
  margin: 15px 10px 10px;
  font-size: 18px;
  color: #333;
}

.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #0056b3;
}
.pricing-section {
  background: #f8f9fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section h2 {
  text-align: center;
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

.sub-heading {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.highlight-box {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
  margin-bottom: 10px;
  color: #007bff;
  font-size: 18px;
}

.price-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  justify-content: center;
}

.price-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  flex: 1 1 300px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.price-card.featured {
  border: 2px solid #007bff;
}

.price-card h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.price-card ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #eee;
}

.cta-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #0056b3;
}

.cta-box {
  background-color: #e0f0ff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
}

.cta-box h3 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .price-table {
    flex-direction: column;
    align-items: center;
  }
}
.quote-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.quote-form form input,
.quote-form form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.quote-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.quote-form button:hover {
  background: #0056b3;
}