/* CSS Variables - Same as React version */
:root {
  --primary: #3A6B35;
  --primary-foreground: #ffffff;
  --secondary: #D4B483;
  --secondary-foreground: #1a1a1a;
  --accent: #4CA1AF;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #717182;
  --border: rgba(0, 0, 0, 0.1);
  --input-background: #f9f9f9;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* Lato Font Face Declarations */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-light.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/lato-black.ttf') format('truetype');
}

html {
  font-size: 16px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  position: relative;
  overflow: visible;
}

.top-bar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.top-bar-link:hover::after {
  width: calc(100% - 1.5rem);
}

.top-bar-link:hover {
  color: white;
}

.top-bar-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.top-bar-link:hover i {
  transform: scale(1.1);
}

.top-bar-link span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Navigation */
.nav {
  background-color: white;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-lg);
}

@media (min-width: 769px) {
  .nav {
    top: 0;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: brightness(1.1);
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.btn-nav {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  margin-left: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-nav:hover::before {
  width: 300px;
  height: 300px;
}

.btn-nav span {
  position: relative;
  z-index: 1;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

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

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn:hover span {
  background-color: var(--primary);
}

.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu-open .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  text-align: left;
}

.mobile-menu-open .nav-link:hover {
  background-color: var(--muted);
}

.mobile-menu-open .btn-nav {
  width: 100%;
  text-align: center;
  margin-left: 0;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero {
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  color: white;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

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

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 42rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 42rem;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.375rem;
    margin-bottom: 3rem;
  }
}

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

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 10px 25px rgba(58, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: rgba(58, 107, 53, 0.95);
  box-shadow: 0 15px 35px rgba(58, 107, 53, 0.4);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-full {
  width: 100%;
}

/* Sections - moved to About Section */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

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

/* About Section */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-muted {
  background: linear-gradient(to bottom, var(--muted) 0%, rgba(245, 245, 245, 0.5) 100%);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrapper {
  position: relative;
  order: 2;
}

@media (min-width: 768px) {
  .about-image-wrapper {
    order: 1;
  }
}

.about-image-container {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image-container {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-decor {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(212, 180, 131, 0.4);
  display: none;
  z-index: -1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 768px) {
  .about-decor {
    display: block;
  }
}

.about-content {
  order: 1;
}

@media (min-width: 768px) {
  .about-content {
    order: 2;
  }
}

.about-content .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.about-content .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.about-content .text-lg {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.about-content .text-lg:last-of-type {
  margin-bottom: 0;
}

.philosophy-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(58, 107, 53, 0.05), rgba(76, 161, 175, 0.05));
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-box:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.philosophy-box p {
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(58, 107, 53, 0.1);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(58, 107, 53, 0.1), rgba(76, 161, 175, 0.1));
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-value {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(58, 107, 53, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.75rem;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

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

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

.form-group label {
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  background-color: var(--input-background);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--foreground);
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.checkbox-label span {
  flex: 1;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: var(--accent);
}

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

.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(58, 107, 53, 0.05), transparent);
  transition: left 0.5s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(58, 107, 53, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 1.5rem;
}

.contact-info-card:hover .contact-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.contact-info-card h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.contact-info-card p {
  color: var(--muted-foreground);
}

.btn-route-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-route-small:hover {
  background-color: rgba(58, 107, 53, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-route-small i {
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .contact-info-card > div:last-child {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .btn-route-small {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}

.contact-map {
  height: 16rem;
  background: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.google-map.loaded {
  display: block !important;
}

@media (max-width: 640px) {
  .map-address {
    flex-direction: column;
    align-items: stretch;
  }
  
  .map-address-content {
    min-width: auto;
  }
  
  .btn-route {
    width: 100%;
    justify-content: center;
  }
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: none;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .contact-map {
    height: 20rem;
  }
  
  .google-map {
    min-height: 20rem;
  }
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(58, 107, 53, 0.2), rgba(76, 161, 175, 0.2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-placeholder.hidden {
  display: none;
}

.map-icon {
  font-size: 3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-icon i {
  font-size: 3rem;
}

.map-placeholder p {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(58, 107, 53, 0.95) 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-company {
  position: relative;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-description {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 90%;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  position: relative;
}

.footer-links a i {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-contact li i {
  margin-top: 0.25rem;
  font-size: 1rem;
  opacity: 0.9;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-contact li span,
.footer-contact li a {
  flex: 1;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal span {
  opacity: 0.5;
}

/* Stats Section Large */
.stats-section {
  background: white;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid-large {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat-item-large {
  padding: 2rem;
  position: relative;
}

.stat-icon-wrapper {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgba(58, 107, 53, 0.1), rgba(76, 161, 175, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.stat-item-large:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.stat-icon-wrapper i {
  font-size: 2rem;
}

.stat-value-large {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .stat-value-large {
    font-size: 4.5rem;
  }
}

.stat-label-large {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .stat-label-large {
    font-size: 1.125rem;
  }
}

/* Vision & Values Section */
.vision-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, white 0%, var(--muted) 100%);
}

@media (min-width: 768px) {
  .vision-section {
    padding: 8rem 0;
  }
}

.vision-content {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vision-header .section-title {
  margin-bottom: 2rem;
}

.vision-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--foreground);
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.vision-intro strong {
  color: var(--primary);
  font-weight: 700;
}

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

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--primary);
}

.value-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-large i {
  font-size: 3.5rem;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 107, 53, 0.9), rgba(76, 161, 175, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 3rem;
}

.project-overlay i {
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-overlay i {
  transform: scale(1);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-image {
  cursor: pointer;
}

/* Project Modal */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
  overflow: auto;
}

.project-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.project-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.project-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-modal-close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.project-modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-modal-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .project-modal-content {
    max-width: 95%;
    padding: 1rem;
  }
  
  .project-modal-close {
    top: -30px;
    font-size: 2rem;
  }
  
  .project-modal-title {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section Main */
.cta-section-main {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(58, 107, 53, 0.9) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section-main {
    padding: 8rem 0;
  }
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta-text {
    font-size: 1.375rem;
  }
}

.cta-section-main .btn-primary {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section-main .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

/* Stagger animation delays */
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.fade-in-up:nth-child(6) { transition-delay: 0.6s; }

.fade-in-up.visible:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up.visible:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up.visible:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up.visible:nth-child(4) { transition-delay: 0.4s; }
.fade-in-up.visible:nth-child(5) { transition-delay: 0.5s; }
.fade-in-up.visible:nth-child(6) { transition-delay: 0.6s; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 1rem;
  transform: translateY(100%);
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.4s ease;
  border-top: 3px solid var(--primary);
  border-radius: 1rem 1rem 0 0;
  max-width: 24rem;
  width: calc(100% - 2rem);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

@media (min-width: 768px) {
  .cookie-banner {
    max-width: 28rem;
    right: 1.5rem;
  }
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.collapsed {
  transform: translateY(calc(100% - 20px));
  cursor: pointer;
}

.cookie-banner.collapsed .cookie-banner-content {
  display: none;
}

.cookie-banner.collapsed .cookie-banner-toggle {
  display: flex;
}

.cookie-banner-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 20px;
}

.cookie-banner-toggle:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
  border-color: rgba(58, 107, 53, 0.15);
}

.cookie-banner-toggle i,
.cookie-banner-toggle span {
  display: none;
}

.cookie-banner-content {
  padding: 1rem 1.25rem;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    padding: 1.25rem 1.5rem;
  }
}

.cookie-banner-header {
  margin-bottom: 0.75rem;
}

.cookie-banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-title i {
  font-size: 1.1rem;
}

.cookie-banner-description {
  color: #3a3a4a;
  line-height: 1.4;
  font-size: 0.8rem;
  margin: 0;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.cookie-option {
  flex: 1;
}

.cookie-option-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 22px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--primary);
}

.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

.cookie-switch input:disabled + .cookie-slider {
  background-color: var(--primary);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option-info {
  flex: 1;
}

.cookie-option-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.cookie-option-info p {
  font-size: 0.7rem;
  color: #3a3a4a;
  line-height: 1.3;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .cookie-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.cookie-btn-reject,
.cookie-btn-accept,
.cookie-btn-accept-all {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 0.5rem;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--muted-foreground);
  border: 2px solid var(--border);
}

.cookie-btn-reject:hover {
  background-color: var(--muted);
  border-color: var(--muted-foreground);
}

.cookie-banner-footer {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.cookie-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Utility Classes */
.hidden {
  display: none;
}

@media (max-width: 767px) {
  .mobile-menu-open .nav-menu {
    display: flex;
  }
}



