@charset "UTF-8";

/* ===== Contact Cards ===== */
.contact-cards {
  padding: 80px 0 40px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(245,230,211,0.3), rgba(245,230,211,0.1));
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(198,123,60,0.1);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(44,24,16,0.1);
  border-color: var(--border);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #A8652E);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  fill: var(--white);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-card a {
  color: var(--secondary);
  font-weight: 500;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
  padding: 40px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(198,123,60,0.12);
}

.form-wrapper h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(198,123,60,0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(198,123,60,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  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='%23C67B3C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ===== Contact Info Panel ===== */
.contact-info-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-lighter));
  border-radius: 20px;
  padding: 40px;
  color: var(--primary);
}

.contact-info-panel h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--secondary);
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245,230,211,0.1);
}

.info-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-list .icon {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.info-list span {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.7);
  line-height: 1.5;
}

.work-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,230,211,0.1);
}

.work-hours h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--secondary);
}

.work-hours p {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.7);
  line-height: 1.6;
}

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

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, rgba(245,230,211,0.3), rgba(245,230,211,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.map-placeholder svg {
  width: 64px;
  height: 64px;
  fill: var(--secondary);
  opacity: 0.4;
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.map-placeholder span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    padding: 28px 20px;
  }
  
  .contact-info-panel {
    padding: 28px 20px;
  }
  
  .map-container {
    height: 300px;
  }
}
