* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-padding-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #2c5f2d;
}

.mobile-menu-toggle {
  display: none;
}

.nav-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav {
  display: none;
}

.nav-desktop a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #5a8f3a;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #5a8f3a;
}

.btn-login {
  background: #2c5f2d;
  color: white !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-login:hover {
  background: #5a8f3a;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c5f2d 0%, #5a8f3a 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.95;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #2c5f2d;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c5f2d;
}

/* Services Section */
.services {
  padding: 50px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 35px;
  color: #2c5f2d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2c5f2d;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  text-align: left;
  color: #666;
}

.service-list li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5a8f3a;
  font-weight: bold;
}

.service-list li.highlight-item {
  font-weight: 700;
  color: #2c5f2d;
}

.service-list li.highlight-item:before {
  content: "★";
  color: #2c5f2d;
  font-size: 12px;
}

.carcass-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e5e7eb;
}

.carcass-section h4 {
  font-size: 16px;
  color: #2c5f2d;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}

.carcass-list {
  list-style: none;
  text-align: left;
  color: #666;
}

.carcass-list li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.carcass-list li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #5a8f3a;
  font-weight: bold;
  font-size: 18px;
}

/* Gallery Section */
.gallery {
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Slider - hover auto-scroll */
.gallery-slider {
  overflow: hidden;
}
.gallery-slider .slider-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.6s ease;
}
.gallery-slider .slider-track img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.gallery-slider:hover .slider-track {
  animation: slideImages 6s ease-in-out infinite;
}
@keyframes slideImages {
  0%, 15% { transform: translateX(0); }
  25%, 40% { transform: translateX(-25%); }
  50%, 65% { transform: translateX(-50%); }
  75%, 90% { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 40px 20px 20px;
  font-weight: 600;
}

/* About Section */
.about {
  padding: 50px 0;
  background: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background: #f9fafb;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 32px;
}

.contact-item h4 {
  color: #2c5f2d;
  margin-bottom: 8px;
}

.contact-item p {
  color: #666;
}

/* Footer */
.footer {
  background: #2c5f2d;
  color: white;
  text-align: center;
  padding: 30px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-content {
    position: relative;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    left: 0;
  }
  
  .logo {
    margin: 0 auto;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1002;
    gap: 0;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    color: #2c5f2d;
  }
  
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
