:root {
  --color-primary: #1f4b7a;
  --color-secondary: #c87b2a;
  --color-bg: #ffffff;
  --color-bg-light: #fafafa;
  --color-text: #2f2f2f;
  --color-muted: #6f6f6f;
  --color-light-gray: #e8e8e8;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-base: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.header-top a {
  color: inherit;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 0 1rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  flex: 1;
}

.site-branding img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 2;
  justify-content: flex-end;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: 1rem;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--color-light-gray);
  background: var(--color-bg-light);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  order: 3;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
}

body[data-theme="light"] .theme-toggle__icon--sun,
body:not([data-theme]) .theme-toggle__icon--sun {
  display: none;
}

body[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-toggle__icon,
.mobile-menu-toggle__icon::before,
.mobile-menu-toggle__icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.mobile-menu-toggle__icon {
  position: relative;
}

.mobile-menu-toggle__icon::before,
.mobile-menu-toggle__icon::after {
  position: absolute;
  left: 0;
}

.mobile-menu-toggle__icon::before {
  top: -6px;
}

.mobile-menu-toggle__icon::after {
  top: 6px;
}

.mobile-menu-panel,
.mobile-menu-backdrop {
  display: none;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, 360px);
  height: 100vh;
  background: #ffffff;
  color: #1f2a1c;
  padding: 1.75rem 1.5rem;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-panel__title {
  font-size: 1.35rem;
  font-weight: 600;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 28, 0.2);
  background: transparent;
  color: #1f2a1c;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-panel__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.mobile-menu a {
  color: #1f2a1c;
  font-weight: 600;
  font-size: 1.05rem;
}

.mobile-menu .current-menu-item > a {
  color: var(--color-primary);
}

.mobile-menu-contacts {
  border-top: 1px solid rgba(31, 42, 28, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.mobile-menu-contacts__title {
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.mobile-menu-contacts__list {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-contacts__list a {
  color: #1f2a1c;
  font-weight: 500;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 27, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1050;
  pointer-events: none;
}

body.is-menu-open {
  overflow: hidden;
}

.hero {
  background: #f6f5f2;
  padding: 0;
  position: relative;
}

.hero-compact {
  padding: 3rem 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  height: 500px;
  width: 100%;
}

.hero-slide {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade var(--hero-slide-duration, 18s) infinite;
  animation-delay: var(--hero-slide-delay, 0s);
}

.hero-slider--interactive .hero-slide {
  position: absolute;
  inset: 0;
  animation: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider--interactive .hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.hero-slide--static {
  position: relative;
  opacity: 1;
  animation: none;
}

.hero-slide-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  padding: 5rem 1.5rem;
  max-width: 800px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
  background: rgba(123, 191, 53, 0.9);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
}

.hero-slider h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slider p {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-slider .btn {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  z-index: 10;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: #fff;
  border-color: #fff;
}

.hero-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 450px;
  }

  .hero-content {
    padding: 4rem 1rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 0.4rem 1.25rem;
  }

  .hero-dots {
    bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    min-height: 400px;
  }

  .hero-content {
    padding: 3rem 1rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.hero:not(.hero-slider) h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1b1b1b;
}

.hero:not(.hero-slider) p {
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-media {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 2rem;
  }

  .hero:not(.hero-slider) h1 {
    margin-bottom: 1rem;
  }

  .hero:not(.hero-slider) p {
    margin-bottom: 1.5rem;
  }

  .hero-media {
    min-height: 250px;
  }
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
  }
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.category-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 2.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--color-light-gray);
  background: #fff;
}

.category-media {
  overflow: hidden;
  position: relative;
}

.category-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.category-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.category-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
}

.category-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}

.category-card:hover .category-media img {
  transform: scale(1.05);
}

.category-card:hover h3 {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-media img {
    height: 200px;
  }

  .category-content {
    padding: 1rem 1.25rem 1.25rem;
  }

  .category-content h3 {
    font-size: 1.15rem;
  }
}

.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-light-gray);
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.pagination .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.pagination .current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .pagination {
    margin-top: 2.5rem;
  }

  .pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.chip {
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.15), rgba(123, 191, 53, 0.1));
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(123, 191, 53, 0.2);
  transition: var(--transition);
}

.chip:hover {
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.2), rgba(123, 191, 53, 0.15));
  transform: translateY(-2px);
}

.product-detail {
  padding: 2rem;
}

