:root {
  --black: #000000;
  --brown: #84420d;
  --orange: #ed9c5d;
  --bright-orange: #ffa34c;
  --cream: #feefd8;
  --white: #ffffff;
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background-color: var(--white);
  line-height: 1.6;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--brown);
  margin-top: 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.nav-wrapper {
  background-color: var(--cream);
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 1000;
  border-radius: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--brown);
  font-size: 1.25rem;
}

.brand-logo {
  width: 80px;
}

.brand-secondary {
  width: 56px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.cta,
.primary,
.ghost {
  border: none;
  padding: 0.95rem 2rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-display);
}

.cta,
.primary {
  background-color: var(--bright-orange);
  color: var(--black);
}

.ghost {
  background-color: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.cta:hover,
.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(132, 66, 13, 0.2);
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-color: var(--cream);
  background-image: url("img/Frame 34.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 0 2.5rem 0;
  padding-top: calc(1.5rem + 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  margin-top: 0;
  scroll-margin-top: calc(1.5rem + 100px);
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

main {
  margin-top: 0;
  padding-top: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: min(1200px, 90%);
  margin: 2rem auto 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero .eyebrow {
  margin-bottom: 1.75rem;
}

.hero-text p {
  max-width: 520px;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.hero-visual img {
  width: min(520px, 100%);
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: calc(1.5rem + 80px);
  position: relative;
  z-index: 1;
}

.how {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.track-1 {
  top: 8%;
  left: 40%;
  transform: rotate(-15deg);
}

.track-2 {
  top: 23%;
  left: 55%;
  transform: rotate(10deg);
}

.track-3 {
  top: 38%;
  left: 45%;
  transform: rotate(-5deg);
}

.track-4 {
  top: 53%;
  left: 60%;
  transform: rotate(20deg);
}

.track-5 {
  top: 68%;
  left: 48%;
  transform: rotate(-12deg);
}

.track-6 {
  top: 83%;
  left: 58%;
  transform: rotate(8deg);
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.how h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.team h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
  color: var(--bright-orange);
  font-weight: 600;
}

.step-sequence {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.step-visual,
.step-copy {
  flex: 1;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-visual img {
  width: min(480px, 100%);
}

.step-copy {
  max-width: 480px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}

.step-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.step-copy p {
  margin: 0;
  color: var(--black);
}

.step-item.show .step-copy:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

.flow-arrow {
  display: block;
  width: min(180px, 40%);
  margin: 0 auto;
}

.reveal {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.mission {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.mission-card {
  background-color: #ffd8a6;
  border-radius: 32px;
  padding: 3.5rem;
  max-width: 900px;
  margin: 3.5rem auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.mission-card h2 {
  margin-bottom: 1rem;
  color: var(--brown);
}

.mission-card .eyebrow {
  color: var(--brown);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 1rem;
}

.mission-card p {
  margin: 0 auto;
  max-width: 640px;
}

.mission-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  background-color: var(--orange);
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .mission-card {
    padding: 2.25rem;
    border-radius: 28px;
    cursor: default;
  }

  .stats-grid {
    flex-direction: column;
  }


  .support-grid article {
    padding: 1rem;
  }
}

.stats {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.stats-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 260px;
  background-color: var(--white);
  border: 2px solid var(--brown);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 90px;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card.show .stat-icon {
  opacity: 1;
  transform: translateY(0);
}

.stat-24 {
  justify-content: center;
  min-height: 280px;
}

.stat-24 .stat-icon {
  width: auto;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.stat-24 .stat-content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.stat-number {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--brown);
}

.stat-content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
}

.stat-content span {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
}

.stat-device .stat-content {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-island .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-device img {
  margin-top: 1.5rem;
}

.stat-device .stat-icon {
  width: 130px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.stat-device {
  justify-content: center;
  min-height: 280px;
}

.support {
  background-color: var(--cream);
}

.support-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.support-visual {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: stretch;
}

.support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.support-details {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.support-details h2 {
  margin-bottom: 1.5rem;
  color: var(--brown);
}

.support-grid article {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.support-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.support-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.support-grid article h3 {
  margin-bottom: 0.4rem;
  color: var(--brown);
}

.support-grid article p {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
}

.features {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 240px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  color: var(--black);
}

.flip-card-back {
  color: var(--brown);
  transform: rotateY(180deg);
  background-color: var(--white);
}

.flip-yellow .flip-card-front {
  background-color: #ffc085;
}

.flip-brown .flip-card-front {
  background-color: #feefd8;
  color: var(--brown);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  object-fit: contain;
  display: block;
}

.features-grid .flip-card:nth-child(2) .feature-icon,
.features-grid .flip-card:nth-child(3) .feature-icon {
  width: 80px;
  height: 80px;
}

.flip-card-front h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.flip-card-back p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .flip-card {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.coming-soon {
  background-color: #f0dcc0;
  text-align: center;
  color: var(--black);
}

.coming-soon h2,
.coming-soon p {
  color: var(--black);
}

.coming-soon .eyebrow {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.coming-soon h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brown);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.countdown div {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.countdown span {
  font-size: clamp(2.5rem, 5vw, 4rem);
  display: block;
  font-weight: 400;
  color: var(--black);
}

.countdown p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 0.5rem;
}

.stories {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.story-card {
  flex-shrink: 0;
  min-width: 280px;
  max-width: 320px;
  background-color: var(--white);
  border: 2px solid var(--brown);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.story-image {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
}

.story-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e5e5e5;
  margin: 0 auto;
}

.story-card h3 {
  margin: 0 0 0.75rem 0;
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 600;
}

.story-card p {
  margin: 0 0 1.25rem 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.story-name {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.story-rating {
  color: #ffa34c;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--brown);
  color: var(--cream);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  line-height: 1;
}

.carousel-btn:hover {
  background-color: #6b350a;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.carousel-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
}

.carousel-prev span {
  left: -2px;
}

.carousel-next span {
  right: -2px;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0 2.5rem;
  }

  .story-card {
    min-width: 260px;
    max-width: 280px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    padding: 0 2rem;
  }

  .story-card {
    min-width: 240px;
    max-width: 260px;
  }
}

.team {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.team-container {
  background-color: var(--cream);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  background-color: transparent;
  border-radius: 1.25rem;
  overflow: visible;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  min-height: 280px;
}

.team-card-top {
  background-color: var(--white);
  border-radius: 1.25rem 1.25rem 0 0;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card-top .team-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
  z-index: 1;
}

.team-card-bottom {
  background-color: var(--brown);
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 3rem 1rem 1.5rem;
  text-align: center;
  color: var(--white);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.team-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
  z-index: 1;
}

.team-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--black);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-avatar-placeholder::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50% 50% 0 0;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.team-avatar-placeholder::after {
  content: "";
  width: 50px;
  height: 30px;
  background-color: var(--white);
  border-radius: 0 0 25px 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.team-card-bottom h3 {
  margin: 0 0 0.5rem 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.team-card-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact {
  background-color: var(--white);
  background-image: url("img/paw prints.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-title {
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--brown);
  gap: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  background-color: var(--white);
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  background-color: var(--cream);
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--font-display);
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background-color: var(--brown);
  color: var(--cream);
}

.contact-info {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  color: var(--brown);
  font-size: 2rem;
  margin: 0 0 1.25rem 0;
  font-weight: 600;
}

.contact-info p {
  color: var(--brown);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

.footer {
  background-color: var(--brown);
  color: var(--white);
  padding: 3rem 0 2rem;
  border-top: 1px solid #4a9eff;
  border-bottom: 1px solid #4a9eff;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.footer-column p {
  color: var(--white);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  font-size: 0.95rem;
  opacity: 0.9;
}

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.socials a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-item span {
  opacity: 0.9;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  flex: 1;
}

.legal {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.8;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .cta {
    padding: 0.65rem 1.25rem;
  }

  .hero {
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
  }

  .step-item,
  .step-item:nth-of-type(even) {
    flex-direction: column;
    text-align: center;
  }

  .step-copy {
    max-width: none;
  }

  .flow-arrow {
    width: 100px;
  }

  .mission-card {
    padding: 2rem;
    border-radius: 24px;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-visual {
  animation: fadeInScale 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced Hover Animations */
.step-card,
.features-grid article,
.story-card,
.team-card,
.impact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover,
.features-grid article:hover,
.team-card:hover,
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-submit,
.cta,
.primary,
.ghost {
  transition: all 0.3s ease;
}

.contact-submit:hover,
.cta:hover,
.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
}

/* Section Fade-ins */
.section h2 {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

