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

/* Global image optimization for sharper rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: #1d1d1b;
  background: #f7f4ea;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #4a8f37, #d4af37, #4a8f37);
  z-index: 1;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .header-inner {
  padding: 14px 0;
}

.site-header.scrolled .brand-logo {
  height: 70px;
  filter: none;
}

.site-header.scrolled .brand-text {
  color: #1d1d1b;
}

.site-header.scrolled .nav-link {
  color: #1d1d1b;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: #4a8f37;
}

.site-header.scrolled .icon-btn {
  color: #1d1d1b;
}

.site-header.scrolled .hamburger-line {
  background: #1d1d1b;
}

.page-about .site-header {
  position: fixed;
}

.page-about main {
  padding-top: 90px;
}

.page-services .site-header {
  position: fixed;
}

.page-services main {
  padding-top: 90px;
}

/* =====================================
   Contact Page
   ===================================== */

.page-contact .site-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact .site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact main {
  padding-top: 90px;
}

/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(101, 67, 33, 0.9) 100%),
              url('/assets/image-01.webp.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

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

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Info Cards */
.contact-info {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.contact-card p {
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card-about {
  background: linear-gradient(135deg, #6b8e23 0%, #7fa525 100%);
}

.contact-card-contact {
  background: linear-gradient(135deg, #daa520 0%, #e5b830 100%);
}

.contact-card-address {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa055 100%);
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 0 80px;
  background: #fff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-map-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.map-search-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.map-search-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #1d1d1b;
}

.branch-selector-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-selector-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1b;
}

.branch-selector-group label svg {
  color: #4a8f37;
}

.branch-selector-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #1d1d1b;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.branch-selector-group select:hover {
  border-color: #4a8f37;
}

.branch-selector-group select:focus {
  border-color: #4a8f37;
  box-shadow: 0 0 0 3px rgba(74, 143, 55, 0.1);
}

.map-search-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.map-search-input-group:focus-within {
  border-color: #4a8f37;
}

.map-search-input-group svg {
  flex-shrink: 0;
  color: #4a8f37;
}

.map-search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 8px 0;
  color: #1d1d1b;
}

.map-search-input-group input::placeholder {
  color: #999;
}

.btn-directions {
  background: #4a8f37;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-directions:hover {
  background: #3a7029;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 143, 55, 0.3);
}

.btn-use-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #4a8f37;
  color: #4a8f37;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-use-location:hover {
  background: #4a8f37;
  color: #ffffff;
}

.btn-use-location:hover svg {
  stroke: #ffffff;
}

.btn-use-location svg {
  transition: stroke 0.3s ease;
}

.contact-map {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f0f0f0;
}

.map-info {
  background: #1d1d1b;
  color: #ffffff;
  padding: 16px 24px;
  font-size: 14px;
}

.map-info p {
  margin: 0;
  line-height: 1.6;
}

.map-info strong {
  color: #4a8f37;
}

.contact-form-wrapper {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}

.contact-form-wrapper .section-eyebrow {
  color: #6b8e23;
  margin-bottom: 12px;
}

