@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Helvetica Neue";
  src:
    url("fonts/HelveticaNeue.woff2") format("woff2"),
    url("fonts/HelveticaNeue.woff") format("woff");
}

:root {
  --primary-color: #000000; /* Deep Forest Green from Logo */
  --accent-color: #000000; /* Lighter Green for Icon */
  --text-color: #000000;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --yellow: #ffc745;
  --text-gradient: to right, #f7c709, #ff914d;
  --main-gradient: linear-gradient(to right, #fdcf02, #ff6200);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

/* --- Header & Nav Styles --- */
header {
  width: 100%;
  background-color: var(--white);
  padding: 1.5rem 5%;
  position: fixed;
  z-index: 100;
  top: 0;
}
.logo {
  height: 50px;
  width: 80px;
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
html,
body {
  overscroll-behavior: none;
  font-family: "Helvetica Neue";
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.select {
  color: #030303;
}

.logo-icon {
  color: var(--accent-color);
  font-size: 2rem;
}

.logo-text {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--accent-color);
}

.dropdown-icon {
  font-size: 0.8rem;
  margin-left: 4px;
  color: var(--accent-color);
}

/* --- CTA Button --- */
.cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid var(--text-color);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  border: 1.5px solid var(--main-gradient);
  background: var(--main-gradient);
  color: var(--white);
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 70%;
    height: 100vh;
    padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  /* Hamburger Animation to X */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cta-button {
    display: none; /* Hide in main nav for mobile, often moved inside menu */
  }
}

/* --- Hero Styles --- */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
   url('https://assets-global.website-files.com/6364b3839895890bb2c275a4/637c968f29ea9311ebabc6f9_home-banner-image.jpg?scale-down-to=2048&width=2662&height=1776') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 80px; /* Accounts for fixed header */
  z-index: 1;
  padding: 1.5rem 5%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 3.7vw, 4.5rem); /* Fluid typography */
  color: var(--text-color);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
  font-family: "Helvetica Neuex`";
}

.gradient-text {
  background: linear-gradient(to right, #fd9002, #fb2828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 .highlight {
  opacity: 0.9;
  text-align: left;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.85;
  font-weight: 400;
}

/* --- Custom Pill Button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--main-gradient);
  color: white;
  padding: 8px 25px 8px 8px; /* Extra padding on right */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 10px 20px rgb(248 154 0 / 73%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #000000;
}

.btn-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-primary i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .hero {
    text-align: left;
    justify-content: center;
    background-position: 50% center; /* Shift image to show people better on mobile */
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    padding: 10px 30px;
  }

  .btn-avatar {
    display: none; /* Simplify for very small screens if preferred */
  }
}

