/* ------------------------------
   RESET & BASE
------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
}

:root {
  --primary: #81c784;
  --primary-light: #a5d6a7;
  --primary-dark: #66bb6a;
  --secondary: #4caf50;
  --accent: #ffc107;
  --light: #e8f5e9;
  --dark: #121212;
  --gray: #b0bec5;
  --light-gray: #263238;
  --white: #1e1e1e;
  --card-bg: #1e1e1e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--dark);
  scroll-behavior: smooth;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
  overflow: hidden;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
  word-wrap: break-word;
}

.section-header h2 span {
  color: var(--primary);
  position: relative;
}

.section-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--accent);
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  padding: 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 10px;
  font-size: 1rem;
  max-width: 100%;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(129, 199, 132, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--dark);
}

.highlight {
  color: var(--primary);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 193, 7, 0.3);
  bottom: 2px;
  left: 0;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------
   HEADER
------------------------------- */
header {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  color: var(--primary);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.logo p {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* Desktop Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  font-size: 1rem;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent !important;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--light);
  transition: var(--transition);
  display: block;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--card-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    font-size: 1.1rem;
    padding: 10px 20px;
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a1a0a;
  margin-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  display: block;
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 4, 0.96) 0%,
      rgba(4, 14, 4, 0.82) 35%,
      rgba(4, 14, 4, 0.35) 60%,
      rgba(4, 14, 4, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 14, 4, 0.50) 0%,
      transparent 25%,
      transparent 72%,
      rgba(4, 14, 4, 0.70) 100%
    );
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10, 25, 10, 0.80);
  color: var(--accent);
  border: 1px solid rgba(255, 193, 7, 0.50);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.72rem;
  margin-bottom: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
  align-self: flex-start;
  animation: fadeDown 0.7s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.10;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-align: left;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 4px 20px rgba(0, 0, 0, 0.80);
  animation: fadeUp 0.85s ease both 0.1s;
  position: static;
}

.hero-content h2 .highlight {
  color: var(--primary) !important;
  font-style: italic;
  display: inline !important;
  position: static !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(129, 199, 132, 0.22);
}

.hero-content h2 .highlight::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hero-content > p {
  font-size: clamp(0.85rem, 1.5vw, 0.96rem);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 28px;
  line-height: 1.72;
  max-width: 460px;
  font-weight: 400;
  text-align: left;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 10px rgba(0, 0, 0, 0.75);
  animation: fadeUp 0.9s ease both 0.2s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 28px;
  animation: fadeUp 0.95s ease both 0.3s;
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0d1f0d;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(129, 199, 132, 0.40);
  padding: 12px 28px;
  font-size: 0.92rem;
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(129, 199, 132, 0.55);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.40) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  padding: 12px 28px;
  font-size: 0.92rem;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  animation: fadeUp 1s ease both 0.42s;
  width: 100%;
  max-width: 600px;
}

