* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scroll Animation */
.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);
}

:root {
  --sage-green: #8B9A7A;
  --dark-green: #6B7A5A;
  --bg-main: #d8e0c9;
  --text-primary: #152c15;
  --text-light: #4a5a4a;
}

html {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.nav {
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(216, 224, 201, 0.85);
  border-bottom: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  transition: color 0.3s ease;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-green);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a:hover {
  color: var(--sage-green);
  background: rgba(139, 154, 122, 0.08);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  background: var(--text-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.btn-login i {
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 154, 122, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-left: 1.5rem;
  width: fit-content;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--sage-green);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  margin: 0;
}

.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sage-green);
  display: block;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-cta i {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.hero-cta-primary {
  background: var(--text-primary);
  color: white;
}

.hero-cta-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.hero-cta-primary:hover i {
  transform: translateX(4px);
}

.hero-cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(139, 154, 122, 0.3);
}

.hero-cta-secondary:hover {
  background: rgba(139, 154, 122, 0.1);
  border-color: var(--sage-green);
  transform: translateY(-2px);
}

.hero-cta-secondary:hover i {
  transform: translateX(4px);
}

.hero-image {
  width: 100%;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero-image-wrapper:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22);
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 154, 122, 0.08) 0%, rgba(107, 122, 90, 0.03) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-image-wrapper:hover .hero-image-overlay {
  opacity: 1;
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper:hover .hero-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.25);
}

/* Our Story Section */
.story-section {
  background: var(--text-primary);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 154, 122, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107, 122, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.story-intro {
  margin-bottom: 5rem;
  max-width: 800px;
}

.story-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d0e497;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-left: 1.5rem;
}

.story-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: #d0e497;
}

.story-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}

.story-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-paragraph {
  font-size: 1.125rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.story-paragraph strong {
  color: white;
  font-weight: 600;
}

.story-paragraph em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #d0e497;
  font-weight: 400;
}

.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 1rem 0;
  width: fit-content;
  position: relative;
}

.story-cta i {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.story-cta:hover {
  color: #d0e497;
  gap: 1rem;
}

.story-cta:hover i {
  transform: translateX(4px);
}

.story-cta::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d0e497, var(--sage-green));
  transition: width 0.3s ease;
}

.story-cta:hover::after {
  width: 100%;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.services-intro {
  margin-bottom: 5rem;
  max-width: 800px;
}

.services-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage-green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-left: 1.5rem;
}

.services-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--sage-green);
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(135deg, rgba(139, 154, 122, 0.05) 0%, rgba(107, 122, 90, 0.02) 100%);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 154, 122, 0.15);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green), var(--dark-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(21, 44, 21, 0.12);
  border-color: rgba(139, 154, 122, 0.2);
}


.service-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(21, 44, 21, 0.04);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-number {
  color: rgba(139, 154, 122, 0.15);
  transform: scale(1.1);
}

.service-icon-wrapper {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 154, 122, 0.1) 0%, rgba(107, 122, 90, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--sage-green);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: white;
  box-shadow: 0 8px 24px rgba(139, 154, 122, 0.2);
}

.service-card:hover .service-icon::after {
  opacity: 0.1;
}

.service-name {
  font-size: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 0.75rem 0;
  width: fit-content;
}

.service-cta i {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.service-cta:hover {
  color: var(--sage-green);
  gap: 1rem;
}

.service-cta:hover i {
  transform: translateX(4px);
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-green);
  transition: width 0.3s ease;
}

.service-cta:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.btn-primary {
  background: var(--text-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid #c5d5ad;
}

.btn-outline:hover {
  background: #c5d5ad;
  border-color: #c5d5ad;
  color: var(--text-primary);
}

/* Statistics Section */
.stats {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1.2px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stats-cta p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.contact h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  color: #d0e497;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #d0e497;
}

.footer-section p {
  opacity: 0.85;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s;
  opacity: 0.85;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    padding: 6rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-intro {
    align-items: center;
  }

  .hero-label {
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-description {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }


  .stats-grid {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(216, 224, 201, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid rgba(21, 44, 21, 0.06);
  }

  .nav-right.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .btn-login {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero-container {
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .story-section {
    padding: 5rem 0;
  }

  .story-container {
    padding: 0 1.5rem;
  }

  .story-intro {
    margin-bottom: 3rem;
  }

  .story-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }


  .services-section {
    padding: 5rem 0;
  }

  .services-container {
    padding: 0 1.5rem;
  }

  .services-intro {
    margin-bottom: 3rem;
  }

  .services-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem;
    min-height: auto;
  }

  .service-number {
    font-size: 3rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .services-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-tab {
    min-height: 250px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}

