* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
.cta-container,
.final-cta,
.footer-content,
.hero,
.intro-text,
.process-step,
.section h2,
.stat-card,
.testimonial-card{
  text-align: center;
}
.faq,
.hero,
.local-info,
.neighborhood-card,
.problem-card,
.problem-card-image,
.process-step {
  overflow: hidden;
}
.container,
.cta-primary,
.faq-question,
.hero,
.local-info,
.local-info h4,
.local-info li,
.neighborhood-card,
.problem-card-image,
.process-step {
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}
.breadcrumb {
  padding: 15px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.breadcrumb a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #3b82f6;
  text-decoration: underline;
}
.hero {
  background: linear-gradient(
      135deg,
      rgba(30, 64, 175, 0.95),
      rgba(59, 130, 246, 0.9)
    ),
    url("../../images/house11.webp") center/cover;
  color: #fff;
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
  animation: 0.8s ease-out fadeInUp;
}
.hero .subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 15px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: 0.8s ease-out 0.2s both fadeInUp;
}
.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: 0.8s ease-out 0.4s both fadeInUp;
}
.phone-cta {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin: 30px 0 20px;
  animation: 2s ease-in-out infinite alternate glow,
    0.8s ease-out 0.6s both fadeInUp;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 30px;
  border-radius: 20px;
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  padding: 20px 40px;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  margin: 8px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  transition: 0.3s;
  border: 3px solid rgba(255, 255, 255, 0.2);
  animation: 0.8s ease-out 0.8s both fadeInUp;
}
.card,
.problem-card,
.process-step {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  background: #fff;
  border-radius: 20px;
  transform: translateY(30px);
  animation: 0.6s ease-out forwards slideInUp;
}
.cta-primary::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s;
}
.neighborhood-card::before,
.process-step::before {
  top: 0;
  left: -100%;
  transition: left 0.6s;
  position: absolute;
  content: "";
}
.cta-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-primary:hover::after {
  transform: translateX(5px);
}
.section {
  padding: 60px 0;
}
.section.bg-gray {
  background: #f8fafc;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: #1e40af;
  opacity: 0;
  animation: 0.6s ease-out forwards fadeInUp;
}
.card:nth-child(2),
.faq:nth-child(2),
.neighborhood-card:nth-child(2),
.problem-card:nth-child(2),
.section.in-view h2,
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.process-step {
  padding: 40px 30px;
}
.process-step::before {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
}
.process-step:hover::before {
  left: 0;
}
.process-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.step-number {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: 0.3s;
}
.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}
.process-step h4 {
  color: #1e40af;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}
.process-step p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
}
.neighborhood-card,
.stat-card {
  background: #fff;
  transition: 0.4s;
  border-radius: 20px;
  opacity: 0;
}
.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.problem-card-image {
  width: 100%;
  height: 200px;
}
.neighborhood-card-image img,
.problem-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s;
}
.neighborhood-card:hover .neighborhood-card-image img,
.problem-card:hover .problem-card-image img {
  transform: scale(1.1);
}
.neighborhood-card-content,
.problem-card-content {
  padding: 25px;
}
.problem-card-content h4 {
  color: #1e40af;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.problem-card-content p {
  color: #64748b;
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.stat-card {
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: scale(0.9);
  animation: 0.6s ease-out forwards scaleIn;
}
.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #dc2626;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  color: #1e40af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.neighborhood-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(30px);
  animation: 0.6s ease-out forwards slideInUp;
}
.neighborhood-card::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
}
.neighborhood-card:hover::before {
  left: 100%;
}
.neighborhood-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.neighborhood-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.neighborhood-card-content h4 {
  color: #0891b2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.neighborhood-card-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}
.neighborhood-card .price {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 15px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  display: inline-block;
}
.local-info {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 60px 0;
}
.local-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0,
    transparent 70%
  );
  animation: 6s ease-in-out infinite float;
}
.faq-question::after,
.local-info h4::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.local-info .highlight-text,
.local-info h4::before {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.local-info .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.local-info h3 {
  color: #1e40af;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}
.local-info h4 {
  color: #0891b2;
  margin: 25px 0 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.local-info p,
.local-info ul {
  color: #475569;
  line-height: 1.8;
}
.local-info h4::before {
  content: "";
  left: -15px;
  width: 4px;
  height: 20px;
  border-radius: 2px;
}
.local-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.local-info ul {
  padding-left: 20px;
}
.local-info li {
  margin-bottom: 8px;
}
.local-info li::marker {
  color: #3b82f6;
}
.local-info strong,
.nav-link-2 {
  color: #1e40af;
  font-weight: 600;
}
.local-info .highlight-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.faq {
  background: #fff;
  margin: 20px 0;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(-30px);
  animation: 0.6s ease-out forwards slideInFromLeft;
}
.faq-question {
  padding: 25px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e40af;
  cursor: pointer;
  transition: 0.3s;
}
.faq-question::after {
  content: "+";
  right: 25px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-question:hover {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  transform: translateX(5px);
}
.faq-answer {
  padding: 25px;
  line-height: 1.8;
  background: #fff;
  color: #64748b;
}
.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  color: #333;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.form-input {
  width: 100%;
  padding: 18px;
  margin: 12px 0;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
}
.form-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: 0;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 70vh;
  }
  .section {
    padding: 40px 0;
  }
  .grid,
  .neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cta-primary {
    display: block;
    width: 90%;
    margin: 10px auto;
    text-align: center;
  }
  .form-container {
    margin: 0 10px;
    padding: 30px 20px;
  }
  .problem-card-image {
    height: 180px;
  }
  .problem-card-content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .phone-cta {
    padding: 12px 20px;
    margin: 20px 0 15px;
  }
  .problem-card-image {
    height: 160px;
  }
}
.card:first-child,
.faq:first-child,
.neighborhood-card:first-child,
.problem-card:first-child,
.stat-card:first-child {
  animation-delay: 0.1s;
}
.card:nth-child(3),
.faq:nth-child(3),
.neighborhood-card:nth-child(3),
.problem-card:nth-child(3),
.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.card:nth-child(4),
.faq:nth-child(4),
.neighborhood-card:nth-child(4),
.problem-card:nth-child(4),
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}
.card:nth-child(5),
.faq:nth-child(5),
.neighborhood-card:nth-child(5),
.problem-card:nth-child(5) {
  animation-delay: 0.5s;
}
.card:nth-child(6),
.neighborhood-card:nth-child(6),
.problem-card:nth-child(6) {
  animation-delay: 0.6s;
}
.intro-text {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #64748b;
  line-height: 1.8;
}
.neighborhoods-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #64748b;
}
.slide-in-left {
  animation: 0.8s ease-out slideInFromLeft;
}
.slide-in-right {
  animation: 0.8s ease-out slideInFromRight;
}
.large-text {
  font-size: 1.1rem;
}
.testimonial-card {
  padding: 30px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 1.1rem;
}
.testimonial-author {
  color: #1e40af;
}
.cta-section {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
}
.cta-title {
  color: #fff !important;
  margin-bottom: 40px;
}
.cta-form-button {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
}
.contact-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.phone-link {
  color: #dc2626;
  font-weight: 700;
}
.final-title {
  margin-bottom: 20px;
}
.final-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #64748b;
}
.navigation-links {
  margin-top: 30px;
}
