/* ============================================================
   NUMBER / HOTLINE SECTION
   ============================================================ */

.number-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  padding: clamp(1rem, 1.5vw, 2rem) clamp(1rem, 3.5vw, 3.5rem);
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.number-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.number-section .call-911 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: normal;
  margin: 0;
}

.number-section .divider {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
  margin: 0 0.25rem;
}

.number-section .hotline-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: normal;
  margin: 0;
}

.number-section .hotline-text a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.number-section .hotline-text a:hover {
  opacity: 0.8;
}

/* ============================================================
   SUPPORT HERO SECTION
   ============================================================ */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  min-height: auto;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
}

.support-content .section-title {
  margin-bottom: 0.1rem;
}

.support-content .section-motto {
  max-width: 700px;
  margin: 0 auto 0.25rem;
}

.support-content .section-paragraph {
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }

  .support-content {
    max-width: 90%;
  }

  .support-content .section-paragraph {
    max-width: 100%;
  }

  .number-section {
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(2rem, 4vw, 3rem);
  }

  .number-section .call-911 {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
  }

  .number-section .divider {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
  }

  .number-section .hotline-text {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1.5rem;
  }

  .support-content {
    gap: 0.75rem;
    max-width: 100%;
  }

  .support-content .section-paragraph {
    max-width: 100%;
  }
  
  .number-section {
    padding: 1.5rem 1.25rem;
  }

  .number-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .number-section .divider {
    display: none;
  }

  .number-section .call-911 {
    font-size: clamp(1rem, 3vw, 1.125rem);
    text-align: center;
  }

  .number-section .hotline-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-align: center;
    font-weight: 400;
  }

  .number-section .hotline-text a {
    font-weight: 700;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-section {
    padding: 1.5rem 1rem;
  }

  .support-content .section-motto {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .support-content .section-paragraph {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  }

  .number-section {
    padding: 1rem 0.875rem;
  }

  .number-section .call-911 {
    font-size: 0.875rem;
  }

  .number-section .divider {
    font-size: 0.875rem;
  }

  .number-section .hotline-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .number-section .hotline-text a {
    font-weight: 700;
  }
}

/* ============================================================
   WHAT TO EXPECT SECTION
   ============================================================ */

.expect-section {
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  background-color: var(--secondary-background);
  margin: 0 auto;
  width: 100%;
  min-height: auto;
  text-align: center;
}

.expect-section .section-title {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.expect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.expect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1rem, 1.5vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(60, 53, 47, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(60, 53, 47, 0.10);
}

.expect-card .card-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--primary-pink);
  line-height: 1;
  margin: 0 0 0.5rem 0;
}

.expect-card .card-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 600;
  color: var(--black-text);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.expect-card .expect-text {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .expect-section {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }

  .expect-cards {
    gap: clamp(1.25rem, 2vw, 1.75rem);
    max-width: 100%;
  }

  .expect-card {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }

  .expect-card .card-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
  }

  .expect-card .card-title {
    font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  }

  .expect-card .expect-text {
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
    max-width: 100%;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .expect-section {
    padding: 2rem 1.5rem;
  }

  .expect-section .section-title {
    margin-bottom: 1.5rem;
  }

  .expect-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 100%;
  }

  .expect-card {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem;
    gap: 1rem;
    align-items: center;
  }

  .expect-card .card-number {
    font-size: 2.25rem;
    flex-shrink: 0;
    margin: 0;
    width: 50px;
    text-align: center;
  }

  .expect-card .card-title {
    font-size: 1.125rem;
    margin: 0 0 0.2rem 0;
  }

  .expect-card .expect-text {
    font-size: 0.875rem;
    max-width: 100%;
  }

  .expect-card .card-text-group {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .expect-section {
    padding: 1.5rem 1rem;
  }

  .expect-cards {
    gap: 1rem;
  }

  .expect-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .expect-card .card-number {
    font-size: 1.75rem;
    width: 40px;
  }

  .expect-card .card-title {
    font-size: 1rem;
  }

  .expect-card .expect-text {
    font-size: 0.8125rem;
  }
}

/* ============================================================
   SUPPORT FORM SECTION
   ============================================================ */
.support-form-section {
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.support-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Form Main Title ── */
.form-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 0 0 0.1rem 0;
  text-align: center;
}

.form-main-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--black-text);
  margin: 0 0 0.25rem 0;
  text-align: center;
  line-height: 1.2;
}

.form-main-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  color: var(--black-text);
  text-align: center;
  margin: 0 0 2rem 0;
}

/* ── Form Sections ── */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: var(--black-text);
  margin: 0 0 1.25rem 0;
}

/* ── Form Groups ── */
.support-form .form-group {
  margin-bottom: 1.25rem;
}

.support-form .form-group label {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  display: block;
  margin-bottom: 0.4rem;
}

.support-form .form-group input[type="text"],
.support-form .form-group input[type="email"],
.support-form .form-group textarea {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.support-form .form-group input[type="text"]:focus,
.support-form .form-group input[type="email"]:focus,
.support-form .form-group textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(184, 99, 76, 0.1);
}

.support-form .form-group input::placeholder,
.support-form .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.support-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Radio & Checkbox Groups ── */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  cursor: pointer;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-pink);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Submit Button ── */
.support-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.5rem;
  border-radius: 10px;
  border: 1.5px solid var(--primary-pink);
  background: var(--primary-pink);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  width: fit-content;
  min-width: 180px;
  margin-top: 1rem;
}

.support-submit-btn:hover {
  background-color: #a3563f;
  border-color: #a3563f;
  transform: translateY(-2px);
}

/* ── Form Messages ── */
.support-form-message {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 8px;
  min-height: 1.5rem;
}

.support-form-message.success {
  color: #4a7c59;
  background: rgba(74, 124, 89, 0.08);
}

.support-form-message.error {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
}

/* ── PDF Section ── */
.pdf-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.pdf-note {
  font-family: var(--font-serif);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  font-weight: 400;
  color: var(--gray-text);
  margin: 0 0 1.5rem 0;
}

.pdf-preference {
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
}

.pdf-text {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  margin: 0 0 1rem 0;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  border: 1.5px solid var(--primary-green);
  background: transparent;
  color: var(--primary-green);
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pdf-download-btn:hover {
  background-color: var(--primary-green);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .support-form-section {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }

  .support-form-wrapper {
    max-width: 100%;
  }

  .form-main-subtitle {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .support-form-section {
    padding: 2rem 1.5rem;
  }

  .form-main-subtitle {
    font-size: 1.75rem;
  }

  .form-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .form-section-title {
    font-size: 1.25rem;
  }

  .support-form .form-group {
    margin-bottom: 1rem;
  }

  .support-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .support-form-section {
    padding: 1.5rem 1rem;
  }

  .form-main-subtitle {
    font-size: 1.5rem;
  }

  .form-section-title {
    font-size: 1.125rem;
  }

  .radio-option,
  .checkbox-option {
    font-size: 0.8125rem;
  }

  .pdf-download-btn {
    width: 100%;
    justify-content: center;
  }
}