.contact {
  padding: 120px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 12px;
}

.contact-header h2 span {
  color: var(--primary);
}

.contact-header p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 26px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  margin-bottom: 22px;
  font-size: 14.5px;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

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

.contact-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Info */
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 26px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: var(--bg-white);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Map */
.map-box {
  margin-top: 28px;
  background: var(--bg-white);
  border-radius: 22px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.map-box span {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  position: relative;
  padding: 140px 20px 110px;
  background: linear-gradient(
    180deg,
    #faf3ff 0%,
    #ffffff 70%
  );
  overflow: hidden;
}

.contact-hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-hero h1 span {
  color: var(--primary);
}

.contact-hero p {
  font-size: 17px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* BUTTONS */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(180,75,210,.35);
}

.outline-btn {
  padding: 14px 34px;
  border-radius: 40px;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.outline-btn:hover {
  background: var(--primary-soft);
}

/* Decorative Background Shape */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(180,75,210,0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(180,75,210,0.12), transparent 45%);
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    padding: 110px 16px 90px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28px;
  }
}
