/* BASE */
.contact-area {
  padding: 40px 0;
}


/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.info-card h3 {
  margin-bottom: 12px;
  color: #FF6711;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 30px;
  margin-left: 15px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: #555;
}

.social-btn:hover {
  background: #FF6711;
}

.social-btn:hover svg {
  fill: #fff;
}

/* FORM */
.contact-form {
  background: #fff;
  
 border-radius: 20px;
}

.contact-form h2 {
  margin-bottom: 24px;
  color: #FF6711;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.contact-form textarea {
  margin-top: 20px;
  min-height: 140px;
}

.contact-form button {
  margin-top: 20px;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  background: #FF6711;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* MAP */
.map-wrapper {
  margin-top: 40px;
  width: 100%;
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-card {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
}

.contact-card h3 {
  margin-bottom: 22px;
}

.info-card a{
    text-decoration: none;
    color: #000;
}
.social-link svg {
    fill:#6BC4FF;
}
.social-link:hover svg {
    fill:#FF6711;
}
.contact-form iframe{
    width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  border: 1px solid #c6bebe;
}
/* MOBILE */
@media (max-width: 993px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-area {
    padding: 20px 0;
  }
  .contact-form {
    height: 300px;
  }
  .contact-grid {
    gap: 20px;
  }
}