.mini-stat {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 15, 5, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(129, 199, 132, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-stat i {
  font-size: 1rem;
  color: var(--primary);
  background: rgba(129, 199, 132, 0.12);
  border: 1px solid rgba(129, 199, 132, 0.22);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-stat h3 {
  font-size: 1.20rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(129, 199, 132, 0.35);
}

.mini-stat p {
  font-size: 0.70rem;
  color: rgba(210, 230, 210, 0.88);
  margin: 3px 0 0;
  white-space: nowrap;
}

.hero-image {
  display: none !important;
}

.floating-card {
  position: absolute !important;
  bottom: 48px !important;
  right: 48px !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-direction: row !important;
  text-align: left !important;
  padding: 14px 22px !important;
  border-radius: 16px !important;
  background: rgba(5, 15, 5, 0.82) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border: 1px solid rgba(129, 199, 132, 0.26) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  z-index: 3 !important;
  animation: float 4s ease-in-out infinite, fadeUp 1s ease both 0.6s !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.floating-card i {
  font-size: 1.9rem !important;
  color: var(--accent) !important;
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.55)) !important;
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
}

.floating-card h4 {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 3px !important;
  white-space: nowrap !important;
}

.floating-card p {
  font-size: 0.80rem !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.60rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: fadeUp 1.2s ease both 0.8s;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(129, 199, 132, 0.85), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0.1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

/* Hero Responsive */
@media (max-width: 1100px) {
  .hero .container {
    padding: 0 40px !important;
  }
}

@media (max-width: 992px) {
  .hero {
    height: 620px;
    min-height: 500px;
  }
  .hero .container {
    padding: 0 32px !important;
  }
  .hero-content {
    max-width: 500px;
  }
  .floating-card {
    bottom: 28px !important;
    right: 24px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 60px);
    padding: 40px 0 60px;
  }
  .hero-bg {
    object-position: 70% center;
  }
  .hero-overlay {
    background: rgba(4, 14, 4, 0.88) !important;
  }
  .hero .container {
    padding: 0 24px !important;
    align-items: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .hero-content h2,
  .hero-content > p {
    text-align: center;
    max-width: 100%;
  }
  .hero-tag {
    align-self: center;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
  .mini-stat {
    flex: unset;
    min-width: 140px;
  }
  .floating-card {
    bottom: 14px !important;
    right: 14px !important;
    padding: 10px 16px !important;
  }
}

@media (max-width: 480px) {
  .hero .container {
    padding: 0 16px !important;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    align-items: center;
  }
  .hero .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .mini-stat {
    min-width: unset;
    width: 100%;
  }
  .floating-card {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 20px auto 0 !important;
    justify-content: center !important;
    max-width: 90%;
  }
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  min-height: 200px;
  height: auto;
  background: url("../images/stat_bg.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 20px;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0) 85%
  );
}

.stats-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-box {
  position: relative;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
  text-align: left;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20px;
  height: 60px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 48px);
  font-weight: 700;
  color: #f3d36b;
  text-shadow:
    0 0 6px rgba(243,211,107,0.4),
    0 0 12px rgba(243,211,107,0.2);
  margin-bottom: 8px;
}

.stat-title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .stats-section {
    height: auto;
    padding: 40px 20px;
  }
  .stats-inner {
    margin-left: 0;
    gap: 24px;
    width: 100%;
  }
  .stat-box {
    min-width: 120px;
    max-width: 160px;
    flex: 1 1 calc(50% - 24px);
  }
  .stat-box:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-box {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* =============================================
   VIEW MORE / SHOW LESS
   ============================================= */
.view-more-container,
.show-less-container {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  width: 100%;
  animation: fadeInUp 0.5s ease;
}

.view-more-btn,
.show-less-btn {
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

.view-more-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(129, 199, 132, 0.4);
}

.show-less-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.show-less-btn:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.view-more-btn i,
.show-less-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover i {
  transform: translateY(3px);
}

.show-less-btn:hover i {
  transform: translateY(-3px);
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card {
  animation: slideInUp 0.5s ease forwards;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--gray);
  font-size: 1.1rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 2px dashed rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .view-more-btn,
  .show-less-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: 80px 20px;
  background: var(--dark);
  width: 100%;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.about-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: calc(100% - 20px);
}

.experience-badge h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 5px;
  word-wrap: break-word;
}

.about-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
  background: var(--card-bg);
  transition: var(--transition);
  width: 100%;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light);
  word-wrap: break-word;
}

.about-feature p {
  color: var(--gray);
  word-wrap: break-word;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
    width: fit-content;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 15px !important;
  }
  .about-feature {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 80px 20px;
  background: var(--light-gray);
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  gap: 15px;
  color: var(--accent);
}

.service-corner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(255,255,255,0.05);
  font-size: 3rem;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.choose-header {
  margin-top: 70px;
  margin-bottom: 40px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.choose-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.choose-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.choose-card:hover img {
  transform: scale(1.08);
}

.choose-content {
  padding: 20px;
}

.choose-content h3 {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-content i {
  color: var(--primary);
}

.choose-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 15px;
  }
  .services-grid,
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .choose-image {
    height: 160px;
  }
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products {
  padding: 80px 20px;
  background: var(--light-gray);
  width: 100%;
  overflow: hidden;
}

/* Category Wrapper */
.category-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.category-header {
  text-align: left;
  margin-bottom: 25px;
}

.category-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 400;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
}

.category-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(129, 199, 132, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.category-btn:hover::before {
  width: 300px;
  height: 300px;
}

.category-btn:hover {
  border-color: rgba(129, 199, 132, 0.3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(129, 199, 132, 0.2);
}

.category-btn.active {
  background: linear-gradient(135deg, #81c784, #66bb6a);
  border-color: transparent;
  color: #121212;
  font-weight: 600;
  box-shadow: 0 15px 30px -8px rgba(129, 199, 132, 0.4);
}

.category-btn.active .btn-icon {
  transform: scale(1.1);
}

.btn-icon {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 8px;
  color: currentColor;
  transition: all 0.2s ease;
}

.category-btn.active .btn-count {
  background: rgba(0,0,0,0.2);
  color: #121212;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.product-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  max-width: 100%;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(129, 199, 132, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay h4 {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 20px;
  background: var(--light);
  border-radius: 30px;
  word-wrap: break-word;
  max-width: 90%;
  text-align: center;
}

.product-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--light);
  font-weight: 600;
  word-wrap: break-word;
}

.product-content p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
  word-wrap: break-word;
}

.products-view-more {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

/* Products Grid Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 60px 15px;
  }
  .category-wrapper {
    padding: 0 15px;
    margin-bottom: 35px;
  }
  .category-filter {
    padding: 15px;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .category-filter::-webkit-scrollbar { display: none; }
  .category-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .btn-icon { font-size: 1rem; }
  .btn-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
    padding: 0 6px;
  }
}

@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .product-image {
    height: 150px;
  }
  .product-content {
    padding: 14px;
  }
  .product-content h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SUCCESS POPUP MODAL
   ============================================= */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 20px;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background: #1e1e1e;
  border: 1px solid rgba(129, 199, 132, 0.2);
  border-radius: 24px;
  padding: 50px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
  transform: scale(0.85) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.success-overlay.show .success-modal {
  transform: scale(1) translateY(0);
}

.success-modal::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #81c784, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(129, 199, 132, 0.35);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-icon-wrap svg {
  width: 38px;
  height: 38px;
  stroke: #121212;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.checkmark-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s ease 0.4s forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #e8f5e9;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.success-sub {
  font-size: 0.95rem;
  color: #b0bec5;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-sub strong {
  color: #81c784;
}

.success-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}