.features-grid,
.services-grid,
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .features-grid,
  .services-grid,
  .testimonials-grid {
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.section-products {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title,
.section-header .section-subtitle {
  text-align: center;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: var(--radius-lg);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-light-gray);
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  width: 100%;
  text-align: left;
}

.product-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.product-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  line-height: 1.3;
}

.product-card-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card:hover h3 {
  color: var(--color-primary);
}

.product-card--modal {
  cursor: pointer;
  font: inherit;
  border: 1px solid var(--color-light-gray);
}

.product-card--modal:focus-visible {
  outline: 3px solid rgba(123, 191, 53, 0.4);
  outline-offset: 4px;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 16, 20, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}

.product-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
}

.product-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(980px, 100%);
  max-height: 85vh;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.product-modal__close:hover {
  background: #e6e6e6;
}

.product-modal__content {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 85vh;
}

.product-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.product-modal__media img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.product-modal__details h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: var(--color-text);
}

.product-modal__content p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .products-grid {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .product-card-image {
    height: 240px;
  }

  .product-card-content {
    padding: 1.5rem;
  }

  .product-card h3 {
    font-size: 1.25rem;
  }

  .product-modal__content {
    padding: 2rem;
  }

  .product-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card-image {
    height: 220px;
  }

  .product-card-content {
    padding: 1.25rem;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .product-modal {
    padding: 1.25rem;
  }

  .product-modal__content {
    padding: 1.5rem;
  }
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.5rem;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(123, 191, 53, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.15), rgba(123, 191, 53, 0.08));
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.2), rgba(123, 191, 53, 0.12));
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.feature-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

.trust-strip {
  background: linear-gradient(135deg, #f6f7f2, #fafbf7);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(123, 191, 53, 0.1);
}

.trust-strip span {
  font-weight: 600;
  color: #5c5c5c;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 1.75rem 1.5rem;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .trust-strip span {
    font-size: 0.9rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
}

.about-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.2), rgba(123, 191, 53, 0.12));
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    gap: 2rem;
  }

  .about-list {
    margin-top: 1.5rem;
    gap: 0.875rem;
  }

  .about-list li {
    font-size: 0.95rem;
  }

  .about-list li::before {
    width: 26px;
    height: 26px;
  }
}

.service-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.service-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(123, 191, 53, 0.3);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.service-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.service-step p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(123, 191, 53, 0.3);
}

.testimonial-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text);
  font-style: normal;
}

@media (max-width: 768px) {
  .service-step,
  .testimonial-card {
    padding: 1.5rem;
  }

  .step-number {
    font-size: 1.75rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.08), rgba(243, 164, 59, 0.08));
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  border: 1px solid rgba(123, 191, 53, 0.15);
}

.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1b1b1b;
}

.cta-section p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: var(--color-muted);
}

@media (max-width: 992px) {
  .cta-section {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

.contact-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-card);
}

.contact-card--form .section-title,
.contact-card--info .section-title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.3;
}

.contact-card--form .section-subtitle {
  margin-bottom: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label {
  display: block;
  width: 100%;
}

.contact-form input:not([type="checkbox"]):not([type="submit"]),
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  border: 1px solid #d6dde4;
  background: #f9fafc;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--color-text);
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.06);
}

.contact-form input:not([type="checkbox"]):not([type="submit"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 191, 53, 0.12);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a96a3;
}

.contact-form input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0;
  border-radius: 0.2rem;
  border: 1px solid #9aa6b2;
  background: #fff;
  box-shadow: none;
}

.contact-form .wpcf7-list-item {
  margin: 0;
}

.contact-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form button {
  justify-self: start;
  padding: 0.75rem 2.2rem;
  box-shadow: 0 12px 20px rgba(123, 191, 53, 0.2);
}

.contact-form-message {
  font-size: 0.95rem;
  min-height: 1.2rem;
  color: var(--color-text);
}

.contact-form-message.is-error {
  color: #b42318;
}

.contact-form-message.is-success {
  color: #0f5132;
}

.contact-quick-details {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contact-quick-details li {
  display: grid;
  gap: 0.25rem;
}

.contact-quick-details .contact-detail-value,
.contact-quick-details a {
  color: var(--color-text);
  font-weight: 600;
}

.contact-quick-details a:hover {
  color: var(--color-primary);
}

.contact-info-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(123, 191, 53, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-info-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-heading);
}

