* {
  font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #222;
}

/* NAVBAR */
.navbar {
  font-family: 'poppins';
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 10px 40px;
}

/* LOGO */
.logo img {
  width: 160px;
  height: 80px;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 12px;
  color: #F4F4F4; /* white over hero */
  text-decoration: none;
  font-weight: 500;
}

.navbar.scrolled .nav-links a {
  color: #333;
}

.nav-links a:hover {
  color: #78c91a;
}
.btn {
  background: #78c91a;
  color: #fff !important;
  padding: 8px 10px;
  border-radius: 6px;
}

/* Check if dropdown invisible on scroll */
.navbar.scrolled .drop-btn {
  color: #333 !important;
  padding: 8px 10px ;
  border-radius: 6px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;

}
.drop-btn {
  margin: 0 12px;
  color: inherit; /* keeps same color as other nav links */
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333!important;
}
.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #78c91a !important;
}


/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.navbar.scrolled .mobile-toggle {
  color: #333;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #333;
    margin: 10px 0;
  }

  .mobile-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: zoomEffect 12s ease-in-out infinite;
}

.slide.active {
  opacity: 1;
}

@keyframes zoomEffect {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

/* HERO CONTENT */
.hero-content {
 position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 40px);
  text-align: center;
  opacity: 0;
  transition: 0.9s ease-out;
}

.hero-content.fade-up-active {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-content h1 {
  font-size: 70px;
  color: #fff;
}

.hero-content h4 {
  font-size: 30px;
  color: #fff;
}

.btn-primary {
  background: #a6ea14;
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 9999; /* keeps dots above slides */
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.85);
  border: 2px solid #85f174; 
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #78c91a; /* visible active state */
  border-color: #78c91a;
}

/* ===================== USE CASE SECTION ===================== */

.use-case-section {
  width: 100%;
  padding: 50px 20px;
  background: #f9f9f9;      /* soft background */
  text-align: center;
  position: relative;
  z-index: 25;
}

/* ========== SLIDER CONTAINER ========== */

.use-case-slider {
  display: flex;
  gap: 28px;
  overflow: hidden;        /* ensures no ugly scrollbars */
  white-space: nowrap;
  padding: 10px 5px 20px;
  scroll-behavior: smooth;
  align-items: flex-start;
}


/* ========== CARD DESIGN ========== */

.use-case-card {
  min-width: 260px;       /* bigger cards look better */
  background: #ffffff;
  border: 1px solid #8bd631;   /* brighter green for premium look */
  border-radius: 15px;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}


/* ========== IMAGE AREA ========== */

.use-case-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #eaeaea;    /* placeholder if image fails */
  display: block;
}


/* ========== LABEL TEXT ========== */

.use-case-card p {
  padding: 12px 10px;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
}


/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .use-case-card {
    min-width: 200px;
  }

  .use-case-card img {
    height: 150px;
  }

  .use-case-title {
    font-size: 28px;
  }
}
/* ===================== PRODUCT OF THE MONTH ===================== */

.potm-section {
  padding: 60px 20px;
  background: #f1f1f1;      /* same soft grey like screenshot */
  text-align: center;
}

.potm-title {
  font-size: 38px;
  font-weight: 600;
  color: #78c91a;          
  margin-bottom: 40px;
}

/* GRID */
.potm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.potm-card {
  background: url("images/texture-bg.jpg");
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.potm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

/* IMAGE */
.potm-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* TEXT BLOCK */
.potm-category {
  font-size: 18px;
  color:#78c91a;
  font-weight: 600;
}

.potm-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0;
  color: #222;
}

.potm-price {
  font-size: 18px;
  color: #78c91a;
  font-weight: 600;
  margin-top: 10px;
}
/* ===================== PRODUCT CATEGORY SECTION ===================== */

.category-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.category-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #78c91a;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.category-card {
  text-align: center;
}

