* {
  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;
}
.hero,
.step-number {
  align-items: center;
}
.breadcrumb a,
.cta-primary,
.phone-link {
  text-decoration: none;
}
.card,
.phone-cta {
  border-radius: 20px;
}
.form-group,
.hero h1,
.info-card h3,
.premium-badge h2 {
  margin-bottom: 20px;
}
.premium-stat,
.section h2 {
  opacity: 0;
}
.container,
.cta-primary,
.hero,
.nasa-section,
.premium-badge {
  position: relative;
}
.card,
.final-cta,
.form-section,
.hero,
.nasa-section h2,
.premium-badge,
.premium-stat,
.process-step,
.section h2,
.stat-card {
  text-align: center;
}

.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: #0891b2;
  font-weight: 600;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #06b6d4;
  text-decoration: underline;
}
.hero {
  background: linear-gradient(
      135deg,
      rgba(6, 182, 212, 0.95),
      rgba(14, 165, 233, 0.9)
    ),
    url("../../images/house11.webp") center/cover;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
}
.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);
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
  animation: 0.8s ease-out fadeInUp;
}
.nasa-section h2,
.premium-badge h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #fff;
}
.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: 700px;
  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;
  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 slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.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;
  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,
.premium-stat,
.problem-card {
  animation: 0.6s ease-out forwards slideInUp;
}
.nasa-section,
.premium-badge,
.section {
  padding: 60px 0;
}
.premium-stat-number,
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}
.cta-primary::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s;
}
.nasa-section::before,
.premium-badge::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
  top: 0;
}
.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);
}
.premium-badge {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
  overflow: hidden;
}
.premium-stats,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.grid,
.neighborhoods-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card:first-child,
.neighborhood-card:first-child,
.premium-stat:first-child,
.problem-card:first-child,
.process-step:first-child,
.stat-card:first-child {
  animation-delay: 0.1s;
}
.card:nth-child(2),
.neighborhood-card:nth-child(2),
.premium-stat:nth-child(2),
.problem-card:nth-child(2),
.process-step:nth-child(2),
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3),
.neighborhood-card:nth-child(3),
.premium-stat:nth-child(3),
.problem-card:nth-child(3),
.process-step:nth-child(3),
.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.card:nth-child(4),
.neighborhood-card:nth-child(4),
.premium-stat:nth-child(4),
.problem-card:nth-child(4),
.process-step:nth-child(4),
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}
.premium-stat-number {
  display: block;
  margin-bottom: 10px;
}
.nasa-section {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  overflow: hidden;
}
.card,
.problem-card {
  background: #fff;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(30px);
}
.nasa-section::before {
  background: url("../../images/NASAhero.webp") center/cover;
}
.neighborhood-card::before,
.process-step::before {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  transition: left 0.6s;
}
.nasa-section h2 {
  margin-bottom: 30px;
}
.nasa-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.nasa-section ul {
  line-height: 1.8;
  font-size: 1.1rem;
}
.local-info li,
.nasa-section li {
  margin-bottom: 8px;
}
.section.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
  margin: 0;
}
.section.bg-blue {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: #0891b2;
  animation: 0.6s ease-out forwards fadeInUp;
}
.card h4,
.section h3 {
  margin-bottom: 20px;
  color: #0891b2;
}
.section h3 {
  font-size: 1.8rem;
}
.section.bg-blue h2,
.section.bg-blue h3 {
  color: #fff;
}
.grid {
  display: grid;
  gap: 30px;
  margin: 40px 0;
}
.card {
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.1);
  opacity: 0;
}
.problem-card,
.stat-card {
  border-radius: 20px;
  opacity: 0;
}
.card:hover,
.process-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.card h4 {
  font-size: 1.4rem;
  font-weight: 600;
}
.card p {
  color: #64748b;
  line-height: 1.7;
}
.problem-card {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.neighborhood-card,
.stat-card {
  background: #fff;
  transition: 0.4s;
}
.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.problem-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.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: #0891b2;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.problem-card-content p {
  color: #64748b;
  line-height: 1.6;
}
.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;
}
.neighborhood-card,
.process-step {
  border-radius: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: 0.6s ease-out forwards slideInUp;
  overflow: hidden;
  position: relative;
}
.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.stat-number {
  color: #dc2626;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  color: #0891b2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.neighborhoods-grid {
  display: grid;
  gap: 25px;
  margin: 40px 0;
}
.form-grid,
.local-info .grid {
  grid-template-columns: 1fr 1fr;
}
.neighborhood-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.neighborhood-card::before {
  top: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8, 145, 178, 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%;
  height: 180px;
  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, #f0fdff, #e0f7fa);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.local-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(8, 145, 178, 0.1) 0,
    transparent 70%
  );
  animation: 6s ease-in-out infinite float;
}
.local-info .grid {
  display: grid;
  gap: 50px;
  align-items: start;
}
.local-info h3 {
  color: #0891b2;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}
.local-info p,
.local-info ul {
  line-height: 1.8;
  color: #475569;
}
.local-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.local-info ul {
  padding-left: 20px;
}
.local-info strong {
  color: #0891b2;
  font-weight: 600;
}
.highlight-text {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.process-step {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 40px 30px;
}
.process-step::before {
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
}
.process-step:hover::before {
  left: 0;
}
.step-number {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
  transition: 0.3s;
}
.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(8, 145, 178, 0.4);
}
.process-step h4 {
  color: #0891b2;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}
.process-step p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
}
.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: 25px;
  color: #333;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: left;
  color: #374151;
}
.footer,
.form-footer,
.info-card,
.section-description {
  text-align: center;
}
.form-input {
  width: 100%;
  padding: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
}
.form-input:focus {
  outline: 0;
  border-color: #0891b2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}
.form-grid {
  display: grid;
  gap: 20px;
}
.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.info-card h3 {
  color: #0891b2;
  font-size: 1.5rem;
}
.info-card p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #64748b;
}
.info-card strong {
  color: #0891b2;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 70vh;
  }
  .section {
    padding: 40px 0;
  }
  .grid,
  .neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .local-info .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .premium-stats,
  .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;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .neighborhood-card-image,
  .problem-card-image {
    height: 160px;
  }
  .neighborhood-card-content,
  .problem-card-content {
    padding: 20px;
  }
  .process-step {
    padding: 30px 20px;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .process-step h4 {
    font-size: 1.2rem;
  }
  .process-step p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .premium-stats,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .phone-cta {
    padding: 12px 20px;
    margin: 20px 0 15px;
  }
  .neighborhood-card-image,
  .problem-card-image {
    height: 140px;
  }
}
.card: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;
}
.neighborhood-card:nth-child(7) {
  animation-delay: 0.7s;
}
.neighborhood-card:nth-child(8) {
  animation-delay: 0.8s;
}
.premium-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.nasa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #64748b;
  line-height: 1.8;
}
.communities-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #64748b;
}
.phone-highlight {
  color: #dc2626;
  font-size: 1.2rem;
}
.phone-link {
  color: #dc2626;
}
.market-features {
  margin: 20px 0;
}
.selling-reasons {
  font-size: 1.1rem;
}
.form-title {
  color: #fff;
  margin-bottom: 20px;
}
.form-subtitle {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.2rem;
}
.form-button {
  width: 100%;
  margin: 20px 0;
}
.form-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.footer-phone {
  color: #dc2626;
  font-weight: 700;
}
.final-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #64748b;
}
.navigation-links {
  margin-top: 30px;
}
.nav-link-2 {
  color: #0891b2 !important;
  font-weight: 600;
}
.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.footer-subtitle {
  margin-bottom: 15px;
  color: #94a3b8;
}
.footer-contact {
  margin-top: 15px;
  color: #94a3b8;
}
.footer-copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
}
.footer {
  background: #1e293b;
  color: #fff;
  padding: 60px 0 40px;
}
