* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}

/* HERO */
.contact-hero {
  padding: 10px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 44px;
}

.contact-hero span {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-hero p {
  margin-top: 14px;
  color: #475569;
  font-size: 17px;
}

/* MAIN */
.contact-section {
  padding: 90px 0;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* CARD */
.contact-card {
  padding: 40px 36px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(15, 23, 42, 0.04);
}

/* GET IN TOUCH */
.get-touch-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.get-touch-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 28px;
}

/* INFO LIST */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2563eb;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 13px;
  color: #64748b;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 500;
}

.contact-info-value a {
  color: #2563eb;
  text-decoration: none;
}

/* FORM */
.form-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-button {
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

/* MAP */
.contact-map {
  margin-top: 70px;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 26px;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(15, 23, 42, 0.04);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
}
