
.contact-section {
  padding: 90px 45px 100px;
  background: #f7f5e7;
}

.contact-main-title {
  color: var(--title-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.3;
}

.contact-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.contact-form {
  padding: 0;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-color);
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}

.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  background: #fff;
  border: none;
  border-bottom: 1px solid #9b8167;
  border-radius: 0;
  padding: 10px 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: #fff;
  border-bottom: 2px solid #9b8167;
  box-shadow: none;
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

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



.btn-submit {
  width: 100%;
  background: #9b8167;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  height: 48px;
}

.btn-submit:hover {
  background: var(--title-color);
  transform: translateY(-2px);
}


.form-note {
  font-size: 0.85rem;
  color: var(--text-color);
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 0;
}


.contact-info-section {
  padding: 90px 45px 100px;
  background: #f7f5e7;
}

.contact-info-section .row {
  align-items: center;
}

.contact-info-block {
  padding: 20px 0;
}

.info-item {
  margin-bottom: 40px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-title .material-symbols-outlined {
  font-size: 22px;
  color: var(--text-color);
}

.info-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 5px;
}

.info-text:last-child {
  margin-bottom: 0;
}

.contact-map {
  width: 100%;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}

@media (max-width: 1024px) {
   .contact-section {
    padding: 70px 45px 80px;
    }
    .contact-info-section {
    padding: 84px 45px 80px;
    }
}
@media (max-width: 991px) {
  .contact-section {
    padding: 64px 15px 70px;
  }
  
  .contact-image {
    margin-bottom: 30px;
    max-height: 400px;
  }
  
  .security-code {
    margin-bottom: 15px;
  }
  
  .contact-info-section {
    padding: 15px 25px 70px;
  }
  
  .contact-info-block {
    margin-bottom: 30px;
  }
  
  .contact-map {
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  .contact-subtitle br {
    display: none;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-control {
    font-size: 0.95rem;
  }
  
  .security-code {
    font-size: 1rem;
    padding: 10px 15px;
    height: 44px;
  }
  
  .btn-submit {
    font-size: 0.95rem;
    padding: 10px 25px;
    height: 44px;
  }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 40px 15px 60px;
    }
}
