/* Outreach CSS */
:root {
  --teal-900: #042f2e;
  --teal-800: #115e59;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-50: #f0fdfa;
  --gray-900: #111827;
  --gray-600: #4b5563;
  --gray-50: #f9fafb;
  --white: #ffffff;
}

/* Global Reset for this page specific elements */
.outreach-page {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
}

.outreach-page h1,
.outreach-page h2,
.outreach-page h3,
.outreach-page h4 {
  color: var(--gray-900);
}

.outreach-page p {
  color: var(--gray-600);
}

.outreach-page a {
  text-decoration: none;
}

.outreach-page input,
.outreach-page select,
.outreach-page textarea {
  background-color: var(--white) !important;
  color: var(--gray-900) !important;
}

.outreach-page input::placeholder,
.outreach-page textarea::placeholder {
  color: var(--gray-600) !important;
}

/* Typography */
.outreach-badge {
  display: inline-block;
  color: var(--teal-600);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.outreach-badge::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--teal-600);
}

.outreach-h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.outreach-h1 span {
  color: var(--teal-700);
}

/* Hero Section */
.hero-section {
  padding: 6rem 5% 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}
.hero-content {
  flex: 1;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.btn-solid {
  background-color: var(--teal-700);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-solid:hover {
  background-color: var(--teal-800);
  color: var(--white);
}
.btn-play {
  color: var(--gray-900);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.play-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  flex: 1;
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 80%; /* aspect ratio */
}
.hero-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* organic blob */
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}
.hero-annotation {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--teal-800);
  transform: rotate(-10deg);
}

/* Metrics Section */
.metrics-section {
  background: var(--teal-900);
  padding: 4rem 5%;
  border-radius: 20px;
  margin: 0 2%;
  position: relative;
  overflow: hidden;
}
/* Dotted background using CSS radial gradient */
.metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}
.metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}
.metric-item {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 1rem;
}
.metric-item:last-child {
  border-right: none;
}
.metric-icon {
  margin-bottom: 1rem;
  opacity: 0.8;
}
.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.metric-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.metric-desc {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Mission Section */
.mission-section {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.mission-visual {
  flex: 1;
}
.mission-visual img {
  width: 100%;
  border-radius: 30% 70% 50% 50% / 50% 40% 60% 50%;
  box-shadow: -20px 20px 0 var(--teal-50), 0 30px 60px rgba(0,0,0,0.1);
}
.mission-content {
  flex: 1;
}
.mission-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.mission-content > p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.mission-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-item i {
  color: var(--teal-600);
  width: 24px;
  height: 24px;
  margin-bottom: 1rem;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 5%;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-content {
  flex: 1;
}
.testimonial-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.testimonial-content > p {
  color: var(--gray-600);
  margin-bottom: 3rem;
}
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}
.quote-icon {
  color: var(--teal-600);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-900);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--gray-900);
}
.author-info p {
  font-size: 0.85rem;
  color: var(--teal-600);
  font-weight: 600;
}
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.2s;
}
.control-btn:hover {
  background: var(--teal-50);
  color: var(--teal-700);
}
.dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
}
.dot.active {
  background: var(--teal-600);
}
.testimonial-visual {
  flex: 1;
  position: relative;
}
.testimonial-visual img {
  width: 100%;
  border-radius: 20px 100px 20px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.testimonial-annotation {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(5deg);
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}
.testimonial-play {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--teal-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Form Section */
.partner-section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}
.partner-content {
  flex: 1;
}
.partner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.partner-content > p {
  color: var(--gray-600);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.partner-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.partner-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon-box {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
}
.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}
.feature-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.partner-form-wrapper {
  flex: 1;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}
.partner-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.partner-form-wrapper p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px var(--teal-50);
}
.btn-submit {
  width: 100%;
  background: var(--teal-600);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: var(--teal-700);
}

/* CTA Section */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 5%;
  color: white;
  margin-top: 2rem;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(4,47,46,0.9) 0%, rgba(4,47,46,0.4) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.cta-badge {
  color: var(--teal-50);
}
.cta-badge::before {
  background-color: var(--teal-50);
}
.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.cta-annotation {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: rotate(-15deg);
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.cta-actions .btn-play {
  color: white;
}
.cta-actions .play-icon {
  background: transparent;
  border: 2px solid white;
}

@media (max-width: 992px) {
  .hero-section, .mission-section, .testimonial-section, .partner-section {
    flex-direction: column;
    gap: 3rem;
  }
  .hero-visual, .mission-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-item:nth-child(2) {
    border-right: none;
  }
  .metric-item {
    margin-bottom: 2rem;
  }
  .cta-annotation {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .mission-features {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metric-item {
    border-right: none;
  }
  .outreach-h1 {
    font-size: 2.5rem;
  }
  .hero-section {
    padding-top: 2rem;
  }
}