.success-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #81c784;
  opacity: 0.3;
}
.success-dots span:nth-child(2) { opacity: 0.6; }
.success-dots span:nth-child(3) { opacity: 1; }

.success-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #81c784, #4caf50);
  color: #121212;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(129, 199, 132, 0.3);
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(129, 199, 132, 0.4);
}

.success-close-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .success-modal {
    padding: 40px 24px 32px;
    border-radius: 20px;
  }
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews {
  padding: 60px 20px !important;
  background: #1a1a1a;
  width: 100%;
  overflow: hidden !important;
  position: relative;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.review-carousel {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 320px !important;
  overflow: hidden !important;
  margin: 0 auto 30px;
}

.review-card {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out !important;
  box-sizing: border-box;
  margin: 0 !important;
  height: auto !important;
  max-height: none !important;
  z-index: 1;
}

.review-card.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  position: relative !important;
  left: 0 !important;
  z-index: 2;
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--light);
  word-wrap: break-word;
}

.reviewer-info p {
  color: var(--gray);
  font-size: 0.85rem;
  word-wrap: break-word;
}

.review-rating {
  color: var(--accent);
  font-size: 1.1rem;
  display: flex;
  gap: 3px;
}

.review-body {
  margin-bottom: 15px;
  width: 100%;
}

.review-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light);
  word-wrap: break-word;
}

.review-quote {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 2.5rem;
  opacity: 0.3;
}

.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.control-btn:hover {
  background: var(--primary);
  color: var(--dark);
}

.control-btn:active,
.control-btn:focus {
  background: var(--primary) !important;
  color: var(--dark) !important;
  transform: scale(0.95);
  box-shadow: none !important;
}

.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent !important;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .reviews {
    padding: 40px 15px !important;
  }
  .review-carousel {
    min-height: 300px !important;
    margin-bottom: 20px;
  }
  .review-card {
    padding: 20px;
    border-radius: 12px;
  }
  .review-controls {
    margin-top: 20px;
    gap: 15px;
  }
  .control-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 30px 12px !important;
  }
  .review-carousel {
    min-height: 340px !important;
  }
}