.contact-info-text,
.contact-info-text a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-info-text a {
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-page-hero {
  background: linear-gradient(135deg, rgba(123, 191, 53, 0.12), rgba(243, 164, 59, 0.08));
}

.contact-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: stretch;
}

.contact-page-hero__content {
  max-width: 620px;
}

.contact-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(123, 191, 53, 0.14);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.contact-page-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  color: #1b1b1b;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-page-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  color: var(--color-muted);
}

.contact-page-hero__panel {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.contact-stat {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(123, 191, 53, 0.2);
  box-shadow: var(--shadow-soft);
}

.contact-stat h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: #1b1b1b;
}

.contact-stat p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-page-details {
  padding-top: 3rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.contact-page-details .section-title {
  color: #7a1c1c;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.3;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-details-card {
  display: grid;
  gap: 1.5rem;
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-detail-label {
  display: block;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0.35rem;
}

.contact-page-details .contact-detail-label {
  color: #7a1c1c;
}

.contact-details-list p {
  margin: 0;
  color: #7a1c1c;
  line-height: 1.6;
}

.contact-details-list a {
  color: inherit;
  font-weight: 500;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-method-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-method-card p {
  margin: 0 0 0.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact-info-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-info-block h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #1b1b1b;
}

.contact-info-block p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.contact-form-wrapper {
  display: grid;
  gap: 1rem;
}

.contact-form-embed .wpcf7 {
  margin-top: 1rem;
}

.contact-form-embed .wpcf7 form {
  display: grid;
  gap: 1.1rem;
}

.contact-form-embed .wpcf7-form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  border: 1px solid #d6dde4;
  background: #f9fafc;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--color-text);
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.06);
}

.contact-form-embed .wpcf7-form-control.wpcf7-acceptance {
  width: auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.contact-form-embed .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.contact-form-embed .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0;
  border-radius: 0.2rem;
  border: 1px solid #9aa6b2;
  background: #fff;
  box-shadow: none;
}

.contact-form-embed .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 191, 53, 0.12);
}

.contact-form-embed .wpcf7-form-control.wpcf7-submit {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 14px rgba(123, 191, 53, 0.25);
}

.contact-form-embed .wpcf7-form-control.wpcf7-submit:hover {
  filter: brightness(0.95);
}

