/* Wrapper */
.contact {
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

/* Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* Card */
.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* Brand Colors */
.contact-telegram .contact-icon
{
  color: #0088cc;
}
.contact-btn-telegram {
  color: #0088cc;
  background: #0088cc;
}
.contact-whatsapp .contact-icon
{
  color: #25D366;
}
.contact-btn-whatsapp {
  color: #25D366;
  background: #25D366;
}
.contact-instagram .contact-icon {
  background: -webkit-linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-btn-instagram {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff !important;
}

.contact-bot .contact-icon,
.contact-btn-bot {
  color: #444;
  background: #444;
}

.contact-chef .contact-icon,
.contact-btn-chef {
  color: #ff6f00;
  background: #ff6f00;
}

/* Button */
.contact-btn {
  display: inline-block;
  padding: 10px 22px;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* Address Box */
.contact-address {
  background: #fff;
  padding: 30px;
  margin-top: 45px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  text-align: center;
}

.contact-address h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-address p {
  font-size: 15px;
  margin: 6px 0;
  color: #444;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-icon {
    font-size: 32px;
  }

  .contact-btn {
    width: 100%;
  }
}