/* =============================================
   FEATURED SECTION
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

.featured-section {
  position: relative;
  padding: 100px 0 80px;
  background: #0d0d0d;
  overflow: hidden;
  width: 100%;
}

.feat-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}
.feat-blob-1 {
  width: 500px; height: 500px;
  background: #81c784;
  top: -150px; left: -100px;
  animation: blobDrift1 12s ease-in-out infinite;
}
.feat-blob-2 {
  width: 400px; height: 400px;
  background: #ffc107;
  bottom: -100px; right: -80px;
  animation: blobDrift2 10s ease-in-out infinite;
}
.feat-blob-3 {
  width: 300px; height: 300px;
  background: #4caf50;
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation: blobDrift1 15s ease-in-out infinite reverse;
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.1); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, -30px) scale(1.15); }
}

.feat-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(129, 199, 132, 0.25);
  animation: particleFloat linear infinite;
}
.p1 { left: 8%;  top: 15%; animation-duration: 8s;  animation-delay: 0s; }
.p2 { left: 20%; top: 70%; animation-duration: 11s; animation-delay: 2s; }
.p3 { left: 75%; top: 20%; animation-duration: 9s;  animation-delay: 1s; }
.p4 { left: 88%; top: 60%; animation-duration: 13s; animation-delay: 3s; }
.p5 { left: 50%; top: 85%; animation-duration: 7s;  animation-delay: 0.5s; }
.p6 { left: 35%; top: 10%; animation-duration: 10s; animation-delay: 4s; }

@keyframes particleFloat {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0.2; }
  50%  { transform: translateY(-30px) rotate(180deg); opacity: 0.5; }
  100% { transform: translateY(0)   rotate(360deg); opacity: 0.2; }
}

.feat-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.feat-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.eyebrow-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, #81c784);
  border-radius: 2px;
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, #81c784, transparent);
}

.eyebrow-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #81c784;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #e8f5e9;
  line-height: 1.1;
  margin-bottom: 16px;
}

.feat-title-accent {
  color: #81c784;
  position: relative;
  display: inline-block;
}

.feat-title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: rgba(255, 193, 7, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.feat-subtitle {
  font-size: 1.05rem;
  color: #90a4ae;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Featured Banner */
.feat-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #161616 100%);
  border: 1px solid rgba(129, 199, 132, 0.12);
  border-radius: 28px;
  padding: 60px;
  margin: 0 20px 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.feat-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #81c784, #ffc107, #81c784, transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.feat-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
  animation: tagPulse 2.5s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
  50%       { box-shadow: 0 0 0 8px rgba(255,193,7,0); }
}

.feat-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #e8f5e9;
  line-height: 1.15;
  margin-bottom: 20px;
}

.feat-banner-title span { color: #81c784; }

.feat-banner-desc {
  color: #90a4ae;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 380px;
}

.feat-banner-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.feat-stat { text-align: center; }

.feat-stat-num {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #81c784;
  line-height: 1;
}

.feat-stat-label {
  display: block;
  font-size: 0.75rem;
  color: #607d8b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.feat-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.08);
}

.feat-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #81c784, #4caf50);
  color: #121212;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(129, 199, 132, 0.3);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.feat-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.feat-cta-btn:hover::before { left: 100%; }

.feat-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(129, 199, 132, 0.45);
}

.feat-btn-icon {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.feat-cta-btn:hover .feat-btn-icon { transform: translateX(4px); }

.feat-banner-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.feat-orbit {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.feat-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(129,199,132,0.15);
}

.ring-1 { width: 360px; height: 360px; animation: orbitSpin 20s linear infinite; }
.ring-2 { width: 460px; height: 460px; animation: orbitSpin 30s linear infinite reverse; }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.feat-main-img-wrap {
  position: relative;
  z-index: 2;
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(129, 199, 132, 0.3);
  box-shadow: 0 0 0 12px rgba(129,199,132,0.06), 0 30px 60px rgba(0,0,0,0.5);
  animation: imgFloat 4s ease-in-out infinite;
}

@keyframes imgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.feat-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feat-main-img-wrap:hover .feat-main-img { transform: scale(1.08); }

.feat-img-badge {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(129,199,132,0.3);
  color: #81c784;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}

.feat-float-card {
  position: absolute;
  background: rgba(30,30,30,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(129,199,132,0.2);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 3;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e8f5e9;
  min-width: 140px;
}

.feat-float-card img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.fc-1 { top: 30px; left: -20px; animation: floatCard1 5s ease-in-out infinite; }
.fc-2 { bottom: 60px; right: -10px; animation: floatCard2 6s ease-in-out infinite; }

@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-8px, -10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(8px, -8px); }
}

.feat-products-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 20px 24px;
  position: relative;
  z-index: 2;
}

.feat-products-label span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #81c784;
  white-space: nowrap;
}

