* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
  border: none;
  outline: none;
  box-shadow: none;
}

body {
  line-height: 1.6;
  color: #2c3e50;
  background: #ffffff;
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 0.5s ease-out 1.5s forwards;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out infinite;
}

.loader-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.loader-text {
  font-size: 24px;
  font-weight: 700;
  color: #4a7c59;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(74, 124, 89, 0.6), 0 0 40px rgba(74, 124, 89, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn {
  display: inline-block;
  background: #4a7c59;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.4s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: #3d6b4a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.5);
}

.btn:active {
  transform: translateY(-2px) scale(1.05);
  transition: all 0.1s;
}

.btn-primary {
  background: #4a7c59;
}

.btn-primary:hover {
  background: #3d6b4a;
}

.btn-outline {
  background: transparent;
  border: 2px solid #4a7c59;
  color: #4a7c59;
  box-shadow: none;
}

.btn-outline::before {
  background: rgba(74, 124, 89, 0.1);
}

.btn-outline:hover {
  background: #4a7c59;
  color: #fff;
  border-color: #4a7c59;
  box-shadow: 0 15px 45px rgba(74, 124, 89, 0.6), 0 0 30px rgba(74, 124, 89, 0.4);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
  flex-wrap: wrap;
  gap: 15px;
}

.header > * {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #4a7c59;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header.scrolled {
  padding: 12px 50px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.95);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.logo-icon {
  font-size: 32px;
  color: #4a7c59;
  filter: drop-shadow(0 2px 4px rgba(74, 124, 89, 0.2));
  display: inline-flex;
  align-items: center;
}

.logo-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  letter-spacing: -0.5px;
}

.header .nav {
  display: flex;
  gap: 35px;
  align-items: center;
  transition: all 0.3s ease;
}

.header .nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header .nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta-mobile {
  display: none;
}

.header .nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a7c59, #5a9c6f);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.header .nav a:hover {
  color: #3d6b4a;
  transform: translateY(-2px);
}

.header .nav a:hover::before {
  width: 100%;
}

.btn-header {
  padding: 10px 25px;
  font-size: 14px;
}

.hero {
  padding: 120px 50px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f0f9f4 30%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: #4a7c59;
  display: inline-block;
  position: relative;
  font-weight: 800;
}

.hero h1 {
  color: #2c3e50;
}

.hero p {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


.btn-outline {
  background: #ffffff;
  border: 2px solid #4a7c59;
  color: #4a7c59;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-outline:hover {
  background: #4a7c59;
  color: #fff;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
  transform: translateY(-3px);
  border-color: #4a7c59;
}

.hero-image {
  position: relative;
  z-index: 2;
  padding: 25px;
  background: linear-gradient(135deg, rgba(232, 245, 233, 0.9) 0%, rgba(240, 249, 244, 0.7) 50%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 25px;
  box-shadow: inset 0 0 60px rgba(74, 124, 89, 0.15), 0 10px 40px rgba(0,0,0,0.1);
}

.hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
  opacity: 0;
  filter: brightness(1.05) contrast(1.05);
  animation: heroImageReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: brightness(0.8) contrast(0.8) blur(15px);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
    filter: brightness(1) contrast(1) blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.05) contrast(1.05) blur(0px);
  }
}

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(74, 124, 89, 0.25);
  filter: brightness(1.1) contrast(1.1);
}

