.contact-section {
  background: #f8faf7;
  padding: 60px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 40px 30px;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 280px;
}
.contact-info h2 {
  color: #192324;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-info p {
  color: #444;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  margin-bottom: 10px;
  color: #222;
  font-size: 1rem;
}
.contact-info a {
  color: #7c877f;
  text-decoration: none;
  font-weight: 500;
}
.contact-form {
  flex: 1 1 340px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8faf7;
  transition: border 0.2s;
  font-family: inherit;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
  outline: none;
}
.contact-btn {
  background: linear-gradient(90deg, #2e7d32 60%, #bfa046 100%);
  color: #fff;
  border: none;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(46,125,50,0.08);
}
.contact-btn:hover {
  background: linear-gradient(90deg, #256025 60%, #a88c36 100%);
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    padding: 30px 10px;
  }
}

.unsplash-masonry {
  column-count: 4;
  column-gap: 1.5rem;
}
.unsplash-masonry img {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  break-inside: avoid;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
}
.unsplash-masonry img:hover {
  transform: scale(1.04);
}
@media (max-width: 1200px) {
  .unsplash-masonry { column-count: 3; }
}
@media (max-width: 900px) {
  .unsplash-masonry { column-count: 2; }
}
@media (max-width: 600px) {
  .unsplash-masonry { column-count: 1; }
}

  .zoom-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  .zoom-modal-overlay.active {
    display: flex;
  }
  .zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .zoom-modal-content img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
  }
  .zoom-modal-close {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .zoom-modal-close:hover {
    background: #eee;
  }