/* --- Landing Page Styles --- */

/* Hero Section */
.landing-hero {
  background: linear-gradient(135deg, #035d3e 0%, #024a31 50%, #013d28 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  margin-top: 3.1875rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .landing-hero {
    margin-top: 5.6875rem;
    padding: 8rem 0 7rem;
  }
}
.landing-hero-logo {
  max-width: 320px;
  width: 80%;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.landing-hero-tagline {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buttons */
.landing-btn {
  display: inline-block;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.25s ease;
  margin: 0.375rem;
}
.landing-btn:hover,
.landing-btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.landing-btn-primary {
  background-color: #fff;
  color: #035d3e;
}
.landing-btn-primary:hover,
.landing-btn-primary:focus {
  background-color: #f0f0f0;
  color: #035d3e;
}
.landing-btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.landing-btn-outline:hover,
.landing-btn-outline:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.landing-btn-secondary {
  background-color: #035d3e;
  color: #fff;
}
.landing-btn-secondary:hover,
.landing-btn-secondary:focus {
  background-color: #024a31;
  color: #fff;
}
.landing-btn-light {
  background-color: #fff;
  color: #035d3e;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.landing-btn-light:hover,
.landing-btn-light:focus {
  background-color: #f0f0f0;
  color: #035d3e;
}

/* Section Titles */
.landing-section-title {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
}
.landing-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

/* Services Section */
.landing-services {
  padding: 5rem 0;
  background-color: #fff;
}
.landing-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  padding: 2.5rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.landing-card:hover {
  border-color: #035d3e;
  box-shadow: 0 8px 24px rgba(3, 93, 62, 0.1);
  transform: translateY(-4px);
}
.landing-card-icon {
  font-size: 2.5rem;
  color: #035d3e;
  margin-bottom: 1.25rem;
}
.landing-card h3 {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}
.landing-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.landing-card-link {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #035d3e;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.landing-card-link:hover,
.landing-card-link:focus {
  color: #024a31;
  text-decoration: none;
}

/* About Section */
.landing-about {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.landing-about p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Contact CTA Section */
.landing-cta {
  background: linear-gradient(135deg, #035d3e 0%, #024a31 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.landing-cta h2 {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.landing-cta p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Override intro-header on landing page (no gap at top) */
.landing-hero + .landing-services {
  margin-top: 0;
}

/* --- About Page Styles --- */

.about-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.about-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.about-section-heading {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Team Cards */
.team-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.team-card:hover {
  border-color: #035d3e;
  box-shadow: 0 12px 32px rgba(3, 93, 62, 0.15);
  transform: translateY(-6px);
}
.team-card-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #035d3e;
  background-color: #e8f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Fallback icon when photo is missing */
.team-card-photo::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  color: #035d3e;
  opacity: 0.4;
  position: absolute;
}
.team-card-photo {
  position: relative;
}
.team-card-photo img {
  position: relative;
  z-index: 1;
}
.team-card h4 {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: #222;
}
.team-card-role {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #035d3e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: inline-block;
  background-color: rgba(3, 93, 62, 0.08);
  padding: 0.2rem 0.75rem;
  border-radius: 1rem;
}
.team-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.team-card-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.team-card-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #035d3e;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.team-card-links a:hover,
.team-card-links a:focus {
  background-color: #035d3e;
  color: #fff;
  text-decoration: none;
  transform: scale(1.1);
}

/* Vision Section */
.about-vision {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.about-vision p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
.about-vision p:last-child {
  margin-bottom: 0;
}

/* Contact CTA on About Page */
.about-contact-cta {
  text-align: center;
  padding: 2rem 0 1rem;
}
.about-contact-cta p {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}