.contact-form-embed .wpcf7-list-item-label {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-map iframe {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-page-hero__grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    gap: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page-hero__grid,
  .contact-page-grid {
    gap: 2rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(123, 191, 53, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 191, 53, 0.35);
  background: #6ba82e;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(123, 191, 53, 0.25);
}

@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: var(--transition);
  border: 1px solid var(--color-light-gray);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(123, 191, 53, 0.3);
}

@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
  color: #1b1b1b;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

.text-muted {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Utility Classes */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.6;
}

.site-footer {
  background: #f8f9f4;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .header-top {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-header.is-menu-open .header-top {
    display: flex;
  }

  .header-top > div:first-child {
    display: none;
  }

  .header-top > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .header-top > div:last-child span {
    display: none;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0 1rem;
  }

  .site-branding {
    margin-right: auto;
    padding-right: 5px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .main-navigation {
    display: none;
  }

  .site-header.is-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .site-header.is-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel,
  .mobile-menu-backdrop {
    display: block;
  }

  .theme-toggle {
    order: 3;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Dark Mode */
body[data-theme="dark"] {
  color-scheme: dark;
  --color-bg: #0f141a;
  --color-bg-light: #141b24;
  --color-text: #eef2f6;
  --color-muted: #a8b2be;
  --color-light-gray: #263241;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .site-header {
  background: #0f141a;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .header-top {
  color: var(--color-muted);
}

body[data-theme="dark"] .mobile-menu-toggle {
  background: #141b24;
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .mobile-menu-panel {
  background: #101720;
  color: var(--color-text);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.6);
}

body[data-theme="dark"] .mobile-menu-close {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
}

body[data-theme="dark"] .mobile-menu a,
body[data-theme="dark"] .mobile-menu-panel__title {
  color: var(--color-text);
}

body[data-theme="dark"] .mobile-menu-contacts {
  border-top-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .hero:not(.hero-slider) h1 {
  color: var(--color-text);
}

body[data-theme="dark"] .section-title {
  color: var(--color-text);
}

body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4,
body[data-theme="dark"] h5,
body[data-theme="dark"] h6 {
  color: var(--color-text);
}

body[data-theme="dark"] .section-subtitle {
  color: var(--color-muted);
}

body[data-theme="dark"] .section-products {
  background: linear-gradient(180deg, #141b24 0%, #0f141a 100%);
}

body[data-theme="dark"] .feature-slider {
  background: #0f141a;
}

body[data-theme="dark"] .slider-track::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
}

body[data-theme="dark"] .about-section {
  background: #101720;
}

body[data-theme="dark"] .products-empty {
  background: #1a2431;
  color: var(--color-text);
}

body[data-theme="dark"] .category-card,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .testimonial-card,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .card,
body[data-theme="dark"] .contact-card {
  background: #141b24;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .product-card-image {
  background: #1a2431;
}

body[data-theme="dark"] .contact-form input:not([type="checkbox"]):not([type="submit"]),
body[data-theme="dark"] .contact-form textarea,
body[data-theme="dark"] .quote-form input,
body[data-theme="dark"] .quote-form textarea,
body[data-theme="dark"] .quote-form select {
  background: #111824;
  border-color: #2a3646;
  color: var(--color-text);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.45);
}

body[data-theme="dark"] .contact-form input::placeholder,
body[data-theme="dark"] .contact-form textarea::placeholder {
  color: #8d98a6;
}

body[data-theme="dark"] .contact-form input[type="checkbox"] {
  background: #111824;
  border-color: #2a3646;
}

body[data-theme="dark"] .quote-form-message {
  background: #1a2431;
  color: var(--color-text);
}

body[data-theme="dark"] .portfolio-lightbox__close {
  background: #141b24;
  color: var(--color-text);
}

body[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .site-footer {
  background: #101720;
}

body[data-theme="dark"] .footer-title {
  color: var(--color-text);
}

/* Category Archive Header */
.category-header {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #1a1a1a;
}

.category-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.category-header-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 900px;
}

.category-header .breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.category-header .breadcrumb-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-4px);
}

.category-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.category-description {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.category-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-count {
  background: rgba(123, 191, 53, 0.95);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.category-count strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.section-products-archive {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.section-products-archive .products-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-products-archive .products-empty h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-products-archive .products-empty p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .category-header {
    min-height: 380px;
  }

  .category-header-content {
    padding: 3rem 1rem;
  }

  .category-title {
    margin-bottom: 1rem;
  }

  .category-description {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .category-meta {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .category-count {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }

  .category-count strong {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .category-header {
    min-height: 320px;
  }

  .category-header-content {
    padding: 2.5rem 1rem;
  }

  .category-header .breadcrumb-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ExportPro Services Layout */
.hero-services {
  padding: 5rem 0 3rem;
  background: #f7f8f9;
}

.hero-services .hero-content {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero-services .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-slider {
  background: #ffffff;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.slider-track::-webkit-scrollbar {
  height: 6px;
}

.slider-track::-webkit-scrollbar-thumb {
  background: rgba(31, 42, 68, 0.2);
  border-radius: 999px;
}

.slider-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  scroll-snap-align: center;
  box-shadow: var(--shadow-card);
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(31, 42, 68, 0) 15%, rgba(31, 42, 68, 0.72) 100%);
}

.slider-content h3 {
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
}

.slider-content p {
  margin: 0;
  font-size: 0.95rem;
}

.about-section {
  background: #f7f8f9;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-media img {
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-subtitle {
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.services-grid,
.packages-grid,
.portfolio-grid,
.testimonial-grid,
.cta-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.service-link {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
  position: relative;
}

.service-link::after {
  content: "→";
  margin-left: 0.35rem;
  transition: var(--transition);
}

.service-link:hover::after {
  margin-left: 0.55rem;
}

.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card .portfolio-info {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 25%, rgba(15, 23, 42, 0.8) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card:hover .portfolio-info {
  opacity: 1;
}

.portfolio-card .portfolio-info a {
  color: #fff;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.portfolio-filters button {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.portfolio-filters button.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.portfolio-card.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .portfolio-card .portfolio-info {
    position: relative;
    background: #ffffff;
    color: var(--color-text);
    opacity: 1;
  }

  .portfolio-card .portfolio-info a {
    color: inherit;
  }
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.portfolio-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox__content {
  position: relative;
  max-width: min(90vw, 900px);
}

.portfolio-lightbox__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.portfolio-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #fff;
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form .form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.95rem;
}

.quote-form-message {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #f1f5f9;
  font-size: 0.95rem;
}

.quote-form-message.is-success {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}

.quote-form-message.is-error {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: inherit;
  font-size: 0.9rem;
}