.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #1d1d1b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #1d1d1b;
  background: #fff;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6b8e23;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn {
  width: fit-content;
  padding: 16px 40px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-form-grid {
    gap: 40px;
  }

  .contact-map {
    height: 450px;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-info {
    padding: 50px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 60px 0 80px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    min-height: 350px;
  }

  .map-search-box {
    padding: 20px;
  }

  .map-search-box h3 {
    font-size: 18px;
  }

  .btn-directions {
    padding: 10px 16px;
    font-size: 13px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

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

@media (max-width: 640px) {
  .contact-hero {
    padding: 80px 0 50px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  .contact-info {
    padding: 40px 0;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-form-section {
    padding: 50px 0 60px;
  }

  .contact-map {
    min-height: 300px;
  }

  .map-search-input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .map-search-input-group input {
    padding: 12px 8px;
  }

  .btn-directions {
    width: 100%;
    padding: 12px;
  }

  .map-search-box {
    padding: 16px;
  }

  .map-search-box h3 {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-form-wrapper h2 {
    font-size: 26px;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* Send Method Modal */
.send-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.send-modal.active {
  opacity: 1;
  visibility: visible;
}

.send-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.send-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1;
}

.send-modal.active .send-modal-content {
  transform: scale(1);
}

.send-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.send-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.send-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.send-modal-header svg {
  margin: 0 auto 16px;
}

.send-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1d1d1b;
}

.send-modal-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.send-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.send-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  color: #1d1d1b;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-option-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.send-email-btn {
  border-color: #4a8f37;
  color: #4a8f37;
}

.send-email-btn:hover {
  background: #4a8f37;
  color: #ffffff;
}

.send-email-btn:hover svg {
  stroke: #ffffff;
}

.send-whatsapp-btn {
  border-color: #25D366;
  color: #25D366;
}

.send-whatsapp-btn:hover {
  background: #25D366;
  color: #ffffff;
}

.send-whatsapp-btn:hover svg {
  stroke: #ffffff;
}

.send-option-btn svg {
  transition: stroke 0.3s ease;
}

@media (max-width: 640px) {
  .send-modal-content {
    padding: 32px 24px;
  }

  .send-modal-header h3 {
    font-size: 24px;
  }

  .send-option-btn {
    padding: 16px 20px;
    font-size: 15px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: #ffffff;
  position: relative;
  transition: padding 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .brand {
    gap: 12px;
  }
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-logo {
  height: 85px;
  width: auto;
  filter: none;
  transition: all 0.3s ease;
}

.brand-text {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d1d1b;
  transition: color 0.3s ease;
  display: block;
}

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


.main-nav {
  display: none;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  color: #1d1d1b;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #d7b15c;
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: calc(100% - 40px);
}

.nav-link.active {
  color: #d7b15c;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.active::after {
  width: calc(100% - 40px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  color: #1d1d1b;
  padding: 20px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 999;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1b;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(74, 143, 55, 0.08);
  border-left-color: #4a8f37;
  color: #4a8f37;
  padding-left: 32px;
}

.nav-open .mobile-nav {
  display: block;
}

.nav-open .site-header {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-open .brand-logo {
  filter: none;
}

.nav-open .brand-text {
  color: #1d1d1b;
}

.nav-open .icon-btn {
  color: #1d1d1b;
  background: rgba(0, 0, 0, 0.05);
}

.nav-open .hamburger-line {
  background: #1d1d1b;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.icon-btn:active {
  transform: translateY(0);
}


.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: #1d1d1b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.hero {
  position: relative;
  min-height: 85vh;
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 18px 46px rgba(10, 20, 15, 0.18);
  margin: 0;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 17, 12, 0.35),
    rgba(7, 17, 12, 0.15)
  );
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.hero-slider:has(.hero-slide:only-child) ~ .hero-controls .hero-nav,
.hero-slider:has(.hero-slide:only-child) ~ .hero-controls .hero-dots {
  display: none;
}

.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.hero-dot.is-active {
  background: #fff;
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.hero-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-nav:active {
  transform: scale(0.95);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.8s ease, transform 6s ease 0.3s;
  transform: scale(1.0);
  /* Image quality enhancements for sharper rendering */
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.0);
  /* Subtle enhancement without over-processing */
  filter: brightness(1.02) contrast(1.03) saturate(1.05);
  /* Force GPU acceleration for smoother rendering */
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
  /* Minimal scale to reduce blur - from 1.05 to 1.015 */
  transform: translateZ(0) scale(1.015);
}

.hero-content {
  padding: 40px 48px 48px;
  max-width: 600px;
  position: relative;
  z-index: 1;
  animation: heroRise 0.9s ease both;
  transform: none;
  margin-left: 48px;
  margin-top: 160px;
  backdrop-filter: blur(4px);
  background: linear-gradient(
    135deg,
    rgba(29, 29, 27, 0.25) 0%,
    rgba(29, 29, 27, 0.15) 100%
  );
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0 0 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.hero-title {
  font-size: 52px;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  color: #fff;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transform: translateY(40px);
  position: relative;
  z-index: 1;
}

.hero-card {
  background: #fff;
  color: #1d1d1b;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.hero-card img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}

.btn {
  border: 0;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #4a8f37;
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 143, 55, 0.3);
}

.hero .btn-primary {
  animation: heroRise 0.9s ease 0.3s both, subtlePulse 3s ease-in-out 2s infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(74, 143, 55, 0.3);
  }
  50% {
    box-shadow: 0 4px 24px rgba(74, 143, 55, 0.5);
  }
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  color: #af7d1a;
  font-weight: 600;
  display: block;
}

.section-eyebrow + h1,
.section-eyebrow + h2 {
  margin-top: 0;
}

.muted {
  font-size: 14px;
  line-height: 1.7;
  color: #5c5c5c;
  margin-bottom: 20px;
}

h1 + .muted,
h2 + .muted {
  margin-top: -8px;
  margin-bottom: 28px;
}

.center.muted {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.center.section-eyebrow {
  margin-bottom: 12px;
}

.center + .center {
  margin-top: 0;
}

section .container > h2:first-of-type {
  margin-bottom: 32px;
}

section .container > h2.center {
  margin-bottom: 48px;
}

.about {
  padding: 80px 0;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 0;
}

.about-intro-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .about-intro-carousel {
    height: 400px;
  }
  
  .accent-frame-carousel {
    width: 80px;
    height: 80px;
    left: 5%;
    top: 45%;
    animation: floatFrameTablet 4s ease-in-out infinite;
  }
  
  @keyframes floatFrameTablet {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    25% {
      transform: translateY(-8px) translateX(3px) rotate(1deg);
    }
    50% {
      transform: translateY(0) translateX(0) rotate(0deg);
    }
    75% {
      transform: translateY(-8px) translateX(-3px) rotate(-1deg);
    }
  }
}

.about-intro-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
  pointer-events: none;
}

.about-intro-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.about-intro-slide:nth-child(odd) {
  bottom: 0;
  left: 0;
  width: 70%;
  height: 75%;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 30px rgba(107, 142, 35, 0.08);
}

.about-intro-slide:nth-child(even) {
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 25px rgba(107, 142, 35, 0.06);
}

.about-intro-slide:nth-child(odd).is-active {
  z-index: 2;
}

.about-intro-slide:nth-child(even).is-active {
  z-index: 1;
}

/* Accent Frame for small images */
.accent-frame-carousel {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 120px;
  height: 120px;
  z-index: 3;
  transform: translateY(-50%);
  animation: floatFrame 4s ease-in-out infinite;
}

@keyframes floatFrame {
  0%, 100% {
    transform: translateY(-50%) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-55%) translateX(5px) rotate(2deg);
  }
  50% {
    transform: translateY(-45%) translateX(0) rotate(0deg);
  }
  75% {
    transform: translateY(-55%) translateX(-5px) rotate(-2deg);
  }
}

.accent-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.accent-frame.is-active {
  opacity: 1;
  z-index: 1;
}

.accent-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.accent-frame-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.08) 0%, rgba(74, 143, 55, 0.08) 100%);
}

.accent-frame-placeholder svg {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.accent-frame-hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #666;
  white-space: nowrap;
  text-align: center;
  opacity: 0.7;
  pointer-events: none;
}

.about-intro-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.about-intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.about-intro-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.about-intro-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.about-intro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.about-intro-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.about-intro-dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.about-intro-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-intro-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-intro-nav:active {
  transform: scale(0.95);
}


.about-list,
.why-list {
  display: grid;
  gap: 24px;
  margin: 32px 0 40px;
}

.about-item,
.why-item {
  display: flex;
  gap: 16px;
}

.about-item h3,
.why-item h3 {
  margin-bottom: 8px;
}

.about-item p,
.why-item p {
  margin: 0;
  line-height: 1.6;
}

.offer {
  padding: 80px 0;
}

.offer-grid,
.projects-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.offer-card,
.project-card,
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover,
.project-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.offer-card {
  position: relative;
}

.offer-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 5s ease;
  transform: scale(1.02);
}

