*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

main.container {
  padding: 1rem;
}

header {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
header h1 {
  margin: 0;
  font-size: 1.5rem;
}
header h1 a {
  color: #2d5a27;
  text-decoration: none;
}
header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}
header nav a {
  color: #000000;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover {
  color: #2d5a27;
  border-bottom-color: #2d5a27;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  border-radius: 4px;
}
.mobile-menu-btn:hover {
  background: #f5f5f5;
}

main {
  flex: 1;
}

footer {
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  padding: 1.5rem 0;
}

h2 {
  font-size: 1.75rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

.section {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ddd;
}
.section:last-child {
  border-bottom: none;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem;
  background: #ffffff;
}
.card h3 {
  margin-top: 0;
  color: #2d5a27;
}

.contact-form {
  max-width: 500px;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid #2d5a27;
  border-color: #2d5a27;
}
.contact-form button {
  background: #2d5a27;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-form button:hover {
  opacity: 0.9;
}

.hero {
  text-align: center;
  padding: 2rem 0;
}
.hero h2 {
  font-size: 2rem;
}
.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.btn {
  display: inline-block;
  background: #2d5a27;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #000000;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #2d5a27;
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .submit-btn {
  background: #2d5a27;
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
}
.contact-form .submit-btn:hover {
  background: rgb(36.1046511628, 72.2093023256, 31.2906976744);
  transform: translateY(-1px);
}
.contact-form .submit-btn:active {
  transform: translateY(0);
}

.custom-swal-button {
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2) !important;
  transition: all 0.2s ease !important;
}
.custom-swal-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3) !important;
}
.custom-swal-button:focus {
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.2) !important;
}

.custom-swal-popup {
  border-radius: 8px !important;
  padding: 2rem !important;
}

.callout {
  border-left: 4px solid;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #f5f5f5;
}
.callout .callout-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.callout .callout-title .callout-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.callout .callout-title strong {
  font-weight: 600;
}
.callout .callout-content p:last-child {
  margin-bottom: 0;
}
.callout.callout-info {
  border-left-color: #3b82f6;
  background: #eff6ff;
}
.callout.callout-info .callout-title {
  color: #1e40af;
}
.callout.callout-warning {
  border-left-color: #f59e0b;
  background: #fffbeb;
}
.callout.callout-warning .callout-title {
  color: #b45309;
}
.callout.callout-error {
  border-left-color: #ef4444;
  background: #fef2f2;
}
.callout.callout-error .callout-title {
  color: #b91c1c;
}
.callout.callout-success {
  border-left-color: #10b981;
  background: #f0fdf4;
}
.callout.callout-success .callout-title {
  color: #047857;
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }
  header .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav {
    width: 100%;
  }
  header nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  header nav a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
  }
  header nav a:hover {
    border-bottom-color: #2d5a27;
  }
  header nav li:last-child a {
    border-bottom: none;
  }
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  header {
    position: relative;
  }
  header nav {
    display: none;
  }
  header nav.active {
    display: block;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero h2 {
    font-size: 1.75rem;
  }
  .card {
    padding: 1rem;
  }
  footer {
    padding: 1rem 0 2rem 0;
  }
  body {
    min-height: 100vh;
  }
}

/*# sourceMappingURL=main.css.map */