@charset "UTF-8";
.contact-hero-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 150px 20px 80px 20px;
  text-align: center;
}
.contact-hero-section .contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-hero-section .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 10px;
}
.contact-hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #1c4425;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 auto 30px auto;
  max-width: 800px;
}
.contact-hero-section p {
  font-size: 1.2rem;
  color: #1c4425;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}
.contact-hero-section .contact-cards-layout {
  display: flex;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto 0 auto;
  text-align: left;
}
.contact-hero-section .contact-cards-layout .contact-card {
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  flex: 1;
}
.contact-hero-section .contact-cards-layout .info-card {
  background-color: #e5f0d5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-hero-section .contact-cards-layout .info-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c4425;
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}
.contact-hero-section .contact-cards-layout .info-card .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-hero-section .contact-cards-layout .info-card .info-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.contact-hero-section .contact-cards-layout .info-card .info-list li .info-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1c4425;
  margin-bottom: 5px;
}
.contact-hero-section .contact-cards-layout .info-card .info-list li .info-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c4425;
}
.contact-hero-section .contact-cards-layout .info-card .info-bottom {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-hero-section .contact-cards-layout .info-card .info-bottom h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1c4425;
  margin: 0 0 15px 0;
}
.contact-hero-section .contact-cards-layout .info-card .info-bottom .social-links {
  display: flex;
  gap: 20px;
}
.contact-hero-section .contact-cards-layout .info-card .info-bottom .social-links a {
  font-size: 1rem;
  font-weight: 600;
  color: #1c4425;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-hero-section .contact-cards-layout .info-card .info-bottom .social-links a:hover {
  color: #46664e;
}
.contact-hero-section .contact-cards-layout .form-card {
  background-color: #1c4425;
}
.contact-hero-section .contact-cards-layout .form-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #e5f0d5;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 15px 0;
}
.contact-hero-section .contact-cards-layout .form-card p {
  font-size: 1rem;
  color: #e5f0d5;
  margin: 0 0 40px 0;
  max-width: 100%;
  line-height: 1.6;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group {
  width: 100%;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=text],
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=email],
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=tel],
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group select,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group textarea {
  width: 100%;
  background-color: #f1f8e7;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #1c4425;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=text]::-moz-placeholder, .contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=email]::-moz-placeholder, .contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=tel]::-moz-placeholder, .contact-hero-section .contact-cards-layout .form-card .contact-form .input-group select::-moz-placeholder, .contact-hero-section .contact-cards-layout .form-card .contact-form .input-group textarea::-moz-placeholder {
  color: #999;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=text]::placeholder,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=email]::placeholder,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=tel]::placeholder,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group select::placeholder,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group textarea::placeholder {
  color: #999;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=text]:focus,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=email]:focus,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group input[type=tel]:focus,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group select:focus,
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group textarea:focus {
  border-color: rgba(26, 26, 26, 0.2);
  background-color: #f1f8e7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  cursor: pointer;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .input-group textarea {
  resize: none;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .checkbox-group {
  width: 100%;
  margin-top: -5px;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #e5f0d5;
  cursor: pointer;
  line-height: 1.5;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .checkbox-group label a.modal-trigger {
  color: #f9f9f9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .checkbox-group label a.modal-trigger:hover {
  color: #ff5c00;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .checkbox-group label input[type=checkbox] {
  margin-top: 3px;
  min-width: 18px;
  width: 18px;
  height: 18px;
  accent-color: #ff5c00;
  cursor: pointer;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .submit-btn {
  background-color: #ff5c00;
  color: #f9f9f9;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}
.contact-hero-section .contact-cards-layout .form-card .contact-form .submit-btn:hover {
  background-color: #f9f9f9;
  color: #1c4425;
}
@media screen and (max-width: 992px) {
  .contact-hero-section {
    padding: 120px 20px 60px 20px;
  }
  .contact-hero-section h1 {
    font-size: 3rem;
    max-width: 90%;
  }
  .contact-hero-section p {
    font-size: 1.1rem;
    max-width: 90%;
  }
  .contact-hero-section .contact-cards-layout {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }
  .contact-hero-section .contact-cards-layout .contact-card {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .contact-hero-section {
    padding: 100px 20px 50px 20px;
  }
  .contact-hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .contact-hero-section p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .contact-hero-section .contact-cards-layout {
    margin-top: 50px;
    gap: 30px;
  }
  .contact-hero-section .contact-cards-layout .contact-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .contact-hero-section .contact-cards-layout .form-card h3 {
    font-size: 1.6rem;
  }
  .contact-hero-section .contact-cards-layout .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

.locations-section {
  width: 100%;
  background-color: #e5f0d5;
  padding: 120px 20px;
  text-align: center;
}
.locations-section .locations-container {
  max-width: 1200px;
  margin: 0 auto;
}
.locations-section .locations-header {
  margin-bottom: 60px;
}
.locations-section .locations-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 10px;
}
.locations-section .locations-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #1c4425;
  margin: 0 auto;
  max-width: 800px;
}
.locations-section .locations-content-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-top: 80px;
  text-align: left;
}
.locations-section .locations-content-layout .locations-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
.locations-section .locations-content-layout .locations-list .location-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.locations-section .locations-content-layout .locations-list .location-item:first-child {
  padding-top: 0;
  justify-content: flex-start;
}
.locations-section .locations-content-layout .locations-list .location-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  justify-content: flex-end;
}
.locations-section .locations-content-layout .locations-list .location-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c4425;
  letter-spacing: -0.5px;
}
.locations-section .locations-content-layout .locations-list .location-item .location-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.locations-section .locations-content-layout .locations-list .location-item .location-details span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1c4425;
}
.locations-section .locations-content-layout .locations-gallery {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  gap: 0;
}
.locations-section .locations-content-layout .loc-photo-card {
  position: relative;
  width: 45%;
  aspect-ratio: 4/6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0s, box-shadow 0.6s ease;
  cursor: pointer;
}
.locations-section .locations-content-layout .loc-photo-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.locations-section .locations-content-layout .loc-photo-card .city-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1c4425;
  z-index: 5;
}
.locations-section .locations-content-layout .loc-photo-card.card-1 {
  z-index: 1;
  transform: translateY(-40px);
}
.locations-section .locations-content-layout .loc-photo-card.card-2 {
  z-index: 3;
  transform: translateY(40px);
  margin-left: -80px;
}
.locations-section .locations-content-layout .loc-photo-card.card-3 {
  z-index: 2;
  transform: translateY(-10px);
  margin-left: -80px;
}
.locations-section .locations-content-layout .loc-photo-card:hover {
  z-index: 10 !important;
  transform: scale(1.05) translateY(0) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.locations-section .locations-content-layout .loc-photo-card:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 992px) {
  .locations-section {
    padding: 100px 20px;
  }
  .locations-section .locations-header h2 {
    font-size: 2.8rem;
  }
  .locations-section .locations-content-layout {
    flex-direction: column;
    gap: 60px;
  }
  .locations-section .locations-content-layout .locations-list {
    width: 100%;
  }
  .locations-section .locations-content-layout .locations-gallery {
    width: 100%;
    justify-content: center;
    padding-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .locations-section {
    padding: 80px 20px;
  }
  .locations-section .locations-header {
    margin-bottom: 40px;
  }
  .locations-section .locations-header h2 {
    font-size: 2.2rem;
  }
  .locations-section .locations-content-layout {
    margin-top: 50px;
  }
  .locations-section .locations-content-layout .location-item h3 {
    font-size: 1.5rem;
  }
  .locations-section .locations-content-layout .locations-gallery {
    gap: 15px;
  }
  .locations-section .locations-content-layout .loc-photo-card {
    width: 32%;
    border-radius: 12px;
  }
  .locations-section .locations-content-layout .loc-photo-card .city-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    bottom: 10px;
    left: 10px;
  }
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.custom-modal.is-open {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.custom-modal.is-open .modal-content {
  animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.custom-modal .modal-content {
  background-color: #1c4425;
  border: 1px solid rgba(229, 240, 213, 0.2);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.custom-modal .modal-content .close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #e5f0d5;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}
.custom-modal .modal-content .close-modal:hover {
  color: #ff5c00;
}
.custom-modal .modal-content h4 {
  color: #f9f9f9;
  font-size: 1.5rem;
  margin: 0;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(229, 240, 213, 0.1);
}
.custom-modal .modal-content .modal-body {
  padding: 25px 30px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #e5f0d5;
  line-height: 1.6;
  font-size: 0.95rem;
}
.custom-modal .modal-content .modal-body p {
  margin-bottom: 15px;
}
.custom-modal .modal-content .modal-body::-webkit-scrollbar {
  width: 6px;
}
.custom-modal .modal-content .modal-body::-webkit-scrollbar-track {
  background: rgba(229, 240, 213, 0.1);
  border-radius: 4px;
}
.custom-modal .modal-content .modal-body::-webkit-scrollbar-thumb {
  background: #ff5c00;
  border-radius: 4px;
}
.custom-modal .terms-section .terms-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-modal .terms-section .terms-title {
  font-size: 1.3rem;
  color: #f9f9f9;
  margin: 0 0 8px 0;
}
.custom-modal .terms-section .terms-intro {
  color: rgba(229, 240, 213, 0.75);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.custom-modal .terms-section .terms-main-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-modal .terms-section .terms-main-list > li h2 {
  font-size: 0.95rem;
  color: #f9f9f9;
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(229, 240, 213, 0.1);
}
.custom-modal .terms-section .terms-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.custom-modal .terms-section .terms-sub-list li {
  font-size: 0.88rem;
  color: rgba(229, 240, 213, 0.8);
  padding-left: 14px;
  position: relative;
}
.custom-modal .terms-section .terms-sub-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #ff5c00;
}
.custom-modal .terms-section .terms-contact-link {
  color: #ff5c00;
  text-decoration: none;
  transition: opacity 0.2s;
}
.custom-modal .terms-section .terms-contact-link:hover {
  opacity: 0.75;
}
.custom-modal .terms-section .contact-desc {
  font-size: 0.88rem;
  color: rgba(229, 240, 213, 0.75);
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
  to {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=contact.css.map */