/* Contact Section Styles */
.contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.contact__info {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 35px;
}

.contact-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
}

.contact-card__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card__content {
  flex: 1;
}

.contact-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}

.contact-card__text {
  font-size: 16px;
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 4px;
  font-family: 'Roboto', sans-serif;
}

.contact-card__subtext {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.contact__social {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
}

.contact__social-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
}

.social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact__social-text {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact__form-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}

.form__group {
  margin-bottom: 25px;
}

.form__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  color: #2c3e50;
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #f4a460;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.1);
}

.form__textarea {
  min-height: 180px;
  resize: vertical;
}

.form__button {
  width: 100%;
  padding: 18px 25px;
  background: #f4a460;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

.form__button:hover {
  background: #e38b44;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 139, 68, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact__container {
    max-width: 960px;
    gap: 30px;
  }
  
  .contact__info,
  .contact__form {
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  
  .contact__info,
  .contact__form {
    height: auto;
  }
  
  .contact__info {
    order: 2;
  }
  
  .contact__form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact__container {
    padding: 0 20px;
  }
  
  .contact__info,
  .contact__form {
    padding: 30px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact__form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .contact-card__title,
  .contact__social-title {
    font-size: 18px;
  }
  
  .form__textarea {
    min-height: 150px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }
  
  .contact__info,
  .contact__form {
    padding: 25px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact-card__icon {
    width: 28px;
    height: 28px;
  }
  
  .contact-card__text,
  .contact-card__subtext,
  .contact__social-text {
    font-size: 15px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link img {
    width: 18px;
    height: 18px;
  }
  
  .form__group {
    margin-bottom: 20px;
  }
  
  .form__input,
  .form__textarea {
    padding: 12px 15px;
  }
  
  .form__textarea {
    min-height: 120px;
  }
  
  .form__button {
    padding: 15px 20px;
    font-size: 16px;
  }
}

.map__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map__info-title {
  color: #303a4d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map__info-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.map__info-subtext {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .map__info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .map__info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.map__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.map__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #f4a460;
}

@media (max-width: 768px) {
  .map__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .map__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
} 