* {
  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 .subtitle,
.premium-stat-number {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.final-cta-section,
.hero,
.premium-badge,
.premium-stat,
.section h2,
.stat-card {
  text-align: center;
}
.card,
.container,
.cta-primary,
.hero,
.local-info,
.local-info h4,
.neighborhood-card,
.premium-badge,
.premium-stats,
.problem-card-image {
  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: #0891b2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #06b6d4;
  text-decoration: underline;
}
.hero {
  background: linear-gradient(
      135deg,
      rgba(3, 77, 95, 0.95),
      rgba(8, 79, 92, 0.9)
    ),
    url("../../images/house13.webp") center/cover;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.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;
}
.premium-badge h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}
.hero .subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 15px;
  font-weight: 300;
  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 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;
  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,
.premium-stat,
.problem-card {
  animation: 0.6s ease-out forwards slideInUp;
}
.premium-badge,
.section {
  padding: 60px 0;
}
.cta-primary::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s;
}
.card::before,
.local-info h4::before,
.local-info::before,
.neighborhood-card::before,
.premium-badge::before {
  content: "";
  position: absolute;
}
.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;
}
.card,
.problem-card {
  background: #fff;
  border-radius: 20px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(30px);
  overflow: hidden;
}
.premium-badge::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}
.premium-badge h2 {
  color: #fff;
  margin-bottom: 20px;
}
.premium-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  z-index: 1;
}
.premium-stat {
  opacity: 0;
}
.card:first-child,
.neighborhood-card:first-child,
.premium-stat:first-child,
.problem-card: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),
.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),
.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),
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}
.premium-stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.grid,
.stats-grid {
  display: grid;
  gap: 30px;
  margin: 40px 0;
}
.premium-stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}
.section.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
}
.section h2 {
  margin-bottom: 30px;
  color: #0891b2;
  opacity: 0;
  animation: 0.6s ease-out forwards fadeInUp;
}
.card h3,
.card h4,
.section h3 {
  color: #0891b2;
  margin-bottom: 20px;
}
.section h3 {
  font-size: 1.8rem;
}
.grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
}
.card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.card:hover::before {
  transform: scaleX(1);
}
.card h3,
.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);
  opacity: 0;
}
.neighborhood-card,
.stat-card {
  background: #fff;
  border-radius: 20px;
  transition: 0.4s;
  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;
  overflow: hidden;
}
.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 h3 {
  color: #0891b2;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.problem-card-content p {
  color: #64748b;
  line-height: 1.6;
}
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.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: #0891b2;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  color: #475569;
  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;
  overflow: hidden;
  border: 2px solid transparent;
}
.neighborhood-card::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(8, 145, 178, 0.1),
    transparent
  );
  transition: left 0.6s;
}
.neighborhood-card:hover::before {
  left: 100%;
}
.neighborhood-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #0891b2;
}
.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;
  overflow: hidden;
}
.comparison-table thead,
.highlight-text,
.local-info h4::before {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}
.local-info::before {
  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;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.local-info h3 {
  color: #0891b2;
  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 {
  line-height: 1.8;
  color: #475569;
}
.local-info h4::before {
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  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;
}
.final-cta-nav-link,
.local-info strong {
  color: #0891b2;
  font-weight: 600;
}
.highlight-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.comparison-table thead {
  color: #fff;
}
.comparison-table td,
.comparison-table th {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.comparison-table .check {
  color: #10b981;
  font-weight: 700;
  font-size: 1.2rem;
}
.comparison-table .x {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.2rem;
}
.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-button,
.form-input {
  width: 100%;
  padding: 18px;
  transition: 0.3s;
}
.form-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  margin: 12px 0;
}
.form-input:focus {
  outline: 0;
  border-color: #0891b2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}
.form-button {
  margin-top: 20px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: none;
  cursor: pointer;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.form-button:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
@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;
  }
  .neighborhood-card-image,
  .problem-card-image {
    height: 160px;
  }
  .neighborhood-card-content,
  .problem-card-content {
    padding: 20px;
  }
  .comparison-table {
    font-size: 14px;
  }
  .comparison-table td,
  .comparison-table th {
    padding: 15px 10px;
  }
}
@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;
}
.premium-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.section-intro-large {
  font-size: 1.2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #64748b;
  line-height: 1.8;
}
.section-intro-medium {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #64748b;
}
.testimonial-card {
  text-align: center;
  padding: 40px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #64748b;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.testimonial-author {
  color: #0891b2;
}
.form-section-blue {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
}
.form-section-title {
  color: #fff !important;
  margin-bottom: 40px;
}
.final-cta-title {
  margin-bottom: 20px;
}
.final-cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #64748b;
}
.final-cta-navigation {
  margin-top: 30px;
}
.sugar-land-footer {
  background: #1e293b;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}
.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.footer-subtitle {
  margin-bottom: 15px;
  color: #94a3b8;
}
.footer-info {
  margin-top: 15px;
  color: #94a3b8;
}
.footer-copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
}
.list-large {
  font-size: 1.1rem;
}
.contact-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.contact-link {
  color: #dc2626;
  font-weight: 700;
}
