/* =========================================================
   THEME
========================================================= */
:root {
  --primary: #ffc5c7;
  --primary-border: rgba(255,182,187,0.5);

  --bg-page: #fff8f9;

  --text-main: #1f2937;
  --text-muted: #4b5563;
  --heading: #0f172a;

  --glass-bg: rgba(255,255,255,0.82);
  --glass-border: rgba(255,182,187,0.45);

  --shadow:
    0 24px 60px rgba(31,41,55,0.12),
    0 10px 24px rgba(31,41,55,0.08);

  --radius: 22px;
}

/* =========================================================
   RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   BASE
========================================================= */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================================================
   PAGE
========================================================= */
.reach-page {
  max-width: 1200px;
  padding: 160px 96px 180px;
  margin: auto;
}

/* HERO */
.reach-hero {
  max-width: 680px;
  margin-bottom: 110px;
}

.reach-hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.reach-hero p {
  font-size: 18px;
  color: var(--text-muted);
}

/* =========================================================
   PATH CARDS
========================================================= */
.reach-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 140px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.glass-card i {
  font-size: 26px;
  color: #cf333e;
  margin-bottom: 20px;
}

.glass-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.glass-card p {
  font-size: 16px;
  color: var(--text-muted);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 36px 90px rgba(31,41,55,0.16),
    0 14px 36px rgba(31,41,55,0.12);
}

/* =========================================================
   FORM
========================================================= */
.glass-surface {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px;
}

.reach-form-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.reach-form {
  display: grid;
  gap: 22px;
}

.field label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  outline: none;
}

.field textarea {
  resize: vertical;
}

/* BUTTON */
.glass-btn {
  margin-top: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--primary-border);
  background: rgba(255,255,255,0.9);
  /* background-color: #cf333e; */
  /* color: #fff; */
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 10px 24px rgba(31,41,55,0.14);

}

.glass-btn:hover {
  transform: translateY(-2px);
}

/* FOOT */
.reach-foot {
  margin-top: 80px;
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .reach-page {
    padding: 120px 48px 160px;
  }

  .reach-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .reach-page {
    padding: 100px 22px 140px;
  }

  .glass-surface {
    padding: 36px;
  }
}
/* =========================================================
   MODERN OTHER WAYS TO REACH
========================================================= */
.modern-alt {
  margin-top: 180px;
}

.alt-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--heading);
}

/* GRID */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

/* MODERN GLASS CARD */
.glass-modern {
  position: relative;
  padding: 44px 42px 48px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.9),
      rgba(255,255,255,0.7)
    );

  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);

  border-radius: 26px;
  border: 1px solid rgba(255,182,187,0.4);

  box-shadow:
    0 30px 80px rgba(31,41,55,0.14),
    inset 0 1px 0 rgba(255,255,255,0.8);

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    box-shadow 0.45s cubic-bezier(.22,1,.36,1);
}

/* LIGHT SHEEN */
.glass-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,255,255,0.6),
      transparent 70%
    );
  opacity: 0.25;
  pointer-events: none;
}

/* HOVER */
.glass-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 50px 120px rgba(31,41,55,0.18),
    0 20px 40px rgba(31,41,55,0.12);
}

/* ICON */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  background: rgba(207,51,62,0.12);
  margin-bottom: 22px;
}

.icon-wrap i {
  font-size: 20px;
  color: #cf333e;
}

/* TEXT */
.alt-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.alt-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* LINKS */
.alt-card a {
  color: #cf333e;
  font-weight: 500;
  text-decoration: none;
}

.alt-card a:hover {
  text-decoration: underline;
}

/* SOCIAL */
.social-card .social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-links a {
  font-size: 22px;
  color: var(--text-main);
  transition: transform .3s ease, color .3s ease;
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  color: #cf333e;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .alt-grid {
    grid-template-columns: 1fr;
  }
}
