/* ============================================================
   HOME PAGE
   ============================================================ */

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(0.5rem, 1.5vw, 1.5rem) clamp(2rem, 6vw, 6rem) clamp(1rem, 2vw, 2rem);
  min-height: auto;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.hero-content-right {
  display: flex;
  justify-content: right;
  align-items: right;
}

.hero-content-right img {
  width: 100%;
  max-width: 451px;
  height: 370px;
  aspect-ratio: 206/169;
  object-fit: contain;
  border-radius: 10px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

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

  .hero-content-right img {
    height: clamp(280px, 35vw, 370px);
    max-width: 400px;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 1.5rem;
    min-height: unset;
    gap: 1.5rem;
  }

  .hero-content-left {
    gap: 0.75rem;
    align-items: center;
    text-align: center;
  }

  .hero-content-right {
    order: -1;
  }

  .hero-content-right img {
    height: clamp(200px, 50vw, 320px);
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 10px;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
  }

  .white-btn,
  .pink-btn {
    flex: 1;
    min-width: 140px;
  }
}

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

  .hero-content-right img {
    height: clamp(160px, 40vw, 220px);
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .white-btn,
  .pink-btn {
    min-width: 120px;
  }
}

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

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

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(35px, 4vw, 42px);
  height: clamp(35px, 4vw, 42px);
  aspect-ratio: 1/1;
}

.phone-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.number-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.5vw, 0.5rem);
  flex: 1;
  max-width: 890px;
}

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

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

.number-section .hotline-text a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

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

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

  .number-content {
    max-width: 100%;
  }

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

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

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .number-section {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 0.75rem;
  }

  .phone-icon {
    width: clamp(30px, 6vw, 36px);
    height: clamp(30px, 6vw, 36px);
  }

  .number-content {
    max-width: 100%;
    align-items: center;
  }

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

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

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

  .phone-icon {
    width: 26px;
    height: 26px;
  }

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

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

