@charset "UTF-8";

/* Contact Page - C4 Full Info Type */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Contact Info Side */
.contact-info h2 {
  font-size: 28px;
  font-weight: bold;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid var(--secondary);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-detail h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-info-detail p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.contact-info-detail a {
  color: var(--secondary);
}

/* Service Hours */
.service-hours {
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
}

.service-hours h3 {
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(242,215,213,0.2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(242,215,213,0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--primary);
}

.hours-time {
  color: var(--white);
  font-weight: 500;
}

/* Contact Form Side */
.contact-form-wrapper {
  background: var(--light);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--primary);
}

.contact-form-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(169,50,38,0.1);
}

.form-control::placeholder {
  color: var(--gray-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A93226' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

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

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: transparent;
  color: var(--secondary);
}

/* Map Section */
.map-section {
  padding: 0 0 60px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(44,21,21,0.1);
  height: 400px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--gray);
}

.map-placeholder-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.map-placeholder p {
  font-size: 16px;
}

.map-address {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44,21,21,0.9);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  .contact-info h2 {
    font-size: 24px;
  }
}
