:root {
  /* Color Palette - Calm, Nature-Inspired */
  --primary-green: #2d5a4a;
  --primary-green-light: #4a8a6f;
  --accent-green: #6ba88f;
  --accent-green-light: #8bc4a8;
  --primary-blue: #5a7d8c;
  --accent-blue: #7ba3b5;
  --cream: #f4f1ea;
  --cream-dark: #e8e4d8;
  --white: #ffffff;
  --text-dark: #2c3e3a;
  --text-medium: #5a6b67;
  --text-light: #8a9995;
  --border-light: #d4d0c8;

  /* Typography */
  --font-display: "Crimson Pro", serif;
  --font-body: "DM Sans", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(45, 90, 74, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 90, 74, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 90, 74, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  max-width: 1200px;
  margin-left: 7rem;
  padding: 0 1rem;
}

/* Mobile devices */
@media (max-width: 768px) {
  .container-fluid {
    margin-left: 0;
    max-width: 100%;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-medium);
  font-weight: 400;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.contact-btn {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
}

.nav-link.contact-btn::after {
  display: none;
}

.nav-link.contact-btn:hover {
  background-color: var(--primary-green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-light) 100%
  );
  color: var(--white);
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 5.5rem;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Full hero background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./HeroImage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 90, 74, 0.75) 0%,
    rgba(45, 90, 74, 0.4) 45%,
    rgba(45, 90, 74, 0.2) 100%
  );
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--accent-green-light) 100%
  );
  opacity: 0.15;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  border: 1px solid blue;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeInUp 1s ease-out;
}

/* Full hero: single column, content over image */
.hero-full-image .hero-content {
  grid-template-columns: 1fr;
  border: 1px solid red;
}

.hero-full-image .hero-title,
.hero-full-image .hero-subtitle,
.hero-full-image .detail-item span {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-full-image .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.hero-full-image .title-accent {
  color: var(--accent-green-light);
}

.hero-full-image .detail-icon {
  color: var(--accent-green-light);
}

.hero-full-image .btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: var(--white);
}

.hero-full-image .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-accent {
  color: var(--accent-green);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.detail-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  font-family: var(--font-body);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-light)
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

/* Our Home Care Services */
.home-services {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.home-service-card {
  background-color: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.home-service-image {
  height: 200px;
  overflow: hidden;
}

.home-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.home-service-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.home-service-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.home-service-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.home-service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.home-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.btn-learn {
  align-self: flex-start;
  margin-top: auto;
}

/* How It Works */
.how-it-works {
  padding: var(--spacing-2xl) 0;
  background-color: var(--cream);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-green);
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.step-arrow svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
  opacity: 0.6;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  color: #e6b800;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.95rem;
}

/* Who We Serve */
.who-we-serve {
  padding: var(--spacing-2xl) 0;
  background-color: var(--cream);
}

/* Who We Serve */
.who-we-serve {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.serve-card {
  background-color: var(--cream);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.serve-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.serve-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.serve-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Why Choose Us */
.why-choose {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(to bottom, var(--white), var(--cream));
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.why-item svg {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 4px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

.why-image .image-frame {
  border-radius: 20px;
}

/* Services Page */
.services-page {
  padding: var(--spacing-2xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-green-light);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-light)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.service-disclaimer {
  background-color: var(--cream-dark);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-green);
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.service-disclaimer svg {
  width: 28px;
  height: 28px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-disclaimer p {
  color: var(--text-dark);
  line-height: 1.8;
}

.service-disclaimer strong {
  color: var(--primary-green);
}

/* About Page */
.about-page {
  padding: var(--spacing-2xl) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-image .image-frame {
  position: relative;
}

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 1.05rem;
}

.values-section {
  background-color: var(--white);
  padding: 4rem;
  border-radius: 20px;
  margin-bottom: 4rem;
}

.values-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.values-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--cream);
  border-radius: 12px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.value-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 4px;
}

.value-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-item strong {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.value-item span {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.approach-text p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach-feature {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.approach-feature svg {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.approach-feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.approach-feature p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Page */
.faq-page {
  padding: var(--spacing-2xl) 0;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-green-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-green);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.faq-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.faq-cta p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-page {
  padding: var(--spacing-2xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-light)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item strong {
  color: var(--primary-green);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent-green);
}

.contact-item span {
  color: var(--text-medium);
  line-height: 1.6;
}

.sub-text {
  font-size: 0.9rem;
  font-style: italic;
}

.contact-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-form-container > p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  justify-content: center;
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-green-light) 100%
  );
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
}

.cta-section .btn-primary:hover {
  background-color: var(--cream);
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-column span {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content,
  .about-content,
  .contact-wrapper,
  .why-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
    .home-services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

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

  .hero-image {
    order: -1;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .services-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition);
    gap: 1rem;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link.contact-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .container {
    padding: 0 1.5rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .logo-name {
    font-size: 1.25rem;
  }

  .service-card,
  .contact-form-container,
  .serve-card {
    padding: 1.75rem;
  }

  .values-section {
    padding: 2rem 1.5rem;
  }
}