.offer-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.offer-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.offer-dots {
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d7b15c;
  opacity: 0.5;
  cursor: pointer;
}

.offer-dot.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.offer-card img,
.project-card img,
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-label,
.project-label {
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
}

.stats {
  padding: 30px 0 60px;
}

.stats-bar {
  background: #4a8f37;
  color: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.video-banner {
  position: relative;
  margin: 30px 0 20px;
  min-height: 480px;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.video-banner img,
.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.video-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 60px;
  pointer-events: none;
  z-index: 1;
}

.video-content h2 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.play-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.play-btn img {
  width: 32px;
  height: 32px;
}

.projects,
.testimonial,
.why-choose,
.news {
  padding: 50px 0;
}

.testimonial-inner,
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.testimonial-list.is-open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slides {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar img,
.testimonial-initials {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d7b15c;
}

.testimonial-initials {
  display: grid;
  place-items: center;
  background: #f7f4ea;
  color: #1d1d1b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.testimonial-role {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a7a7a;
  margin-top: 4px;
}

.testimonial-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-btn {
  border: 0;
  background: #4a8f37;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d7b15c;
  opacity: 0.4;
  cursor: pointer;
}

.testimonial-dot.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.services-hero {
  position: relative;
  padding: 110px 0 60px;
  background: linear-gradient(135deg, #4a8f37 0%, #3d7a2e 100%);
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/image-01.webp.png') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.services-hero-content {
  position: relative;
  z-index: 1;
}

.services-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.services-hero h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.services-intro {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
}

.services-list {
  padding: 50px 0 70px;
  background: linear-gradient(to bottom, #f8faf8 0%, #ffffff 50%);
}

.services-toolbar {
  display: grid;
  gap: 16px;
  margin-top: -24px;
  margin-bottom: 24px;
}

.services-search {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}

.services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 1px solid #d7b15c;
  background: #fff;
  color: #1d1d1b;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.filter-chip.is-active {
  background: #d7b15c;
  color: #fff;
}

.services-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a8f37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-body h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.service-description {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.service-products {
  margin-top: 8px;
}

.products-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a8f37;
  margin: 0 0 12px;
  font-weight: 700;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-item:last-child {
  border-bottom: none;
}

.product-icon {
  flex-shrink: 0;
  color: #4a8f37;
  margin-top: 2px;
}

.product-item strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.product-desc {
  display: block;
  color: #888;
  font-size: 0.875rem;
  margin-top: 2px;
}

.services-empty,
.services-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.services-empty svg,
.services-empty-state svg {
  margin-bottom: 20px;
  color: #ccc;
}

.services-empty h3,
.services-empty-state h3 {
  font-size: 1.5rem;
  color: #666;
  margin: 0 0 8px;
}

.services-empty p,
.services-empty-state p {
  color: #999;
  margin: 0;
}

.service-card-body .bullet-list {
  margin-top: 12px;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating img {
  width: 14px;
  height: 14px;
}

.why-media {
  position: relative;
}

.why-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #d7b15c;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 16px;
  font-size: 18px;
}

.news-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 12px 16px 0;
  color: #7a7a7a;
}

.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a8f37 0%, #3d7a2e 100%);
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.services-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-cta-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0 0 20px;
  line-height: 1.2;
}

.services-cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 600px;
}

.services-cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.services-cta-visual svg {
  color: #ffffff;
  animation: float 3s ease-in-out infinite;
}

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

.site-footer {
  background: #1d1d1b;
  color: #cfcfcf;
  padding: 40px 0 0;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 3px solid #4a8f37;
  display: inline-block;
}

.site-footer p {
  margin: 3px 0;
  font-size: 13px;
  line-height: 1.5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: 180px;
  height: auto;
  display: block;
}

.footer-brand p {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  margin: 0;
  font-weight: 400;
  color: #ffffff;
  display: block !important;
  line-height: 1.4;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-link-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-link-row a {
  font-size: 13px;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.footer-link-row a:hover {
  color: #ffffff;
  border-bottom-color: #4a8f37;
}

.footer-contact p {
  font-size: 12px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social .socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social .socials img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-social .socials img:hover {
  opacity: 1;
}

.footer-subscribe {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.footer-subscribe input {
  flex: 1;
  padding: 6px 8px;
  border-radius: 4px;
  border: 0;
  font-size: 12px;
}

.footer-subscribe button {
  border: 0;
  border-radius: 4px;
  padding: 6px 10px;
  background: #4a8f37;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-subscribe button:hover {
  background: #5da044;
}

.footer-subscribe button img {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid #2a2a28;
  padding: 10px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: #999;
}

.footer-policy {
  display: flex;
  gap: 18px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .offer-grid,
  .projects-grid,
  .news-grid,
  .stats-bar,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-inner,
  .testimonial-inner,
  .why-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 36px 40px 44px;
    max-width: 540px;
    margin-left: 32px;
    margin-top: 130px;
  }

  .hero-title {
    font-size: 44px;
  }

  h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .section,
  .about,
  .offer {
    padding: 60px 0;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    height: 60px;
  }

  .site-header.scrolled .brand-logo {
    height: 55px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .video-banner {
    margin: 15px 0 10px;
    min-height: 300px;
    height: 300px;
  }

  .video-content {
    padding: 0 20px;
  }

  .video-content h2 {
    font-size: 24px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn img {
    width: 24px;
    height: 24px;
  }

  .testimonial {
    padding: 20px 0;
  }

  .container {
    width: min(1200px, 90%);
  }

  .main-nav {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header-inner {
    padding: 0 8px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 28px 24px 36px;
    transform: none;
    max-width: 100%;
    text-align: left;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 100px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-controls {
    bottom: 20px;
    gap: 16px;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
  }

  .hero-nav svg {
    width: 18px;
    height: 18px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    width: 24px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  h4 {
    font-size: 16px;
  }

  .section,
  .about,
  .offer {
    padding: 50px 0;
  }

  .services-hero {
    padding: 100px 0 60px;
  }

  .services-hero h1 {
    font-size: 2.25rem;
  }

  .services-intro {
    font-size: 1rem;
  }

  .services-list {
    padding: 40px 0 60px;
  }

  .services-toolbar {
    top: 70px;
    gap: 16px;
  }

  .services-grid {
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .services-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .services-cta-content h2 {
    font-size: 2rem;
  }

  .services-cta-content p {
    max-width: 100%;
  }

  .services-cta-visual {
    display: none;
  }

  .about-list,
  .why-list {
    gap: 20px;
    margin: 24px 0 32px;
  }

  .testimonial-cards {
    gap: 20px;
    margin-top: 28px;
  }

  section .container > h2.center {
    margin-bottom: 32px;
  }

  .section-eyebrow {
    margin-bottom: 12px;
  }

  .hero-cards {
    transform: none;
    margin-top: 24px;
  }

  .hero-cards,
  .offer-grid,
  .projects-grid,
  .news-grid,
  .stats-bar,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand img {
    width: 140px;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .video-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
  }

  .about-media {
    padding: 0;
  }

  .about-intro-carousel {
    max-width: 320px;
    height: 350px;
  }
  
  .accent-frame-carousel {
    width: 60px;
    height: 60px;
    left: 0;
    top: 40%;
    animation: floatFrameMobile 4s ease-in-out infinite;
  }
  
  @keyframes floatFrameMobile {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  .about-intro-controls {
    bottom: 12px;
    gap: 8px;
  }

  .about-intro-nav {
    width: 28px;
    height: 28px;
  }

  .about-intro-nav svg {
    width: 16px;
    height: 16px;
  }

  .about-intro-dot {
    width: 6px;
    height: 6px;
  }

  .about-intro-dot.is-active {
    width: 20px;
  }
}

.page-hero {
  position: relative;
  height: 280px;
  margin-top: 130px;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero-content h1 {
  margin: 8px 0 0;
  font-size: 36px;
}

.about-intro {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 143, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-intro-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-intro-content {
  padding: 0 20px;
}

.about-intro-content .section-eyebrow {
  margin-bottom: 12px;
}

.about-intro-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.about-intro-main {
  width: 100%;
  border-radius: 16px;
}

.about-intro-inset {
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.about-highlight {
  color: #4a8f37;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

.about-intro-content .muted {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 16px;
}

.about-checklist li {
  padding-left: 36px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.about-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  background: #4a8f37;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

ul.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 10px;
}

ul.bullet-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.6;
}

ul.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a8f37;
  font-size: 20px;
  line-height: 1;
}

.about-video {
  position: relative;
  margin: 40px 0 0;
}

.about-video img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.6);
}

.about-video-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  gap: 16px;
  padding: 0 20px;
}

.about-stats {
  margin-top: -8px;
}

.about-testimonials {
  padding: 80px 0;
  background: #f7f4ea;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testimonial-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.about-features {
  padding: 100px 0;
  background: #fff;
}

.about-features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-feature-card {
  background: linear-gradient(135deg, #4a8f37 0%, #3d7a2e 100%);
  color: #fff;
  padding: 56px 48px;
  border-radius: 20px;
  display: grid;
  gap: 32px;
  box-shadow: 0 12px 40px rgba(74, 143, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74, 143, 55, 0.35);
}

.about-feature-card h3 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.3;
}

.about-feature-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.about-feature-side .section-eyebrow {
  margin-bottom: 12px;
}

.about-feature-side h2 {
  margin: 0 0 24px;
  font-size: 2.25rem;
  line-height: 1.3;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-stats > div {
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  padding: 28px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #e8f5e3;
  transition: all 0.3s ease;
}

.feature-stats > div:hover {
  border-color: #4a8f37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 143, 55, 0.15);
}

.stat-big {
  font-size: 2rem;
  font-weight: 700;
  color: #4a8f37;
  line-height: 1;
}

.feature-stats span:last-child {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.feature-video {
  position: relative;
}

.feature-video img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.feature-video .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
}

.feature-video {
  overflow: hidden;
  border-radius: 16px;
}

.feature-slides {
  position: relative;
  height: 220px;
}

.feature-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 6s ease;
}

.feature-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.feature-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feature-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #d7b15c;
  opacity: 0.5;
  cursor: pointer;
}

.feature-dot.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.about-farmers {
  padding: 70px 0 80px;
  background: linear-gradient(to bottom, #f8faf8 0%, #ffffff 100%);
}

.about-farmers .section-eyebrow {
  margin-bottom: 12px;
}

.about-farmers h2 {
  font-size: 2.5rem;
  margin: 0 0 16px;
}

.farmers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.farmer-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.farmer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

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

.farmer-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.farmer-card:hover img {
  transform: scale(1.05);
}

.farmer-info {
  padding: 32px 28px;
  text-align: center;
  background: linear-gradient(to bottom, #fff 0%, #f9faf9 100%);
}

.farmer-info strong {
  display: block;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.farmer-info span {
  display: block;
  font-size: 1rem;
  color: #4a8f37;
  font-weight: 600;
  margin-bottom: 16px;
}

.farmer-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-intro-inner,
  .about-features-inner,
  .testimonial-cards,
  .farmers-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    padding: 60px 0 50px;
  }

  .about-intro-inner {
    gap: 40px;
  }

  .about-intro-content {
    padding: 0;
  }

  .about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .about-checklist {
    margin-bottom: 32px;
  }

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

  .about-features {
    padding: 80px 0;
  }

  .about-features-inner {
    gap: 40px;
  }

  .about-feature-card {
    padding: 40px 32px;
    gap: 24px;
  }

  .farmers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .about-farmers {
    padding: 60px 0 70px;
  }

  .farmers-grid {
    margin-top: 44px;
  }

  .about-intro-inset {
    position: static;
    margin-top: 16px;
    width: 160px;
  }

  .feature-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .video-banner {
    margin: 15px 0 0;
    min-height: 280px;
  }

  .testimonial {
    padding: 15px 0;
  }

  .about-intro {
    padding: 50px 0 40px;
  }

  .about-intro-inner {
    gap: 32px;
  }

  .about-intro-content h2 {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }

  .about-intro-content .muted {
    margin-bottom: 24px;
  }

  .about-checklist {
    margin-bottom: 28px;
    gap: 12px;
  }

  .about-features {
    padding: 60px 0;
  }

  .about-features-inner {
    gap: 32px;
  }

  .about-feature-card {
    padding: 32px 24px;
    gap: 20px;
  }

  .about-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .about-feature-side h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .farmers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .about-farmers {
    padding: 50px 0 60px;
  }

  .about-farmers h2 {
    font-size: 2rem;
  }

  .farmer-card img {
    height: 300px;
  }

  .farmer-info {
    padding: 24px 20px;
  }

  .services-hero {
    padding: 80px 0 50px;
  }

  .services-hero h1 {
    font-size: 1.875rem;
  }

  .services-intro {
    font-size: 0.95rem;
  }

  .services-toolbar {
    position: relative;
    top: 0;
    padding: 16px;
    gap: 12px;
  }

  .services-filters {
    padding: 0;
  }

  .filter-chip {
    font-size: 13px;
    padding: 8px 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-media {
    height: 200px;
  }

  .service-card-body {
    padding: 20px;
  }

  .services-cta {
    padding: 60px 0;
  }

  .services-cta-content h2 {
    font-size: 1.75rem;
  }

  .services-cta-content p {
    font-size: 1rem;
  }
}

/* Added dynamism */
body {
  scroll-behavior: smooth;
}


.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 143, 55, 0.35);
}

.stat-value {
  animation: heroRise 0.9s ease both;
}

.play-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.why-badge {
  animation: float 4s ease-in-out infinite;
}


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