.section {
  padding: 100px 50px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.services {
  background: linear-gradient(180deg, #e8f3ec 0%, #d9ead8 100%);
  max-width: 100%;
  width: 100%;
  padding: 100px 0;
}

.services .section {
  max-width: 100%;
  padding: 0;
}

.services h2,
.services .section-desc,
.services .stats-bar,
.services .cards {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 0 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #4a7c59;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #5a6c7d;
  font-weight: 500;
}

.realizations {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.section h2 {
  font-size: clamp(36px, 5vw, 48px);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4a7c59, #5a9c6f);
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  margin-bottom: 60px;
  color: #5a6c7d;
  font-size: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 20px 0;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  border: 1px solid rgba(74, 124, 89, 0.05);
}

.realizations .card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.15), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.card:hover::before {
  left: 100%;
}


.card.visible {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 124, 89, 0.25);
  border-color: rgba(74, 124, 89, 0.3);
}

.card:hover h3 {
  color: #4a7c59;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95) contrast(1.05);
  position: relative;
  display: block;
  max-width: 100%;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.card-body {
  padding: 0;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #2c3e50;
  font-weight: 700;
}

.card p {
  color: #5a6c7d;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.card ul {
  list-style: none;
  padding: 0;
  color: #555;
}

.card ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #5a6c7d;
  font-size: 15px;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4a7c59;
  font-weight: bold;
  font-size: 22px;
  transition: all 0.3s ease;
}

.card ul li:hover {
  color: #4a7c59;
  transform: translateX(10px);
  font-weight: 600;
  padding-left: 35px;
}

.card ul li:hover::before {
  transform: scale(1.2);
  color: #3d6b4a;
}

.icon {
  width: 75px;
  height: 75px;
  min-width: 75px;
  min-height: 75px;
  background: #e8f3ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 18px rgba(74, 124, 89, 0.2);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid rgba(74, 124, 89, 0.15);
  position: relative;
  overflow: visible;
}

.icon img {
  width: 65px !important;
  height: 65px !important;
  min-width: 65px;
  min-height: 65px;
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(74, 124, 89, 0.3);
  opacity: 0;
  transition: all 0.5s;
}

.card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
  background: #d9ead8;
  border-color: rgba(74, 124, 89, 0.4);
}

.why-choose {
  background: linear-gradient(180deg, #f0f7f3 0%, #e8f3ec 100%);
  padding: 100px 50px;
}

.why-choose-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-text h2 {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 25px;
  text-align: left;
  color: #2c3e50;
  font-weight: 700;
}

.why-choose-text p {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 35px;
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 19px;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  padding: 10px;
  border-radius: 10px;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #4a7c59;
  background: rgba(74, 124, 89, 0.05);
}

.benefits-list li:hover .check-icon {
  transform: scale(1.1);
}

.check-icon {
  width: 35px;
  height: 35px;
  background: #4a7c59;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95);
}

.why-choose-image {
  position: relative;
}

.why-choose-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(74, 124, 89, 0.25);
}

.badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  background: #4a7c59;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.testimonials-section {
  padding: 100px 50px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-content h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 50px;
  color: #2c3e50;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(74, 124, 89, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #4a7c59;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  font-size: 20px;
  color: #ffc107;
  letter-spacing: 2px;
  line-height: 1;
}

.location-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.1em;
}

.footer-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1em;
}

.contact-icon {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
  margin-top: auto;
}

