.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-card h4 {
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-card__value {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.contact-card small {
  color: var(--gray);
  font-size: 0.85rem;
}

.form-section {
  max-width: 600px;
  margin: 0 auto 50px;
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0d6cf;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(144, 77, 48, 0.1);
}

.feedback-form textarea {
  min-height: 120px;
  resize: none;
}

.delivery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.delivery-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
}

.delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--accent);
  color: white;
}

.social-section {
  text-align: center;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  display: inline-block;
  padding: 10px 30px;
  background: white;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal__content {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-hover);
}

.modal__message {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .contacts__grid,
  .delivery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contacts__grid,
  .delivery__grid {
    grid-template-columns: 1fr;
  }
  
  .form-section {
    padding: 30px 20px;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 250px;
  }
}