/* --- Section 3 Styles --- */
.mission {
  padding: 50px 5%;
  background-color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
}
.underline {
  text-decoration: underline;
}
.mission .container {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.mission-badge {
  background: var(--main-gradient); /* Light sage tint */
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.bold {
  font-family: "poppins";
  font-weight: bold;
}
.mission-text {
  font-size: clamp(1.8rem, 4vw, 2.1rem);
  color: var(--text-color);
  line-height: 1.3;
  font-weight: 500;
  margin: 10px 0;
  letter-spacing: -2px;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stars {
  color: var(--main-gradient); /* Sage Green */
  font-size: 0.9rem;
}

.review-count {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

/* --- Secondary Button Style --- */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--main-gradient);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 15px;
  letter-spacing: -1px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-icon {
  margin-bottom: 2px;
}

/* --- Scroll Animation Classes --- */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Tweak --- */
@media (max-width: 768px) {
  .mission {
    padding: 60px 7%;
  }
  .reveal-section.active {
    padding-top: 72px;
  }
  .mission-text {
    font-size: 1.6rem;
  }
}

/* --- Section 4 Styles --- */
.services-grid {
  padding: 30px 5% 100px;
  background-color: var(--white);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.card-image {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .card-image {
  transform: scale(1.08);
}

/* --- The Floating Info Box --- */
.card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.info-text h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-text p {
  color: #666;
  font-size: 0.7rem;
}

/* --- Arrow Circle --- */
.info-arrow {
  width: 45px;
  height: 45px;
  background: var(--main-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.info-arrow.alt-color {
  background-color: orange;
}

.service-card:hover .info-arrow {
  transform: rotate(-45deg);
}

/* --- Responsive Breaks --- */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    aspect-ratio: 16 / 10;
  }

  .info-text h3 {
    font-size: 1.2rem;
  }
}

.case-studies {
  padding: 100px 5%;
  background-color: #fcfdfc;
  /* Dotted World Map Background Pattern */
  background-image: url("https://framerusercontent.com/images/3ZMiVuxkPwCsgfpV1vlAX0RzHoA.png?scale-down-to=2048&width=5156&height=1678");
  position: relative;
}

.case-container {
  max-width: 1400px;
  margin: 0 auto;
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.case-info {
  max-width: 600px;
}

.badge-pill {
  background: var(--main-gradient);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
}

.case-info h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 20px;
  line-height: 1.2;
}

/* --- Slider Buttons --- */
.slider-controls {
  display: flex;
  gap: 15px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.control-btn.active-btn {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.control-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* --- Testimonial Cards --- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: var(--yellow);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
}

.user-role {
  font-size: 0.85rem;
  color: #888;
}

.read-more {
  align-self: flex-start;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  background: var(--main-gradient);
  color: white;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- CTA Section Styles --- */
.contact-cta {
  padding: 80px 5%;
  background-color: var(--white);
}

.cta-card {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #000000; /* Match the dark green in image */
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  min-height: 550px;
}

/* Left Side */
.cta-left {
  flex: 1.2;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  letter-spacing: -1px;
}

.badge-pill-light {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.cta-left h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 500px;
}

.cta-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 450px;
}

/* Button Style */
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--main-gradient);
  color: white;
  padding: 8px 25px 8px 8px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-pill-white:hover {
  transform: translateY(-3px);
}

.pill-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* Right Side */
.cta-right {
  flex: 1;
  padding: 20px;
}

.cta-img-container {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.cta-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.contact-cta.active .cta-main-img {
  transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .cta-left {
    padding: 50px;
  }
}

@media (max-width: 850px) {
  .cta-card {
    flex-direction: column;
  }

  .cta-left {
    padding: 60px 40px;
    text-align: left;
    align-items: center;
  }

  .cta-left h2 {
    max-width: 100%;
  }

  .cta-right {
    height: 400px;
  }
}

/* Animation Delays */
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* --- Wellness Feature Styles --- */
.wellness-feature {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.parallax-img {
  width: 100%;
  height: 110%; /* Extra height for scroll effect */
  object-fit: cover;
  filter: brightness(0.9);
}

.feature-container {
  padding: 0 5%;
  width: 100%;
}

.floating-card {
  background: white;
  padding: 60px;
  border-radius: 40px;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.floating-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-color);
  line-height: 1.2;
}

.text-accent {
  color: var(--yellow);
  opacity: 0.9;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 500;
}

.feature-checklist i {
  color: var(--yellow);
  font-size: 1.2rem;
}

/* Button Style to match image */
.btn-primary-sage {
  display: inline-flex;
  align-items: center;

  gap: 12px;
  background: var(--main-gradient); /* Sage Green */
  color: rgb(255, 255, 255);
  padding: 8px 25px 8px 8px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.btn-primary-sage:hover {
  background-color: #000000;
  transform: translateY(-3px);
  color: white;
}

/* --- Animations --- */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.active .slide-in-left {
  opacity: 1;
  transform: translateX(0);
  letter-spacing: -0.75px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .wellness-feature {
    min-height: auto;
    flex-direction: column;
    padding: 0;
  }

  .feature-bg {
    position: relative;
    height: 400px;
    z-index: 1;
  }

  .floating-card {
    margin: -60px auto 60px;
    width: 90%;
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    text-align: center;
    align-items: center;
    text-align: left;
  }

  .feature-checklist {
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .floating-card h2 {
    font-size: 1.6rem;
  }
}

/* --- Footer Base Styles --- */
.site-footer {
  padding: 30px 5%;
  background: linear-gradient(to bottom, #f8faff, #ffffff);
  font-family: "Inter", sans-serif;
}

.footer-card {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #f0f0f0;
}

/* --- Logo & Newsletter --- */
.footer-brand-area {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.sun-logo {
  width: 30px;
  height: 30px;
}
.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.newsletter-wrap p {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer-subscribe {
  display: flex;
  background: #f4f7f6;
  padding: 5px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.footer-subscribe:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px #1a1a1a;
}

.footer-subscribe input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 20px;
  outline: none;
  font-size: 0.9rem;
}

.footer-subscribe button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.footer-subscribe button:hover {
  background: #333;
}

.privacy-note {
  font-size: 0.75rem !important;
  color: #888 !important;
  line-height: 1.4;
  font-weight: 400 !important;
}

/* --- Links Grid --- */
.footer-links-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.link-group h4 {
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.link-group a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--yellow); /* Our theme accent color */
}

/* --- Footer Bottom --- */
.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: #000000;
  font-size: 0.85rem;
}

/* --- Responsive Logic --- */
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand-area {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 650px) {
  .footer-card {
    padding: 40px 25px;
    border-radius: 30px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-subscribe {
    flex-direction: column;
    background: transparent;
    gap: 10px;
  }
  .footer-subscribe input {
    background: #f4f7f6;
    border-radius: 50px;
  }
}

/* --- Styles for Socials & Address --- */
.social-icons-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f7f6;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icons-row a:hover {
  background: var(--yellow);
  color: rgb(0, 0, 0);
  transform: translateY(-3px);
}

.address-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #454545;
  margin-bottom: 15px;
  text-align: left;
}

.contact-details a {
  display: block;
  font-size: 0.85rem !important;
  color: #000000 !important;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.legal-links a:hover {
  color: #1a3a3a;
}

/* --- Responsive Fix --- */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-wrap {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .social-icons-row {
    justify-content: center;
  }
  .office-col {
    text-align: center;
  }
}

/* --- Styles for About Hero --- */
.about-hero-section {
  padding: 140px 5% 100px;
  background-color: #fdfdfd;
  overflow: hidden;
}

.about-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-hero-content {
  flex: 1;
  max-width: 550px;
}

.about-hero-content h1 {
  font-family: "Helvetica Neue";
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #000000; /* Calvio Dark Green */
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 600;
}

.about-hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}

/* Image Styling with Rounded Corners per Screenshot */
.about-hero-image-wrapper {
  flex: 1;
  height: 550px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Triggered by JS or on Load */
.reveal-active .fade-up,
.reveal-active .fade-in-right {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-hero-image-wrapper {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding-top: 100px;
  }
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* --- Trust Section Styles --- */
.about-trust {
  padding-top: 110px;
  padding-bottom: 100px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -1px;
}

.text-center {
  text-align: center;
}

.container-small {
  max-width: 1000px;
  margin: 0 auto;
}

/* Subtle Badge Styling */
.badge-pill-subtle {
  background-color: #fdffc8; /* Very light sage */
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 30px;
}

/* Main Typography */
.trust-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #000000;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Sage Green Highlight */
.text-sage {
  color: var(--text-gradient);
  font-weight: 500;
}

/* --- Animations --- */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.active .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

/* --- Responsive Adaptations --- */
@media (max-width: 768px) {
  .about-trust {
    padding: 20px 5%;
  }
  .trust-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .badge-pill-subtle {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}

/* --- Team Section Styles --- */
.about-team {
  padding: 0px 5% 70px;
  background-color: #ffffff;
}

.team-dark-container {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #000000; /* Dark Forest Green */
  border-radius: 40px;
  padding: 80px 40px 145px; /* Bottom padding 0 to let cards hang out */
  text-align: center;
  position: relative;
  letter-spacing: -0.6px;
}

.team-header {
  max-width: 800px;
  margin: 0 auto 60px;
  color: white;
}

.badge-pill-outline {
  border: 1px solid var(--main-gradient);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 25px;
  color: var(--main-gradient);
}

.team-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.team-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

.team-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-size: 0.95rem;
}

.team-features i {
  color: orange;
  margin-right: 5px;
}

/* Team Cards Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: -100px; /* Pulls cards down outside container */
  position: relative;
  z-index: 2;
}

.expert-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.4s ease;
}

.expert-card:hover {
  transform: translateY(-15px);
}

.expert-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-info {
  padding: 25px;
}

.expert-role {
  font-size: 0.85rem;
  color: orange;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.expert-info h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.active .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .team-features {
    flex-direction: column;
    gap: 15px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-dark-container {
    padding: 60px 20px 0px;
  }
}

/* --- Mission Section Layout --- */
.about-mission {
  padding: 100px 5%;
  background-color: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Large Image Backdrop */
.mission-image-container {
  grid-column: 1 / 10; /* Image takes up first 9 columns */
  height: 600px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}

.mission-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating White Card */
.mission-float-card {
  grid-column: 7 / 13; /* Card overlaps from col 7 to the end */
  background: white;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  z-index: 2;
  margin-left: -50px; /* Subtle pull into the image */
}

/* Typography & Accents */
.badge-pill-light {
  background: var(--main-gradient);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
  display: inline-block;
}

.mission-float-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #1a3a3a;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.text-sage {
  color: #ffc745;
}

.mission-float-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 35px;
}

/* Dark Button Style per Screenshot */
.btn-pill-green-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #76a08a;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-pill-green-dark:hover {
  background-color: #1a3a3a;
  transform: translateY(-3px);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.active .fade-up {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mission-float-card {
    grid-column: 6 / 13;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    display: flex;
    flex-direction: column;
  }

  .mission-image-container {
    width: 100%;
    height: 350px;
    border-radius: 30px;
    margin-bottom: -60px; /* Overlap on mobile */
  }

  .mission-float-card {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 30px;
  }

  .mission-float-card h2 {
    font-size: 1.6rem;
  }
}
/* --- Layout Container --- */
.contact-form-section {
  padding: 100px 5% 150px;
  background-color: #ffffff;
}

.form-bg-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--main-gradient); /* Exact Dark Green from your image */
  border-radius: 40px;
  padding: 80px 40px 0; /* Bottom padding 0 to allow overlap */
  text-align: center;
  position: relative;
}

.form-header {
  max-width: 700px;
  margin: 0 auto 50px;
  color: white;
}

.badge-pill-outline {
  border: 1px solid rgb(255, 255, 255);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  display: inline-block;
  margin-bottom: 20px;
}

.form-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 15px;
  line-height: 1.2;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Floating Form Card --- */
.floating-form-card {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
  margin-bottom: -100px; /* Overlap effect */
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  grid-column: span 3;
}

.input-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

.input-field input,
.input-field select,
.input-field textarea {
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
  color: #333;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
  border-color: #76a08a;
  box-shadow: 0 0 0 3px rgba(118, 160, 138, 0.1);
}

/* --- Submit Button --- */
.form-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-sage-submit {
  background: var(--main-gradient);
  color: white;
  border: none;
  padding: 14px 45px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-sage-submit:hover {
  background-color: #1a3a3a;
  transform: translateY(-3px);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .full-width {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .floating-form-card {
    padding: 30px 20px;
  }
  .contact-form-section {
    padding-bottom: 80px;
  }
}
@media screen {
  .form-bg-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000; /* Exact Dark Green from your image */
    border-radius: 40px;
    padding: 40px 10px 100px; /* Bottom padding 0 to allow overlap */
    text-align: center;
    position: relative;
  }
}

.product-section {
  padding: 0px 5%;
  background-color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  color: var(--product-green);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.product-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.view-btn {
  background: var(--product-green);
  color: var(--white);
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.view-btn {
  background: var(--main-gradient);
}

.details-container {
  max-width: 1100px;
  margin: 150px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 5%;
}

.details-image img {
  width: 100%;
  border-radius: 20px;
  background: #f9f9f9;
  padding: 40px;
}
details-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.details-content h1 {
  color: var(--primary-color);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.details-content .price-tag {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.details-content .full-desc {
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.enquire-btn {
  background: var(--main-gradient);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.enquire-btn:hover {
  background: var(--main-gradient);
}

@media (max-width: 768px) {
  .details-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* --- VISION & MISSION STYLES --- */
.about-vm-section {
  font-family: "Helvetica Neue";
  padding: 40px 3%;
  background-color: #fff;
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.vm-row {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 70px;
}

.vm-row.reverse {
  flex-direction: row;
}

.vm-image {
  flex: 1;
  border-radius: 30px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

.vm-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.vm-text {
  flex: 1;
}

.vm-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
  line-height: -1px;
}

.vm-text p {
  font-family: Helvetica;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 30px;
}

/* Button Gradient: Yellow to Reddish-Orange  */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(to right, #ffb81c, #ff6b52);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s ease;
  font-family: Helvetica;
  letter-spacing: -1px;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
  .vm-row,
  .vm-row.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .vm-text h2 {
    font-size: 2rem;
  }

  .vm-image {
    width: 100%;
    order: -1; /* Keeps image on top for mobile */
  }
  .mission-text1 {
    display: none;
  }
}

.mission-text1 {
  text-align: center;
  font-family: Helvetica;
  font-size: 3.5rem;
  letter-spacing: -2px;
  background: var(--main-gradient);
  color: white;
  margin: 2vw 0;
}
/* --- WHATSAPP BUTTON STYLES --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00A800; /* Exact Green from Akuracia Product Screenshot */
    color: #FFF;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 168, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    font-size: 14px;
}

.whatsapp-float:hover {
    background-color: #1A3A3A; /* Brand Deep Forest Green */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #FFF;
}

/* On very small screens, hide the text to keep it a simple circle */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float span {
        display: none;
    }
}