.cta-section {
  background: linear-gradient(135deg, #e8f3ec 0%, #d9ead8 100%);
  padding: 120px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(40px, 6vw, 56px);
  margin-bottom: 25px;
  color: #2c3e50;
  font-weight: 800;
}

.cta-section p {
  font-size: 22px;
  color: #5a6c7d;
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 500;
}

.location-section {
  background: linear-gradient(180deg, #e8f3ec 0%, #d9ead8 100%);
  max-width: 100%;
  width: 100%;
  padding: 100px 0;
}

.location-section .section {
  max-width: 100%;
  padding: 0;
}

.location-section h2,
.location-section .section-desc {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.location-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.location-card h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.location-card p {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-details {
  margin-top: 25px;
}

.location-details p {
  margin-bottom: 10px;
}

.location-details ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.location-details ul li {
  padding: 8px 0;
  color: #4a7c59;
  font-size: 15px;
}

.location-map {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
}

.contact {
  padding: 100px 50px;
  background: linear-gradient(180deg, #e8f3ec 0%, #d9ead8 100%);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: clamp(36px, 5vw, 48px);
  color: #2c3e50;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 20px;
  color: #5a6c7d;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #4a7c59;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: white;
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  display: block;
  color: #2c3e50;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: #5a6c7d;
  font-size: 15px;
  margin: 4px 0;
  line-height: 1.6;
}

.contact-details p a {
  color: #4a7c59;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.contact-details p a:hover {
  color: #3d6b4a;
  transform: translateX(3px);
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: left;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-select {
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #e0e7ed;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  color: #2c3e50;
}

.form-select:focus {
  outline: none;
  border-color: #4a7c59;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.12);
}

.contact-form input,
.contact-form textarea {
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #e0e7ed;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: inherit;
  color: #2c3e50;
  width: 100%;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(74, 124, 89, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4a7c59;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.12);
  transform: translateY(-2px);
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: #4a7c59;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  align-self: center;
  width: 100%;
  max-width: 300px;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

.form-message {
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

.footer {
  background: linear-gradient(135deg, #3d6b4a 0%, #4a7c59 50%, #5a9c6f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  animation: glow 4s ease-in-out infinite;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.footer-logo .logo-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-logo h3 {
  margin: 0;
  font-size: 24px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding: 30px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1400px) {
  .header {
    padding: 18px 30px;
  }
  
  .header .nav {
    gap: 25px;
  }
  
  .header .nav a {
    font-size: 14px;
  }
  
  .btn-header {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stats-bar {
    gap: 40px;
    padding: 40px 30px;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .section {
    padding: 80px 40px;
  }
  
  .hero {
    padding: 100px 40px 80px;
  }
  
  .hero-content {
    gap: 50px;
  }
}

@media (max-width: 968px) {
  .header {
    padding: 15px 25px;
  }
  
  .menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
    align-self: center;
  }
  
  .logo-container {
    order: 1;
    flex: 1;
    align-items: center;
  }
  
  .header .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .header .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .header .nav a {
    font-size: 16px;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    width: 100%;
  }
  
  .header .nav a:last-child {
    border-bottom: none;
  }
  
  .nav-cta-mobile {
    display: block !important;
    background: #4a7c59;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    border-bottom: none !important;
    text-transform: none;
  }
  
  .nav-cta-mobile:hover {
    background: #3d6b4a;
    transform: none;
    color: #fff !important;
  }
  
  .nav-cta-mobile::before {
    display: none;
  }
  
  .btn-header {
    display: none;
  }
  
  .logo-container {
    order: 1;
    flex: 1;
  }
  
  .menu-toggle {
    order: 2;
    margin-left: auto;
    align-self: center;
  }
  
  
  .hero-content,
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .why-choose-image {
    order: -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 70px 30px;
  }

  .hero {
    padding: 90px 30px 70px;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo-container {
    gap: 10px;
  }
  
  .logo-icon img {
    width: 40px;
    height: 40px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .header .nav {
    top: 65px;
    padding: 25px 20px;
  }
  
  .btn-header {
    padding: 8px 18px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 32px;
  }

  .section-desc {
    font-size: 16px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    margin: 40px 0;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .why-choose {
    padding: 60px 20px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-image {
    order: -1;
  }

  .why-choose-text h2 {
    font-size: 32px;
    text-align: center;
  }

  .why-choose-text p {
    text-align: center;
  }

  .benefits-list {
    text-align: left;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section p {
    font-size: 18px;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-header p {
    font-size: 18px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .contact-item {
    gap: 15px;
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea,
  .form-select {
    padding: 14px 18px;
    font-size: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 30px;
  }

  .footer-bottom {
    padding: 20px;
    font-size: 14px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo-icon {
    font-size: 24px;
  }

  .logo-icon img {
    width: 40px;
    height: 40px;
  }

  .logo {
    font-size: 20px;
    color: #2c3e50;
  }

  .header .nav a {
    font-size: 13px;
    color: #2c3e50;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-img {
    border-radius: 20px;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 20px;
  }

  .badge-overlay {
    top: 10px;
    right: 10px;
  }

  .badge {
    padding: 6px 12px;
    font-size: 12px;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .testimonial-avatar img {
    border-width: 3px;
  }

  .contact-header h2 {
    margin-bottom: 10px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .location-map iframe {
    height: 300px;
  }

  .location-section h2,
  .location-section .section-desc {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-details strong {
    font-size: 15px;
  }

  .contact-details p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }
  
  .logo-container {
    gap: 8px;
    flex: 1;
    align-items: center;
  }
  
  .logo-icon img {
    width: 35px;
    height: 35px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .menu-toggle {
    padding: 6px;
    margin-left: auto;
    display: flex;
  }
  
  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
  
  .header .nav {
    top: 60px;
    padding: 20px 15px;
  }
  
  .header .nav a {
    font-size: 15px;
    padding: 10px 0;
  }

  .btn-header {
    padding: 8px 15px;
    font-size: 11px;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 50px 15px;
  }

  .section h2 {
    font-size: 28px;
  }

  .stats-bar {
    padding: 25px 15px;
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .card {
    padding: 20px;
  }

  .contact {
    padding: 50px 15px;
  }
  
  .contact-header h2 {
    font-size: 26px;
  }
  
  .contact-header p {
    font-size: 15px;
  }

  .contact-info-card,
  .contact-form {
    padding: 25px 15px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .form-select {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .contact-form button {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
  }
  
  .form-row {
    gap: 12px;
  }

  .testimonials-section {
    padding: 50px 15px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
}
