#contact {
  position: relative;
  padding: 80px 0;
  background: #00183d;
  background-image: url('../images/home_image.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,33,0.85) 0%, rgba(6,13,33,0.65) 40%, rgba(6,13,33,0.35) 100%);
  z-index: 1;
}

#contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

#contact .site-footer {
  position: relative;
  z-index: 3;
}

#contact h1 {
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

#contact .subtitle {
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 300;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #ffffff;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #00183d;
}

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

.contact-form button {
  background: #00183d;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-family: 'TheSeasons', 'The Seasons', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background: #001a40;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  #contact h1 {
    font-size: 2rem;
  }
  
  #contact .subtitle {
    font-size: 1.1rem;
  }
}

