.macs-contact-page {
  min-height: auto;
  background: #fdfdfd;
  color: #1f2524;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.macs-contact-hero {
  padding: 80px 48px;
  background: #1f2524;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.macs-contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 231, 226, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.macs-contact-kicker {
  margin: 0 0 12px;
  color: #7be7e2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.macs-contact-hero h1 {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.macs-contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: #9ca3af;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.5;
}

.macs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.macs-contact-card {
  background: #101414;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.macs-contact-card h2 {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.macs-contact-info-list {
  display: grid;
  gap: 24px;
}

.macs-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.macs-contact-info-item svg {
  color: #7be7e2;
  margin-top: 2px;
  flex-shrink: 0;
}

.macs-contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.macs-contact-info-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #f3f4f6;
}

.macs-contact-info-item a {
  color: #fff;
  text-decoration: none;
}

.macs-contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.macs-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.macs-contact-whatsapp {
  background: #25D366;
  color: #fff;
}

.macs-contact-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.macs-contact-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.macs-contact-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.2);
}

.macs-contact-map {
  background: #34a853;
  color: #fff;
}

.macs-contact-map:hover {
  background: #2c8e46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.2);
}

.macs-contact-form-wrapper {
  background: #f9fafb;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.macs-contact-form h2 {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.macs-form-group {
  margin-bottom: 18px;
}

.macs-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 13px;
  color: #4b5563;
}

.macs-contact-form input,
.macs-contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.macs-contact-form input:focus,
.macs-contact-form textarea:focus {
  border-color: #1f2524;
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 37, 36, 0.1);
}

.macs-contact-form button[type="submit"] {
  width: 100%;
  min-height: 48px;
  background: #1f2524;
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.macs-contact-form button[type="submit"]:hover {
  background: #7be7e2;
  color: #1f2524;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .macs-contact-grid {
    grid-template-columns: 1fr;
    padding: 30px 16px 50px;
  }
}