/* IMAGE BOX */
.category-img {
  width: 100%;
  height: 400px;
  background-image: url("images/texture-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.category-img img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* CATEGORY NAME */
.category-name {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Image box hover effects */
.category-img {
  transition: 0.35s ease;
  border: 1.5px solid transparent;
}

.category-card:hover .category-img {
  transform: scale(1.03);
  border-color: #8bd631; /* Lemon green highlight */
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* Product image zoom effect */
.category-img img {
  transition: 0.35s ease;
}

.category-card:hover .category-img img {
  transform: translateX(-50%) scale(1.1);
}


/* ---------------- TESTIMONIALS SECTION ---------------- */

.testimonials {
  padding: 80px 8%;
  background: #EADE00;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #222;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  border: 2px solid #efefef;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.quote-icon {
  font-size: 42px;
  color: #78c91a;
  opacity: 0.4;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-top: 10px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ---------- SALES / AFTER SERVICE ---------- */
.service-section{padding:56px 0;background:var(--muted);text-align:center}
.service-title{color:var(--brand-green);font-size:30px;margin-bottom:8px}
.service-subtitle{color:#555;margin-bottom:24px;max-width:820px;margin-left:auto;margin-right:auto}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;max-width:var(--max-w);margin:0 auto;padding:0 20px}
.service-card{background:#fff;padding:20px;border-radius:14px;box-shadow:var(--card-shadow);text-align:center}
.service-card img{width:72px;height:72px;object-fit:contain;margin-bottom:12px}
.service-card h3{font-size:18px;margin-bottom:8px}
/* ---------------- FOOTER ---------------- */

.footer {
  background: #111; 
  color: #fff;
  padding: 50px 10%;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #78c91a;  /* Lemon green */
}

.footer-col p,
.footer-col ul li a {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a:hover {
  color: #78c91a;
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #bbb;
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* ==================== ABOUT PAGE - NEW DESIGN ==================== */

/* Hero Section */
.about-hero-new {
  height: 60vh;
  background: url("images/aboutus.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120, 201, 26, 0.8) 0%, rgba(90, 158, 21, 0.85) 100%);
}

.about-hero-new .about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero-new h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero-new p {
  font-size: 22px;
  font-weight: 400;
}

/* Company Story */
.company-story {
  padding: 100px 8%;
  background: #fff;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: #78c91a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.story-content h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
  line-height: 1.3;
}

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Stats Section */
.stats-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  color: #fff;
  padding: 30px 20px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
}

/* Mission & Vision */
.mission-vision {
  padding: 100px 8%;
  background: #f9f9f9;
}

.mv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card {
  border-top: 5px solid #78c91a;
}

.vision-card {
  border-top: 5px solid #EADE00;
}

.mv-icon {
  font-size: 48px;
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 8%;
  background: #fff;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid transparent;
}

.why-card:hover {
  background: #fff;
  border-color: #78c91a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Our Values */
.our-values {
  padding: 100px 8%;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.value-item {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.value-item:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-number {
  font-size: 48px;
  font-weight: 700;
  color: #78c91a;
  opacity: 0.2;
  line-height: 1;
}

.value-item div {
  flex: 1;
}

.value-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Team Section */
.team-section {
  padding: 100px 8%;
  background: #fff;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-header p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.founder-spotlight {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  background: #f9f9f9;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.founder-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}

.founder-signature p {
  font-size: 17px;
  color: #222;
  margin-bottom: 5px;
}

/* Certifications */
.certifications {
  padding: 100px 8%;
  background: #f9f9f9;
}

.cert-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cert-header {
  text-align: center;
  margin-bottom: 60px;
}

.cert-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cert-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 2px solid transparent;
}

.cert-card:hover {
  border-color: #78c91a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cert-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.cert-card p {
  font-size: 14px;
  color: #666;
}

/* About Contact Section */
.about-contact {
  padding: 100px 8%;
  background: #fff;
}

.about-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-box {
  background: #f9f9f9;
  padding: 50px 40px;
  border-radius: 20px;
  border-left: 5px solid #78c91a;
}

.contact-info-box h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #222;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 32px;
  min-width: 40px;
}

.contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.contact-map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* About CTA */
.about-cta {
  padding: 100px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  text-align: center;
}

.about-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.about-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-primary {
  background: #fff;
  color: #78c91a;
}

.btn-cta-primary:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: #78c91a;
  transform: translateY(-3px);
}

/* ==================== RESPONSIVE - ABOUT PAGE ==================== */

@media (max-width: 1024px) {
  .story-container,
  .mv-container,
  .about-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-spotlight {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-new h1 {
    font-size: 38px;
  }

  .about-hero-new p {
    font-size: 18px;
  }

  .story-content h2,
  .why-header h2,
  .values-header h2,
  .team-header h2,
  .cert-header h2 {
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 48px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .company-story,
  .mission-vision,
  .why-choose-us,
  .our-values,
  .team-section,
  .certifications,
  .about-contact,
  .about-cta {
    padding: 60px 20px;
  }

  .mv-card,
  .contact-info-box {
    padding: 30px 25px;
  }

  .founder-spotlight {
    padding: 30px 20px;
  }

  .value-item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 25px;
  }

  .value-number {
    font-size: 36px;
  }
}
/* ==================== PRODUCTS PAGE ==================== */

.products-hero {
  height: 40vh;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.products-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-hero-content p {
  font-size: 18px;
}

/* Filter Section */
.filter-section {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.filter-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #78c91a;
  color: #fff;
  border-color: #78c91a;
}

/* Products Section */
.products-section {
  padding: 60px 8%;
  background: #f9f9f9;
}

.products-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 280px;
  background: url("images/texture-bg.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #78c91a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.new {
  background: #ff6b6b;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.4;
}

.product-specs {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #78c91a;
  margin-bottom: 15px;
}

.btn-view-details {
  width: 100%;
  padding: 12px;
  background: #78c91a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-view-details:hover {
  background: #5a9e15;
}

/* ==================== TESTIMONIALS PAGE ==================== */

/* Hero Section */
.testimonials-hero {
  height: 50vh;
  background: linear-gradient(135deg, #EADE00 0%, #c4b900 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.testimonials-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #222;
}

.testimonials-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-hero-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Rating Overview - Enhanced */
.rating-overview {
  padding: 80px 8%;
  background: #fff;
}

.rating-stats {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.overall-rating {
  text-align: center;
  padding: 30px;
}

.overall-rating h2 {
  font-size: 80px;
  font-weight: 700;
  color: #78c91a;
  margin-bottom: 10px;
  line-height: 1;
}

.stars {
  font-size: 32px;
  color: #ffc107;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.overall-rating p {
  color: #666;
  font-size: 16px;
}

.rating-breakdown {
  flex: 1;
  max-width: 450px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.rating-bar span:first-child {
  width: 50px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.rating-bar .bar {
  flex: 1;
  height: 10px;
  background: #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #78c91a 0%, #5a9e15 100%);
  transition: width 0.6s ease;
}

.rating-bar span:last-child {
  width: 50px;
  text-align: right;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

/* Testimonials Grid - Enhanced */
.testimonials-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-left: 4px solid transparent;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-left-color: #78c91a;
}

.review-header {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  align-items: center;
}

.review-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #78c91a;
}

.review-info {
  flex: 1;
}

.review-info h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.review-location {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.review-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.review-product {
  font-size: 14px;
  color: #78c91a;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-date {
  font-size: 13px;
  color: #aaa;
}

/* Video Testimonials Section */
.video-testimonials {
  padding: 80px 8%;
  background: #fff;
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.video-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.3s;
}

.video-card:hover .video-thumbnail img {
  opacity: 1;
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(120, 201, 26, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.video-card:hover .play-button {
  background: #78c91a;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 25px;
}

.video-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.video-info p {
  font-size: 14px;
  color: #666;
}

/* Customer Stats Section */
.customer-stats {
  padding: 80px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.stats-container h2 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

.stats-container .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

/* Testimonial CTA - Enhanced */
.testimonial-cta {
  padding: 100px 8%;
  background: linear-gradient(135deg, #EADE00 0%, #c4b900 100%);
  text-align: center;
}

.testimonial-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.testimonial-cta-content p {
  font-size: 20px;
  color: #333;
  margin-bottom: 35px;
}

.testimonial-cta .btn-primary {
  background: #78c91a;
  color: #fff;
  padding: 16px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-cta .btn-primary:hover {
  background: #5a9e15;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==================== RESPONSIVE - TESTIMONIALS ==================== */

@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .rating-stats {
    flex-direction: column;
    gap: 40px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .stats-container .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-hero-content h1 {
    font-size: 38px;
  }

  .testimonials-hero-content p {
    font-size: 16px;
  }

  .overall-rating h2 {
    font-size: 60px;
  }

  .stars {
    font-size: 24px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .stats-container .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-cta-content h2 {
    font-size: 32px;
  }

  .video-header h2,
  .stats-container h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .rating-overview,
  .testimonials-section,
  .video-testimonials,
  .customer-stats,
  .testimonial-cta {
    padding: 60px 20px;
  }

  .review-card {
    padding: 25px;
  }

  .overall-rating h2 {
    font-size: 50px;
  }

  .stat-value {
    font-size: 36px;
  }
}

/* ==================== CONTACT PAGE - COMPLETE REDESIGN ==================== */

/* Contact Hero */
.contact-hero {
  height: 50vh;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 80px 8%;
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.info-card {
  text-align: center;
  padding: 45px 30px;
  background: #f9f9f9;
  border-radius: 20px;
  border: 2px solid #e5e5e5;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #78c91a 0%, #5a9e15 100%);
  transform: scaleX(0);
  transition: 0.3s;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  border-color: #78c91a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.info-main {
  font-size: 17px;
  font-weight: 600;
  color: #78c91a;
  margin-bottom: 8px;
}

.info-sub {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

/* Contact Main Section */
.contact-main-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.form-header p {
  font-size: 15px;
  color: #666;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #78c91a;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(120, 201, 26, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-arrow {
  font-size: 20px;
  transition: 0.3s;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(5px);
}

.form-message {
  margin-top: 20px;
  display: none;
}

.success-message {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 15px;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Map Wrapper */
.map-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.map-placeholder {
  position: relative;
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.location-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 20px;
}

.map-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

/* Office Hours */
.office-hours {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.office-hours h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.hours-item .time {
  color: #78c91a;
  font-weight: 500;
  font-size: 15px;
}

.hours-item.closed .time {
  color: #999;
}

/* Social Connect */
.social-connect {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-connect h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  font-size: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
}

.social-btn.facebook {
  background: #f0f5ff;
  color: #1877f2;
}

.social-btn.facebook .social-icon {
  background: #1877f2;
  color: #fff;
}

.social-btn.facebook:hover {
  background: #1877f2;
  color: #fff;
}

.social-btn.instagram {
  background: #fef0f5;
  color: #e4405f;
}

.social-btn.instagram .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.social-btn.linkedin {
  background: #f0f7ff;
  color: #0077b5;
}

.social-btn.linkedin .social-icon {
  background: #0077b5;
  color: #fff;
}

.social-btn.linkedin:hover {
  background: #0077b5;
  color: #fff;
}

.social-btn.youtube {
  background: #fff0f0;
  color: #ff0000;
}

.social-btn.youtube .social-icon {
  background: #ff0000;
  color: #fff;
}

.social-btn.youtube:hover {
  background: #ff0000;
  color: #fff;
}

/* FAQ Section */
.faq-section {
  padding: 80px 8%;
  background: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin: 10px 0 15px;
}

.faq-header p {
  font-size: 16px;
  color: #666;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
  transition: 0.3s;
}

.faq-item.active {
  border-color: #78c91a;
  background: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: rgba(120, 201, 26, 0.05);
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 28px;
  color: #78c91a;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Support Section */
.support-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

.support-container {
  max-width: 1400px;
  margin: 0 auto;
}

.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.support-header p {
  font-size: 17px;
  color: #666;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.support-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-top: 4px solid transparent;
}

.support-card:hover {
  border-top-color: #78c91a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.support-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.support-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.support-link {
  color: #78c91a;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.support-link:hover {
  color: #5a9e15;
}

/* ==================== RESPONSIVE - CONTACT PAGE ==================== */

@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 38px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .form-header h2 {
    font-size: 26px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h2,
  .support-header h2 {
    font-size: 30px;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .social-btn {
    flex: 1;
    min-width: calc(50% - 6px);
  }
}

@media (max-width: 600px) {
  .contact-info-section,
  .contact-main-section,
  .faq-section,
  .support-section {
    padding: 60px 20px;
  }

  .info-card,
  .map-wrapper,
  .office-hours,
  .social-connect {
    padding: 25px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}

/* ==================== BLOG PAGE ==================== */

.blog-hero {
  height: 40vh;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.blog-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

/* Blog Categories */
.blog-categories {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.category-pills {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill-btn {
  padding: 10px 25px;
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.pill-btn.active,
.pill-btn:hover {
  background: #78c91a;
  color: #fff;
  border-color: #78c91a;
}

/* Featured Post */
.featured-post {
  padding: 60px 8%;
  background: #f9f9f9;
}

.featured-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #78c91a;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-category {
  display: inline-block;
  color: #78c91a;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.featured-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

.featured-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #999;
  margin-bottom: 25px;
}

.btn-read-more {
  display: inline-block;
  color: #78c91a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-read-more:hover {
  color: #5a9e15;
}

/* Blog Grid */
.blog-grid-section {
  padding: 60px 8%;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #78c91a;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.4;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 13px;
  color: #999;
}

.blog-link {
  color: #78c91a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.blog-link:hover {
  color: #5a9e15;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 20px;
  background: #78c91a;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.btn-subscribe {
  padding: 15px 35px;
  background: #fff;
  color: #78c91a;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-subscribe:hover {
  background: #222;
  color: #fff;
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
  .products-grid,
  .testimonials-container,
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .featured-container {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 300px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-hero-content h1,
  .testimonials-hero-content h1,
  .contact-hero-content h1,
  .blog-hero-content h1 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .rating-stats {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .products-section,
  .testimonials-section,
  .contact-main-section,
  .blog-grid-section {
    padding: 40px 20px;
  }

  .contact-form-wrapper,
  .map-wrapper {
    padding: 25px;
  }
}