:root {
  /* Theme tuned to green from provided logo */
  --primary: #4caf50; /* Green */
  --primary-dark: #2e7d32; /* Dark green */
  --secondary: #81c784; /* Light green */
  --accent: #a3e635; /* Lime accent */
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #8a8fa3;
  --light-gray: #e6e6f0;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: Poppins, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
nav {
  position: relative;
  background-color: white;
  padding: 6px 2% 6px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 10px;
  position: relative;
}

.logo-container {
  background: white;
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column;
}

.logo img {
  max-width: 380px;
  height: 96px;
  width: auto;
  display: block;
}

.logo-tagline {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  text-align: center;
}

/* Center the logo while keeping the hamburger on the right */
/* Center logo within the header bar */
.nav-container .logo {
  grid-column: 2;
  justify-self: center;
  text-align: center;
}
/* Keep hamburger on the right */
.nav-container .mobile-menu-btn { grid-column: 3; justify-self: end; position: relative; right: 0; top: 0; transform: none; }

.nav-right {
  display: flex;
  align-items: center;
}

.inquires-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  margin-right: 15px;
  font-weight: 500;
}

.start-here {
  text-decoration: underline;
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-btn {
  font-size: 20px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  background: white;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu.active {
  display: block;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: none;
  height: 100vh;
  background: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 40px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4000;
  display: none;
}

.nav-links.active {
  right: 0;
  display: flex !important;
  pointer-events: auto;
}

.nav-links li {
  margin-bottom: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 12px 0;
  cursor: pointer;
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* Desktop styles */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
}

.cta-button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(139, 176, 42, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 176, 42, 0.4);
}

@media (min-width: 768px) {
  .highlight-1 {
    left: 0 !important;
  }
  .highlight-2 {
    right: 0 !important;
  }
  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5000; /* above .nav-overlay (3500) */
  }
  .nav-links.active {
    display: flex;
    right: 0;
  }
  .nav-links a { color: #ffffff; }

  .nav-links li {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .nav-links a {
    position: relative;
    padding: 8px 0;
    color: #ffffff;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .mobile-cta {
    display: none;
  }
}

/* Hero Section */
.hero {
  /* height: 100vh; */
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.92) 0%, rgba(46, 125, 50, 0.96) 100%);
  padding: 0;
}

