:root {
  --primary-green: #059669;
  --secondary-green: #10b981;
  --dark-green: #065f46;
  --light-green: #34d399;
  --accent-red: #dc2626;
  --accent-red-hover: #ef4444;
  --dark-red: #b91c1c;
  --accent-yellow: #fbbf24;
  --text-dark: #1f2937;
  --text-medium: #374151;
  --text-light: #64748b;
  --text-slate: #475569;
  --background-light: #f8fafc;
  --background-gradient: #e2e8f0;
  --green-bg-light: #ecfdf5;
  --green-bg-medium: #d1fae5;
  --text-medium: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.12);
  --shadow-xxl: 0 20px 45px rgba(0, 0, 0, 0.15);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --border-radius-2xl: 25px;
  --border-radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
* {
  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,
.nature-badge,
.nature-stat {
  text-align: center;
}
.hero .subtitle,
.nature-stat-number {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.card,
.hero,
.nature-badge {
  overflow: hidden;
  position: relative;
}
.card,
.container,
.cta-primary,
.hero,
.local-info,
.nature-badge,
.nature-stats,
.neighborhood-card,
.problem-card-image {
  position: relative;
}
.breadcrumb a,
.cta-primary,
.form-phone-link,
.phone-link {
  text-decoration: none;
}
.breadcrumb a:hover,
.form-phone-link:hover {
  text-decoration: underline;
}

.card,
.phone-cta {
  border-radius: 20px;
}

.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: #059669;
  font-weight: 600;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #10b981;
}
.hero {
  background: linear-gradient(
      135deg,
      rgba(13, 126, 55, 0.95),
      rgba(7, 80, 34, 0.9)
    ),
    url("../../images/house14.webp") center/cover;
  color: #fff;
  padding: 80px 0;
  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 slideInUp;
}
.nature-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 slideInUp;
}
.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 slideInUp;
}
.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 slideInUp;
  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 slideInUp {
  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 slideInUpCards {
  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);
  }
  50% {
    transform: translateY(-20px);
  }
}
.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 slideInUp;
}
.nature-badge,
.section {
  padding: 60px 0;
}
.card,
.nature-stat {
  animation: 0.6s ease-out forwards slideInUpCards;
}
.cta-primary::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s;
}
.card::before,
.local-info::before,
.nature-badge::before,
.neighborhood-card::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);
}
.nature-badge {
  background: linear-gradient(135deg, #065f46, #059669);
  color: #fff;
}
.nature-badge::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}
.nature-badge h2 {
  color: #fff;
  margin-bottom: 20px;
}
.nature-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  z-index: 1;
}
.nature-stat {
  opacity: 0;
}
.card:first-child,
.nature-stat:first-child,
.neighborhood-card:first-child,
.problem-card:first-child,
.stat-card:first-child {
  animation-delay: 0.1s;
}
.card:nth-child(2),
.nature-stat:nth-child(2),
.neighborhood-card:nth-child(2),
.problem-card:nth-child(2),
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3),
.nature-stat: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),
.nature-stat:nth-child(4),
.neighborhood-card:nth-child(4),
.problem-card:nth-child(4),
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}
.nature-stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.nature-stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}
.card,
.section h2 {
  opacity: 0;
  text-align: center;
}
.nature-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.section.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
}
.section.bg-green {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
}
.section h2 {
  margin-bottom: 30px;
  color: #059669;
  animation: 0.6s ease-out forwards slideInUp;
}
.card h4,
.section h3 {
  margin-bottom: 20px;
  color: #059669;
}
.section h3 {
  font-size: 1.8rem;
}
.section.bg-green h2,
.section.bg-green h3 {
  color: #fff;
}
.intro-description {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #64748b;
  line-height: 1.8;
}
.villages-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #64748b;
}
.grid,
.stats-grid {
  display: grid;
  gap: 30px;
  margin: 40px 0;
}
.grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.card {
  background: #fff;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(30px);
}
.neighborhood-card,
.stat-card {
  border-radius: 20px;
  transition: 0.4s;
}
.card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #059669, #10b981);
  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 h4 {
  font-size: 1.4rem;
  font-weight: 600;
}
.card p {
  color: #64748b;
  line-height: 1.7;
}
.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;
}
.stat-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: scale(0.9);
  animation: 0.6s ease-out forwards scaleIn;
  opacity: 0;
}
.neighborhood-card,
.problem-card {
  background: #fff;
  opacity: 0;
  transform: translateY(30px);
  animation: 0.6s ease-out forwards slideInUpCards;
  overflow: hidden;
}
.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: #059669;
  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;
}
.form-grid,
.local-info .grid {
  grid-template-columns: 1fr 1fr;
}
.neighborhood-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}
.neighborhood-card::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(5, 150, 105, 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: #059669;
}
.neighborhood-card:nth-child(7) {
  animation-delay: 0.7s;
}
.neighborhood-card:nth-child(8) {
  animation-delay: 0.8s;
}
.neighborhood-card-image {
  width: 100%;
  height: 180px;
  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;
}
.neighborhood-card-content h4 {
  color: #059669;
  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;
}
.problem-card {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.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;
}
.problem-card-content h4 {
  color: #059669;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
.problem-card-content p {
  color: #64748b;
  line-height: 1.6;
}
.local-info {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  padding: 60px 0;
  overflow: hidden;
}
.local-info::before {
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 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: #059669;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}
.local-info p,
.local-info ul {
  color: #475569;
  line-height: 1.8;
}
.market-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.market-features {
  padding-left: 20px;
  margin: 20px 0;
}
.market-features li,
.selling-reasons li {
  margin-bottom: 8px;
}
.selling-reasons {
  font-size: 1.1rem;
  padding-left: 20px;
}
.local-info strong {
  color: #059669;
  font-weight: 600;
}
.highlight-text {
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.highlight-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.highlight-box h3 {
  color: #059669;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.employment-info,
.highlight-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #64748b;
}
.highlight-box strong,
.testimonial-author {
  color: #059669;
}
.phone-highlight {
  color: #dc2626;
  font-size: 1.2rem;
}
.phone-link {
  color: #dc2626;
}
.testimonial-card {
  text-align: center;
  padding: 40px;
}
.testimonial-quote {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #64748b;
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.final-cta-section,
.form-section {
  text-align: center;
}
.form-title {
  color: #fff;
  margin-bottom: 20px;
}
.form-subtitle {
  color: #fff;
  margin-bottom: 40px;
  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;
}
.final-cta-title,
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: left;
  color: #374151;
}
.form-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
}
.form-input:focus {
  outline: 0;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.form-grid {
  display: grid;
  gap: 20px;
}
.form-button {
  margin: 20px 0;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  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);
}
.form-contact-info {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.form-phone-link {
  color: #dc2626;
  font-weight: 700;
}
.final-cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #64748b;
}
.final-navigation {
  margin-top: 30px;
}
.nav-link-f {
  color: #059669 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.nav-link-f:hover {
  text-decoration: underline !important;
}
.footer {
  background: #1e293b;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}
.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.footer-tagline {
  margin-bottom: 15px;
  color: #94a3b8;
}
.footer-details {
  margin-top: 15px;
  color: #94a3b8;
}
.footer-copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
}
@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;
  }
  .nature-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;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .nature-stats,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .phone-cta {
    padding: 12px 20px;
    margin: 20px 0 15px;
  }
  .neighborhood-card-image,
  .problem-card-image {
    height: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .local-info::before,
  .neighborhood-card::before {
    display: none;
  }
}
@media print {
  .hero,
  .nature-badge,
  .section.bg-green {
    background: var(--primary-green) !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .card,
  .neighborhood-card,
  .problem-card,
  .stat-card {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