.feat-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(129,199,132,0.3), transparent);
}

/* Scroll Strip */
.feat-scroll-wrapper {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.feat-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.feat-scroll-track::-webkit-scrollbar { display: none; }

.feat-product-card {
  flex: 0 0 220px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.feat-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(129,199,132,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(129,199,132,0.15);
}

.feat-prod-img-wrap {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.feat-prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feat-product-card:hover .feat-prod-img-wrap img { transform: scale(1.1); }

.feat-prod-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feat-product-card:hover .feat-prod-shine { opacity: 1; }

.feat-prod-info {
  padding: 16px;
}

.feat-prod-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8f5e9;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feat-prod-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #81c784;
  background: rgba(129,199,132,0.1);
  border: 1px solid rgba(129,199,132,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.feat-viewall-card {
  flex: 0 0 220px;
  background: linear-gradient(135deg, rgba(129,199,132,0.08), rgba(76,175,80,0.05));
  border: 1px dashed rgba(129,199,132,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.feat-viewall-card:hover {
  background: linear-gradient(135deg, rgba(129,199,132,0.15), rgba(76,175,80,0.1));
  border-color: rgba(129,199,132,0.5);
}

.feat-viewall-inner {
  text-align: center;
  padding: 24px 16px;
}

.feat-viewall-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #81c784, #4caf50);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #121212;
  margin: 0 auto 14px;
  box-shadow: 0 10px 20px rgba(129,199,132,0.3);
  transition: transform 0.3s ease;
}

.feat-viewall-card:hover .feat-viewall-icon { transform: scale(1.1) rotate(-5deg); }

.feat-viewall-inner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #e8f5e9;
  margin-bottom: 6px;
}

.feat-viewall-inner p {
  font-size: 0.78rem;
  color: #607d8b;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feat-viewall-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(129,199,132,0.3);
  color: #81c784;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.feat-viewall-card:hover .feat-viewall-arrow {
  background: #81c784;
  color: #121212;
  transform: translateX(3px);
}

.feat-scroll-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(30,30,30,0.95);
  border: 1px solid rgba(129,199,132,0.25);
  border-radius: 50%;
  color: #81c784;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.feat-scroll-btn:hover {
  background: #81c784;
  color: #121212;
  border-color: #81c784;
  box-shadow: 0 8px 20px rgba(129,199,132,0.3);
}

.feat-scroll-prev { left: -18px; }
.feat-scroll-next { right: -18px; }

.feat-fade-left,
.feat-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 5;
}

.feat-fade-left  { left: 0;  background: linear-gradient(90deg, #0d0d0d, transparent); }
.feat-fade-right { right: 0; background: linear-gradient(270deg, #0d0d0d, transparent); }

/* Scroll reveal */
.feat-banner,
.feat-header,
.feat-scroll-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.feat-banner.reveal,
.feat-header.reveal,
.feat-scroll-wrapper.reveal {
  opacity: 1;
  transform: translateY(0);
}

.feat-banner { transition-delay: 0.15s; }
.feat-scroll-wrapper { transition-delay: 0.3s; }

/* Featured Responsive */
@media (max-width: 992px) {
  .feat-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
    margin: 0 15px 60px;
  }
  .feat-banner-right { min-height: 320px; }
  .fc-1 { left: 0; }
  .fc-2 { right: 0; }
}

@media (max-width: 768px) {
  .featured-section { padding: 70px 0 60px; }
  .feat-banner { padding: 30px 20px; gap: 30px; margin: 0 15px 40px; }
  .feat-banner-stats { gap: 16px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 340px; height: 340px; }
  .feat-main-img-wrap { width: 220px; height: 220px; }
  .feat-scroll-prev { left: -10px; }
  .feat-scroll-next { right: -10px; }
  .feat-product-card { flex: 0 0 180px; }
  .feat-prod-img-wrap { height: 130px; }
  .feat-products-label { margin: 0 15px 24px; }
}

@media (max-width: 480px) {
  .feat-banner-desc { font-size: 0.9rem; }
  .feat-cta-btn { width: 100%; justify-content: center; }
  .feat-scroll-btn { display: none; }
  .feat-fade-left, .feat-fade-right { width: 30px; }
  .feat-banner { margin: 0 10px 30px; padding: 24px 16px; }
  .feat-scroll-wrapper { padding: 0 10px; }
  .feat-products-label { margin: 0 10px 24px; }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  padding: 80px 20px;
  background: var(--dark);
  width: 100%;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

.contact-details {
  margin: 40px 0;
  width: 100%;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
  background: var(--card-bg);
  transition: var(--transition);
  width: 100%;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--light);
  word-wrap: break-word;
}

.contact-item p {
  color: var(--gray);
  word-wrap: break-word;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--light-gray);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent !important;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
}

.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light-gray);
  color: var(--light);
  box-sizing: border-box;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.contact-form button {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 15px !important;
  }
  .contact-form {
    padding: 25px !important;
  }
  .contact-item {
    padding: 20px;
    gap: 15px;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .contact-item:hover {
    transform: translateX(5px);
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}


/* =============================================
   WHATSAPP CHAT NOW BUTTON
   ============================================= */
/* =============================================
   WHATSAPP CHAT NOW BUTTON
   ============================================= */
.chat-now-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;          /* raised higher than everything */
  display: flex !important; /* force visible */
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: chatPulse 2.5s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}

.chat-now-btn i {
  font-size: 1.4rem;
  line-height: 1;
}

.chat-now-btn:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.chat-now-btn:active {
  transform: translateY(0) scale(0.98);
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.75); }
}

/* Tablet */
@media (max-width: 768px) {
  .chat-now-btn {
    bottom: 22px;
    right: 22px;
    padding: 12px 18px;
    font-size: 0.88rem;
    z-index: 99999;
  }
}

/* Mobile — icon only circle */
@media (max-width: 480px) {
  .chat-now-btn {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    z-index: 99999;
  }

  .chat-now-btn span {
    display: none;
  }

  .chat-now-btn i {
    font-size: 1.7rem;
    margin: 0;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: linear-gradient(135deg, #1a1a1a, var(--dark));
  color: var(--light);
  padding: 60px 20px 30px;
  width: 100%;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
  text-align: left;
}

.footer-logo {
  text-align: left;
}

.footer-logo .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.footer-logo .logo-icon {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
}

.footer-logo h1,
.footer-logo p {
  color: var(--light);
}

.footer-description {
  margin-top: 20px;
  opacity: 0.8;
  line-height: 1.7;
  word-wrap: break-word;
  text-align: left;
  width: 100%;
}

.footer-links,
.footer-services,
.footer-newsletter {
  text-align: left;
  width: 100%;
  overflow: hidden;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--light);
  word-wrap: break-word;
  text-align: left;
  width: 100%;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--accent);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.footer-links a,
.footer-services a {
  color: rgba(232, 245, 233, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--light);
  padding-left: 5px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
  word-wrap: break-word;
  text-align: left;
  width: 100%;
}

.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  color: var(--light);
  font-family: "Poppins", sans-serif;
  min-width: 0;
  width: 100%;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(232, 245, 233, 0.6);
}

.newsletter-form button {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #ffb300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.footer-bottom p {
  opacity: 0.8;
  word-wrap: break-word;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: rgba(232, 245, 233, 0.8);
  text-decoration: none;
  transition: var(--transition);
  word-wrap: break-word;
  white-space: nowrap;
}

.footer-policies a:hover {
  color: var(--light);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .footer-logo,
  .footer-links,
  .footer-services,
  .footer-newsletter {
    text-align: left !important;
  }
  .footer-links h4::after,
  .footer-services h4::after,
  .footer-newsletter h4::after {
    left: 0 !important;
    transform: none !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }
  .footer-policies {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
  }
  footer {
    padding: 40px 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .footer-policies {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    background: transparent;
    gap: 10px;
  }
  .newsletter-form input {
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
  }
  .newsletter-form button {
    border-radius: 50px;
    padding: 12px 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .chat-now-btn {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
  }

  .chat-now-btn span {
    display: none;
  }

  .chat-now-btn i {
    font-size: 1.7rem;
    margin: 0;
  }
}

/* =============================================
   GLOBAL RESPONSIVE FIXES
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
  }
}

/* =============================================
   REMOVE ALL BLUE TAP HIGHLIGHTS
   ============================================= */
button:active,
button:focus,
.btn:active,
.btn:focus,
.control-btn:active,
.control-btn:focus,
.hamburger:active,
.hamburger:focus,
a:active,
a:focus {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

@supports (-webkit-touch-callout: none) {
  button,
  .btn,
  .control-btn,
  .hamburger {
    -webkit-tap-highlight-color: transparent !important;
  }
}