/* ============================================================
   MISSION & VISION SECTION
   ============================================================ */

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(2rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.mission-left-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mission-left-image img {
  width: 100%;
  max-width: 388px;
  height: auto;
  aspect-ratio: 388 / 442;
  object-fit: cover;
  border-radius: 12px;
}

.right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.mission-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

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

  .mission-left-image img {
    max-width: 320px;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .mission-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .mission-left-image {
    order: -1;
  }

  .mission-left-image img {
    max-width: 280px;
  }

  .right-content {
    align-items: center;
    text-align: center;
  }

  .mission-btns {
    justify-content: center;
    width: 100%;
  }

  .green-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

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

  .mission-left-image img {
    max-width: 200px;
  }

  .mission-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .green-btn {
    min-width: 120px;
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   CORE VALUES SECTION
   ============================================================ */

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

.core-values-title {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2.5rem);
}

.core-values-title .section-title {
  margin-bottom: 0;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 2rem) clamp(0.75rem, 1.5vw, 1.5rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background-color: transparent;
}

.value-item:hover {
  transform: translateY(-4px);
  background-color: var(--secondary-background);
  box-shadow: 0 4px 20px rgba(60, 53, 47, 0.06);
}

.value-item img {
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  object-fit: contain;
  margin-bottom: 0.25rem;
}

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

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

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

  .values-container {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .core-values-title {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .value-item {
    padding: clamp(1rem, 1.5vw, 1.5rem);
  }

  .value-item img {
    width: clamp(48px, 5vw, 56px);
    height: clamp(48px, 5vw, 56px);
  }

  .value-title {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  }

  .value-description {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  }
}

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

  .core-values-title {
    margin-bottom: 2rem;
  }

  .values-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .value-item {
    padding: 1rem;
    gap: 0.5rem;
  }

  .value-item:hover {
    transform: none;
    background-color: transparent;
    box-shadow: none;
  }

  .value-item img {
    width: 48px;
    height: 48px;
  }

  .value-title {
    font-size: 1.125rem;
  }

  .value-description {
    font-size: 0.8125rem;
    max-width: 100%;
  }
}

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

  .core-values-title {
    margin-bottom: 1.5rem;
  }

  .values-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .value-item {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    padding: 0.75rem;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .value-item:last-child {
    border-bottom: none;
  }

  .value-item img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .value-item .value-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .value-title {
    font-size: 1rem;
  }

  .value-description {
    font-size: 0.75rem;
    max-width: 100%;
  }
}

/* ============================================================
   FOUNDERS SECTION
   ============================================================ */

.founders-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(2rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.founders-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.founders-right-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.founders-right-image img {
  width: 100%;
  max-width: 388px;
  height: auto;
  aspect-ratio: 388 / 442;
  object-fit: cover;
  border-radius: 12px;
}

.founders-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

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

  .founders-right-image {
    justify-content: center;
    align-items: center;
  }

  .founders-right-image img {
    max-width: 320px;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .founders-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .founders-content {
    align-items: center;
    text-align: center;
  }

  .founders-right-image {
    order: -1;
    justify-content: center;
    align-items: center;
  }

  .founders-right-image img {
    max-width: 280px;
    width: 100%;
  }

  .founders-btns {
    justify-content: center;
    width: 100%;
  }

  .green-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

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

  .founders-right-image img {
    max-width: 200px;
  }

  .founders-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .green-btn {
    min-width: 120px;
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.stats-section {
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 3vw, 3rem);
  background-color: var(--primary-green);
  margin: 0 auto;
  width: 100%;
  min-height: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.0625rem);
  font-weight: 500;
  color: var(--white-text);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-description {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 300;
  color: var(--white-text);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

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

  .stats-container {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .stat-number {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }

  .stat-description {
    font-size: clamp(0.8125rem, 1.1vw, 1rem);
    max-width: 220px;
  }
}

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

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .stat-item {
    gap: 0.25rem;
  }

  .stat-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .stat-description {
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    max-width: 100%;
  }
}

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

  .stats-container {
    gap: 1.5rem;
    max-width: 320px;
  }

  .stat-number {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .stat-description {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */

.programs-section {
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  background-image: url('../../assets/images/home/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  width: 100%;
  min-height: auto;
  position: relative;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.programs-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 2.5vw, 2.5rem);
}

.programs-content .section-title {
  margin-bottom: 0.25rem;
}

.programs-content .section-motto {
  margin-bottom: 0.5rem;
}

.programs-content .section-paragraph {
  max-width: 600px;
  margin: 0 auto;
}

.program-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.2vw, 1.25rem) clamp(0.75rem, 1.2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  border: 1px solid rgba(101, 106, 81, 0.12);
  box-shadow: 0 2px 12px rgba(60, 53, 47, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: clamp(180px, 28%, 260px);
  flex-shrink: 0;
  min-height: auto;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(60, 53, 47, 0.12);
}

.program-card img {
  width: clamp(44px, 4.5vw, 60px);
  height: clamp(44px, 4.5vw, 60px);
  object-fit: contain;
}

.program-description {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--black-text);
  line-height: 1.4;
  margin: 0;
}

.programs-btns {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 3rem);
  position: relative;
  z-index: 1;
}

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

  .program-cards {
    max-width: 700px;
    gap: clamp(0.875rem, 1.5vw, 1.25rem);
  }

  .program-card {
    width: clamp(150px, 29%, 210px);
  }

  .program-card img {
    width: clamp(44px, 4.5vw, 56px);
    height: clamp(44px, 4.5vw, 56px);
  }

  .program-description {
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  }
}

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

  .programs-content {
    margin-bottom: 1.5rem;
  }

  .program-cards {
    gap: 0.875rem;
    max-width: 100%;
  }

  .program-card {
    width: calc(50% - 0.875rem);
    padding: 1rem;
    gap: 0.5rem;
  }

  .program-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(60, 53, 47, 0.06);
  }

  .program-card img {
    width: 40px;
    height: 40px;
  }

  .program-description {
    font-size: 0.8125rem;
  }

  .programs-btns {
    margin-top: 1.5rem;
  }

  .green-btn {
    font-size: 16px;
    padding: 8px 20px;
  }
}

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

  .program-cards {
    gap: 0.75rem;
  }

  .program-card {
    width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
  }

  .program-card img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .program-description {
    font-size: 0.8125rem;
    text-align: left;
  }

  .green-btn {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
  }
}

/* ============================================================
   FOR COMPANIES SECTION
   ============================================================ */

.companies-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.companies-left-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.companies-left-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

.companies-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.companies-content .section-paragraph {
  max-width: 580px;
}

.companies-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

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

  .companies-left-image img {
    max-width: 340px;
  }

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

  .green-btn {
    font-size: 18px;
    padding: 8px 20px;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .companies-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .companies-content {
    align-items: center;
    text-align: center;
  }

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

  .companies-left-image {
    order: -1;
  }

  .companies-left-image img {
    max-width: 280px;
  }

  .companies-btns {
    justify-content: center;
    width: 100%;
  }

  .green-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

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

  .companies-left-image img {
    max-width: 200px;
  }

  .companies-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .green-btn {
    min-width: 120px;
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================================
   DONATE SECTION
   ============================================================ */

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

.donate-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;
}

.donate-content .section-motto {
  color: var(--white-text);
}

.donate-content .section-paragraph {
  color: var(--white-text);
  max-width: 580px;
}

.donate-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

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

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

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

  .pink-btn {
    font-size: 18px;
    padding: 8px 28px;
  }
}

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

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

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

  .donate-btns {
    justify-content: center;
    width: 100%;
  }

  .pink-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

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

  .donate-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .pink-btn {
    min-width: 120px;
    max-width: 100%;
    width: 100%;
  }
}