/* --- VARIABLES --- */
:root {
  --bg-light: #EEF2F2;
  --primary-color: #243333;
  --text-color: #4A6464;
  --brand-teal: #5b8e8e;
}

body.contact-page {
  background: var(--bg-light);
  letter-spacing: -0.04em;
  /* Match About page global spacing */
}

/* CONTACT SECTION */
.contact-section {
  padding: 0 0 80px 0;
  flex: 1;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 64px;
  margin-top: 64px;
  /* Match About page spacing */
}

.contact-main-title {
  font-size: 48px;
  /* Match About page "Hakkımızda" */
  font-weight: 700;
  color: var(--primary-color);
  /* #243333 */
  margin-bottom: 0;
  margin-top: 10px;
  /* Match About page positioning */
  letter-spacing: -0.07em;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

/* CARD */
.contact-card {
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  /* Match About page image radius */
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Match About page border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  /* Subtle initial shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}


.contact-icon {
  color: var(--brand-teal);
}

.contact-icon svg {
  width: 48px;
  height: 48px;
}

/* TITLE */
.contact-card-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  /* #243333 */
  letter-spacing: -0.07em;
  font-family: 'Manrope', sans-serif;
}

/* TEXT */
.contact-card-text {
  font-size: 16px;
  line-height: 1.8;
  word-spacing: 2px;
  color: var(--text-color);
  /* #4A6464 */
  margin: 0;
  font-weight: 400;
  text-align: center;
}

/* LINKS */
.contact-link {
  display: block;
  font-size: 16px;
  word-spacing: 2px;
  color: var(--text-color);
  /* #4A6464 */
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
  font-weight: 400;
  text-align: center;
}

.contact-link:hover {
  color: var(--brand-teal);
  text-decoration: none;
}