:root {
  --primary: #062803;
  --secondary: #053220;
  --accent: #eb09a7;
  --accent2: #0deb09;
  --text: #333;
  --text-light: #666;
  --mct-surface: #fff;
  --mct-ink: #172b27;
  --mct-muted: #6c7a76;
  --mct-border: rgba(23, 43, 39, 0.14);
  --mct-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  --mct-radius: 18px;
  --mct-primary: var(--primary);
  --mct-accent: var(--accent);
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--primary);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, var(--accent), #d90895);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(235, 9, 167, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(235, 9, 167, 0.28);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 100px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-video-mobile {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(6, 40, 3, 0.8), rgba(5, 50, 32, 0.84));
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible;
}

.hero-text {
  text-align: left;
  margin-bottom: 18px;
}

.hero-text h2 {
  font-size: 2.7rem;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  line-height: 1.08;
}

.hero-text h2 span {
  color: var(--accent2);
  display: block;
}

#search-bar-container {
  width: 100%;
  margin-top: 18px;
  position: relative;
  z-index: 50;
  overflow: visible;
}

#search-bar-container .search-bar {
  width: 100%;
  overflow: visible;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.featured-products-section {
  background: #fff;
  position: relative;
  z-index: 1;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.featured-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card__image {
  position: relative;
  height: 230px;
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #eb09a7;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.featured-card__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card__meta {
  color: #666;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.featured-card__content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.featured-card__description {
  color: #666;
  margin-bottom: 16px;
}

.featured-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #053220;
  font-weight: 600;
  margin-bottom: 18px;
}

.featured-card__actions {
  margin-top: auto;
}

.home-video-section {
  background: #f7faf8;
}

.video-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.video-showcase__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.video-showcase__media video {
  width: 100%;
  display: block;
  background: #000;
}

.video-showcase__content {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.video-showcase__content h3 {
  margin-bottom: 12px;
}

.video-showcase__content p {
  color: #666;
  margin-bottom: 14px;
}

.video-showcase__content ul {
  padding-left: 18px;
  color: #444;
}

.home-contact-section {
  background: #fff;
}

.contact-request-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.contact-request-form {
  background: #f8fbf9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

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

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

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #062803;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-form-note {
  color: #666;
  font-size: 0.95rem;
}

.empty-products {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  width: min(380px, 94vw);
  max-height: 90vh;
  overflow: auto;
  position: relative;
  z-index: 9999;
  padding: 20px;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2500;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.wa-float::before,
.wa-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  opacity: 0;
  animation: waRipple 2.2s infinite;
}

.wa-float::after {
  inset: -16px;
  animation-delay: 0.55s;
  border-color: rgba(37, 211, 102, 0.35);
}

@keyframes waRipple {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.25;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 92px;
    min-height: auto;
  }

  .hero-content {
    padding: 22px 16px 30px;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 14px;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .featured-products-grid,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .wa-float {
    display: flex;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 18px 10px 24px;
  }

  .hero-text h2 {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-request-form,
  .video-showcase__content {
    padding: 22px;
  }

  .featured-card__image {
    height: 210px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}