/* Centered logo overlay for pet page */
.center-logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* allow interactions to pass through */
  z-index: 3;
}
.center-logo-overlay img {
  max-width: min(60vw, 520px);
  height: auto;
  opacity: 0.12; /* subtle watermark effect; adjust as needed */
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  /* font-size: clamp(2.5rem, 5vw, 4.5rem); */
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.typed-text {
  color: white;
  font-weight: 700;
}

.typed-cursor {
  font-size: inherit;
  color: var(--primary);
  opacity: 1;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-secondary-btn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.hero-secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Video Container Styles */
.hero-video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
  height: auto;
  align-self: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  mix-blend-mode: multiply;
}

.plyr--video {
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-video-container {
    max-width: 600px;
    margin: 0 auto;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 0 0;
    padding-top: 20px;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero-subhead {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-secondary-btn,
  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Animated Background Elements */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(60px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation: pulse 8s infinite alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -50px;
  animation: pulse 6s infinite alternate-reverse;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

/* Marketplace Section */
.marketplace-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  color: var(--primary-dark);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

#community .section-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-text {
  font-size: 30px;
  color: #2e7d32;
  margin-bottom: 10px;
  font-weight: 700;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 10px;
}

.marketplace-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.marketplace-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.marketplace-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.marketplace-card:hover::before {
  opacity: 0.05;
}

.marketplace-card h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  word-wrap: anywhere;
}

.marketplace-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.marketplace-card p {
  color: var(--gray);
  font-size: 16px;
}

.marketplace-card .card-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Community Section */
.community-section {
  padding: 1px 5%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  padding-bottom: 10px;
}

.community-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-text {
  flex: 1;
}

.community-image {
  flex: 1;
  position: relative;
  display: flex;
  gap: 20px;
}

.community-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.community-image:hover .community-img {
  transform: perspective(1000px) rotateY(0deg);
}

.community-highlight {
  position: static;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-1 {
  top: -2px;
  left: -50px;
  width: 200px;
  animation: float 4s ease-in-out infinite;
}

.highlight-2 {
  bottom: -20px;
  right: -70px;
  width: 220px;
  animation: float 4s ease-in-out infinite reverse;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
}

.highlight-text {
  font-size: 14px;
  color: var(--gray);
}

.highlight-text strong {
  color: var(--dark);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

/* Process Section */
.process-section {
  padding: 30px 5%;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-title::after {
  background: var(--secondary);
}

.process-section .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  width: 18%;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(139, 176, 42, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-number {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 176, 42, 0.4);
}

.step-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-section {
  padding: 30px 5%;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 15px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: .4s;
  position: relative;
  border: 1px solid rgb(203, 203, 203);
  height: fit-content;

}

.team-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.team-content {
  padding: 20px;
}

.team-name {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.team-name svg {
  fill: #6a8621;
  transition: .4s all;
}

.team-card button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin: 10px 0;
  font-size: 14px;
}
.hidden {
  display: none;
}
.rotate{
  rotate: 180deg;
}
.team-bio {
  color: var(--gray);
  font-size: 14px;
}

/* Testimonials */
.testimonial-section {
  padding: 30px 5%;
  background: linear-gradient(
    135deg,
    rgba(255, 101, 132, 0.03) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.testimonial-slider {
  max-width: 1000px;
  margin: 20px auto 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin: 0 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark);
}

.author-info p {
  font-size: 14px;
  color: var(--gray);
}

.glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.glide__bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.2);
  border: none;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glide__bullet--active {
  background: var(--primary);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  padding: 30px 5%;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-title::after {
  background: var(--white);
}

.cta-section .section-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  max-width: 600px;
  margin: 50px auto 0;
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 176, 42, 0.1);
}

.submit-btn {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
  animation: pulse 8s infinite alternate;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  right: -50px;
  animation: pulse 6s infinite alternate-reverse;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 100px 5% 50px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.state-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.feature-highlights {
  max-width: 400px;
  min-width: 400px;
}

.feature-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding: 10px;
  background-color: rgba(76, 175, 80, 0.08);
  transition: 0.5s all;
}

.feature-item i {
  color: #759324;
  margin-right: 5px;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.goal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.goal-phone {
  display: none;
}
@media (max-width: 600px) {
  .goal-phone {
    display: flex;
    font-size: 17px;
  }
  .goal-desktop {
    display: none;
  }

  .section-text {
    font-size: 22px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 60px;
  }

  .section-title {
    font-size: 42px;
  }

  .process-step {
    width: 16%;
  }
}

@media (max-width: 992px) {
  .nav-container {
    flex-direction: row;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subhead {
    font-size: 18px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5001; /* above overlay (3500) */
    display: none;
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
    display: flex;
    pointer-events: auto;
  }
  .nav-links a { color: #ffffff; }

  .nav-links li {
    margin: 15px 0;
  }

  .hero-image {
    opacity: 0.3;
    right: -100px;
  }

  .community-content {
    flex-direction: column;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    width: 48%;
    margin-bottom: 50px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .feature-highlights {
    min-width: 100%;
  }
  .hero {
    min-height: 300px;
  }

  /* ensure page content starts below fixed header on mobile when needed */
  .mobile-top-offset { padding-top: 120px; }

  .hero h1 {
    font-size: 28px;
    /* min-height: 230px; */
  }

  .typed-cursor { font-size: 36px; }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .marketplace-card {
    padding: 15px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .cta-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
    .community-highlight{
        width: fit-content;
        padding: 10px;
        font-size: 12px;
    }
  nav {
    padding: 12px 2% 2px;
  }
  .logo-container {
    padding: 0;
  }
  .nav-container {
    gap: 0;
    padding: 0;
  }
  .logo img {
    max-width: 280px;
    height: 80px;
  }
  .inquires-text {
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  .inquires-text { font-size: 12px; }

  .hero {
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 324px) {
  .inquires-text {
    font-size: 11px;
  }
}
