.header .logo {
  color: var(--primary-color)
}

.hero {
  background: #FBFBFB;
  height: 400px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.hero-content h1 {
  color: var(--title-color);
  font-weight: 300;
}

.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0rem;
  text-align: left;
}
/* Header */
.nav-item{
  color: var(--title-color);
}
.mobile-nav-menu a{
  color: #FBFBFB;
}

.lang-btn {
 
  border: 1px solid #333;
  border-radius: 0.5rem;
  height: min-content;
  cursor: pointer;
  color: var(--title-color);
  transition: color 0.3s ease;
}

header.scrolled {
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.075);
}


.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.contact-form,
.contact-info {
  padding: 1rem 0rem;
}

.contact .custom-btn {
  padding: 1rem 1rem;
  font-size: 0.8rem;
  width: 130px;
  font-weight: 400;
  transition: color 0.3s ease;
}

h2 {
  font-size: 2em;
  margin-bottom: 1.5rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.5rem;
}

input,
textarea {

  font-family: 'Montserrat', sans-serif;
  width: 100%;
  color: #333;

  font-weight: 500;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  background: #F2F2F2;
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
  opacity: 0.2;
  color: var(--title-color);
}

input:focus,
textarea:focus {
  border: 1px solid var(--title-color);
  background: white;
}

textarea {
  resize: vertical;
}


.subtitle {
  margin-bottom: 2rem;
  font-weight: 500;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h3 {
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.info-item p {
  margin: 0;
  font-weight: 500;
}

@media (min-width: 576px) {
  .contact {
    max-width: 540px;
  }

  .contact-form,
  .contact-info {
    padding: 1rem;
  }

}

@media (min-width: 768px) {
  .contact {
    max-width: 690px;
  }
}

@media (min-width: 990px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact {
    max-width: 960px;
  }
}