:root {
  --primary: #14532D;
  --secondary: #ECFDF5;
  --accent: #F59E0B;
  --bg-white: #FFFFFF;
  --bg-alt: #F9FAFB;
  --bg-dark: #111827;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --hero-bg-left: #F9FAFB;
  --hero-bg-right: #FFFFFF;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --transition: all 0.3s ease;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

#content,
.site-content,
.site-main,
main,
#page,
.site {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

.site-content {
  overflow-x: hidden;
}

/* Remove any default WordPress spacing */
.page-template-default .site-content,
.page .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 20px 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.bg-secondary {
  background-color: var(--secondary);
}

.text-center {
  text-align: center;
}

/* Sections General */
/* .section-title and .section-subtitle defined in "SHARED PAGE COMPONENTS — PREMIUM" section below */

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: #0d381e;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-white);
}

.btn-accent:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Cards Base (Based on Design Rules) */
.card,
.b2b-card-premium {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.card:hover,
.b2b-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

/* --- 1. Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width:100%;
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* WordPress Menu Styling */
.nav-links .primary-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .primary-menu li {
  margin: 0;
  padding: 0;
}

.nav-links .primary-menu li a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links .primary-menu li a:hover {
  color: var(--accent);
}

.nav-links .primary-menu li.current-menu-item a,
.nav-links .primary-menu li.current_page_item a {
  color: var(--accent);
}

/* Custom Logo Styling */
.logo img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* -- Booking CTA Section (extracted from homepage) -- */
.booking-cta {
  padding: 80px 0;
  border-top: 1px solid #11281A;
  position: relative;
  overflow: hidden;
}

.booking-cta__decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #10B981;
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.booking-cta .container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.booking-text {
  flex: 1 1 400px;
}

.booking-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.booking-text>p {
  color: #64748B;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.booking-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.booking-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.booking-badge__icon {
  background: rgba(20, 83, 45, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-badge__icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.booking-badge__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.booking-badge__subtitle {
  font-size: 0.85rem;
  color: #666;
}

/* Booking Form */
.booking-form-wrapper {
  flex: 1 1 400px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-form-wrapper h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.booking-form .form-row-inline {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.booking-form .form-row-inline>div {
  flex: 1 1 45%;
}

.booking-form .form-group-simple {
  margin-bottom: 15px;
}

.booking-form .form-group-simple--lg {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-body);
}

.booking-form textarea {
  resize: none;
}

.booking-form select {
  background: white;
  cursor: pointer;
}

.booking-form .btn--submit-full {
  width: 100%;
  border-radius: 6px;
  font-size: 1rem;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.booking-form .form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 15px;
}

/* Spacer utility */
.spacer-20 {
  height: 20px;
}

/* Empty State (no products/brands) */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.empty-state--lg {
  padding: 80px 20px;
}

.empty-state__icon {
  font-size: 4rem;
  color: #CBD5E1;
  margin-bottom: 20px;
}

.empty-state__icon--lg {
  font-size: 5rem;
}

.empty-state__title {
  color: #64748B;
  margin-bottom: 10px;
}

.empty-state__text {
  color: #94A3B8;
  margin-bottom: 30px;
}

/* Feature Row CTA Button */
.btn-feature-cta {
  display: inline-flex;
  width: fit-content;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Product Category Label */
.p-category {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 8px;
}

/* Eco subtitle text */
.section-eyebrow {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Badge Color Variants */
.deal-badge--primary {
  background: var(--primary);
}

.deal-badge--red {
  background: #D8423E;
  color: white;
}

/* Quote icon color variants */
.quote-icon--teal {
  color: #6CAB9B;
}

.quote-icon--orange {
  color: #F0A763;
}

.quote-icon--red {
  color: #D8423E;
}

/* Product count text in category cards */
.cat-banner-count {
  font-size: 0.9rem;
  margin: 5px 0 15px;
  opacity: 0.9;
}

/* Footer icon color */
.footer-icon {
  color: var(--secondary);
}

/* Contact form box heading override */
.contact-form-box h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-form-box>p {
  color: #64748B;
  margin-bottom: 30px;
}

/* Contact cards overlap section */
.contact-cards-section {
  background: #FFFFFF;
  padding-top: 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

/* Products topbar heading */
.topbar-heading {
  font-size: 1.4rem;
  color: #1E293B;
  margin: 0;
}

/* Stock status indicators */
.stock-in {
  color: #22C55E;
}

.stock-limited {
  color: #F97316;
}

.stock-backorder {
  color: #F59E0B;
}

/* Filter count text */
.filter-count {
  color: #94A3B8;
}

/* Brand logo image sizing */
.brand-logo-img img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.brand-fallback-text {
  font-size: 1.5rem;
  margin: 0;
  color: #2D2D2D;
}

/* Mini-card link reset */
a.mini-card--link {
  text-decoration: none;
  color: inherit;
}

/* Product link reset */
.product-link {
  color: inherit;
  text-decoration: none;
}

/* Badge subtle variant */
.p-badge--subtle {
  border: none;
  color: #333;
}

/* About image wrapper reverse (for Why Choose Us) */
.about-img-wrapper--reverse {
  padding-left: 20px;
  padding-right: 0;
}

/* Sub-heading dark variant (booking CTA) */
.sub-heading--dark {
  background: rgba(255, 255, 255, 0.1);
  color: #A7F3D0;
}

/* Map iframe border override */
.map-wrapper iframe {
  border: 0;
  border-radius: 12px;
}

/* Contact section subtitle margin override */
.section-subtitle--contact {
  margin-bottom: 40px;
}

/* Container narrow variant */
.container--narrow {
  max-width: 800px;
}

/* Product link unstyled */
.product-link {
  color: inherit;
  text-decoration: none;
}

/* CTA auto-width override for inline CTAs */
.btn-large--auto {
  width: auto;
  display: inline-block;
}

/* Split Hero Responsive */
@media (max-width: 992px) {
  .hero--split .container {
    flex-direction: column;
    gap: 40px;
  }

  .hero--split .hero-text {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero--split .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero--split .hero-btns {
    justify-content: center;
  }

  .hero--split .hero-image {
    flex: 1;
    height: 400px;
    width: 100%;
  }

  .booking-cta .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero--split {
    padding: 80px 0 40px;
  }

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

  .hero--split .hero-image {
    height: 300px;
    transform: none;
    position: relative;
  }

  .hero--split .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .booking-form-wrapper {
    padding: 25px 20px;
  }
}

/* --- 3. Our Story / About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#about {
  background: #FFFFFF;
  padding: 80px 0;
  clear: both;
  display: block;
  width: 100%;
  position: relative;
}

.about-img-wrapper {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.main-about-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--primary);
  z-index: 2;
}

.about-experience-badge .years {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.sub-heading {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.about-text h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.lead-text {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 25px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.about-feature i {
  color: var(--accent);
  font-size: 1.5rem;
}

.about-text p {
  color: #475569;
  margin-bottom: 20px;
}

/* --- 4. Brands Section --- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  width: 100%;
  padding: 30px;
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--card-shadow);
  transform: translateY(-5px);
}

.brand-item img {
  max-width: 120px;
  max-height: 60px;
}

/* --- 5. Products Section --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: none;
}

.products-grid .product-card:nth-child(1) {
  background-color: #6CAB9B;
}

.products-grid .product-card:nth-child(2) {
  background-color: #F0A763;
}

.products-grid .product-card:nth-child(3) {
  background-color: #D8423E;
}

.product-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--bg-white);
}

.product-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card .btn {
  text-align: center;
  width: 100%;
}

.product-card .btn-outline {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.product-card .btn-outline:hover {
  background-color: var(--bg-white);
  color: #1E293B;
}

.product-card .btn-primary {
  background-color: var(--bg-white);
  color: #1E293B;
}

.product-card .btn-primary:hover {
  background-color: #F3F4F6;
  color: #013D29;
}

/* --- 6. Most Popular Section --- */
.popular-card {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- 7. What We Do --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  text-align: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: #E2E8F0;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.services-grid .service-card:nth-child(1) .service-icon {
  background-color: #6CAB9B;
  color: white;
}

.services-grid .service-card:nth-child(2) .service-icon {
  background-color: #F0A763;
  color: white;
}

.services-grid .service-card:nth-child(3) .service-icon {
  background-color: #D8423E;
  color: white;
}

/* --- 8. Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  color: var(--accent);
  font-size: 2rem;
}

.feature-text h4 {
  margin-bottom: 5px;
}

/* --- 9. Distributor Partners --- */
.slider-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.slider-track {
  display: inline-block;
  animation: slide 30s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-item {
  display: inline-block;
  margin: 0 30px;
  vertical-align: middle;
}

.slider-item img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.slider-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --- 10. Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: #64748B;
}

/* --- Video Testimonials Section --- */
.video-testimonials-section {
  background: #FFFFFF;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.video-testimonial-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.video-testimonial-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-testimonial-info {
  padding: 25px;
}

.video-testimonial-info h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.video-testimonial-info p {
  color: #64748B;
  margin-bottom: 20px;
  line-height: 1.6;
}

.video-testimonial-info .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.video-testimonial-info .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.video-testimonial-info .author-info h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.video-testimonial-info .author-info span {
  font-size: 0.85rem;
  color: #64748B;
}

/* --- 11. CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #013D29 0%, #0a5f42 100%);
  color: var(--bg-white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(248, 203, 75, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(216, 66, 62, 0.1);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 12. Footer --- */
.footer,
.site-footer {
  background-color: var(--text-dark);
  color: #94A3B8;
  padding: 80px 0 30px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.footer .container {
  max-width: 100% !important;
  padding: 0 40px;
  margin: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-col p {
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg-white);
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Added Extra Dense Classes --- */
.bg-light-blue {
  background-color: #EAF5F9;
}

.bg-light-yellow {
  background-color: #FEF7E6;
}

.bg-light-mint {
  background-color: #E8F5F1;
}

.bg-light-pink {
  background-color: #FCEEED;
}

.products-grid .product-card:nth-child(4) {
  background-color: #32A267;
}

.products-grid .product-card:nth-child(5) {
  background-color: #DA9E9C;
}

.products-grid .product-card:nth-child(6) {
  background-color: #F7B557;
}

.products-grid .product-card:nth-child(7) {
  background-color: #8589DE;
}

.products-grid .product-card:nth-child(8) {
  background-color: #F6A8C2;
}

.products-grid .product-card:nth-child(9) {
  background-color: #77A371;
}

.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.mini-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.mini-list i {
  color: var(--bg-white);
  font-size: 1.2rem;
}

.dense-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--accent);
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-box p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Update services colors */
.services-grid .service-card {
  border: none;
  color: white;
  background-color: #013D29;
}

.services-grid .service-card:nth-child(1) {
  background-color: #6CAB9B;
}

.services-grid .service-card:nth-child(2) {
  background-color: #D8423E;
}

.services-grid .service-card:nth-child(3) {
  background-color: #F0A763;
}

.services-grid .service-card h3 {
  color: white;
  margin-bottom: 10px;
}

.services-grid .service-card p {
  color: rgba(255, 255, 255, 0.9);
}

.services-grid .service-card .service-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  margin: 0 auto 20px;
  border-radius: 20px;
}

/* --- 4.5 Most Popular Section --- */
.popular-deals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.popular-deal-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-light);
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  max-width: 380px;
}

.popular-deal-card:hover {
  transform: translateY(-10px);
}

.popular-deal-card.highlight {
  border: 2px solid var(--secondary);
  box-shadow: 0 15px 40px rgba(248, 203, 75, 0.2);
}

.deal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deal-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.deal-info {
  padding: 30px;
}

.deal-info h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.price {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.price span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.deal-info p {
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* --- Popular Categories & Brands Mini Grid --- */
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header-flex .section-title {
  text-align: left;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-sm:hover {
  opacity: 0.8;
}

.mini-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 15px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mini-grid::-webkit-scrollbar {
  height: 6px;
}

.mini-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.mini-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.mini-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.mini-card {
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  flex: 0 0 auto;
  width: 140px;
  scroll-snap-align: start;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
}

.mini-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

.mini-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-card h4 {
  font-size: 0.95rem;
  color: #1E293B;
  margin-bottom: 0;
  font-weight: 700;
}

/* --- Premium Products Slider --- */
.premium-products-slider {
  position: relative;
  width: 100%;
}

.premium-cards-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.premium-cards-wrapper::-webkit-scrollbar {
  height: 6px;
}

.premium-cards-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.premium-cards-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev-btn {
  left: -20px;
}

.slider-btn.next-btn {
  right: -20px;
}

.premium-card {
  flex: 0 0 auto;
  width: 320px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.p-img-box {
  background: #DEDAD1;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.p-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  background: transparent;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}

.p-info-box {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.p-info-box h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.p-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.p-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-cart {
  background: #01523A;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.btn-cart:hover {
  opacity: 0.8;
}

/* --- Top Category Grid --- */
.top-cat-slider-wrapper {
  position: relative;
  width: 100%;
}

.top-cat-grid {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.top-cat-grid::-webkit-scrollbar {
  height: 6px;
}

.top-cat-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.top-cat-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.top-cat-card {
  flex: 0 0 auto;
  width: 280px;
  height: 400px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

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

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

.top-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 20px;
}

.top-cat-text {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.explore-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.title-text {
  display: block;
  font-size: 1.8rem;
  font-family: serif;
  font-style: italic;
  font-weight: 600;
}

.top-cat-btn {
  background: #FFFCE8;
  color: #333;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-cat-btn:hover {
  opacity: 0.8;
}

/* --- Feature Discovery Alternating Rows --- */
.feature-discovery {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-row.reverse .f-content {
  background-color: #F4F9F6;
}

.f-content,
.f-image {
  flex: 1 1 50%;
  min-width: 300px;
}

.f-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.f-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background-color: #F8FAFC;
}

.f-text-box {
  max-width: 450px;
}

.f-text-box h2 {
  font-size: 2.5rem;
  color: #2D2D2D;
  margin-bottom: 20px;
}

.title-italic {
  font-family: serif;
  font-style: italic;
  font-weight: 500;
}

.f-text-box p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

@media (max-width: 768px) {

  .feature-row,
  .feature-row.reverse {
    flex-direction: column-reverse;
  }
}

/* --- Dark Mode Utilities --- */
.dark-mode-section {
  background-color: #032115;
  color: #F8FAFC;
}

.dark-mode-section h2,
.dark-mode-section h3,
.dark-mode-section h4,
.dark-mode-section .section-title {
  color: #FFFFFF !important;
}

.dark-mode-section p,
.dark-mode-section .section-subtitle,
.dark-mode-section .lead-text {
  color: #CBD5E1 !important;
}

.dark-mode-section .feature-box h4 {
  color: var(--text-dark) !important;
}

.dark-mode-section .feature-box p {
  color: var(--text-muted) !important;
}

.dark-mode-section .booking-text h2,
.dark-mode-section .booking-text strong {
  color: #FFFFFF !important;
}

.dark-mode-section .booking-text p,
.dark-mode-section .booking-text span {
  color: #CBD5E1 !important;
}

.dark-mode-section .booking-form-wrapper h3,
.dark-mode-section .booking-form-wrapper label {
  color: #1E293B !important;
}

.dark-mode-section .booking-form-wrapper p {
  color: #64748B !important;
}

.dark-mode-section .btn-primary {
  color: white !important;
}

.dark-mode-section .sub-heading {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #A7F3D0 !important;
}

/* --- Infinite Marquee Logo Slider --- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.marquee-track {
  display: inline-flex;
  gap: 5px;
  animation: scrollMarquee 25s linear infinite;
  align-items: center;
  padding: 20px 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #94A3B8;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  cursor: default;
  user-select: none;
}

.marquee-item.brand-logo i {
  font-size: 3rem;
}

.marquee-item.brand-logo:hover {
  color: var(--primary);
  /* Deep brand primary color on hover */
  transform: scale(1.05);
  /* Pop */
}

/* --- Product Listing Page Layout --- */
.product-listing-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* --- Filter Sidebar --- */
.filter-sidebar {
  width: 280px;
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 0;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.filter-header {
  padding: 20px 24px;
  border-bottom: 1px solid #E5E7EB;
  background: #F8FAFC;
}

.filter-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-header h3 i {
  font-size: 1.3rem;
  color: var(--primary);
}

.filter-group {
  border-bottom: 1px solid #F1F5F9;
}

.filter-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.filter-group-title:hover {
  background: #F8FAFC;
}

.filter-group-title span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
}

.filter-group-title i {
  transition: transform 0.3s;
  color: #94A3B8;
  font-size: 1.2rem;
}

.filter-group.collapsed .filter-group-title i {
  transform: rotate(-90deg);
}

.filter-group-body {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Custom scrollbar for filter body */
.filter-group-body::-webkit-scrollbar {
  width: 6px;
}

.filter-group-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.filter-group-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.filter-group-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.filter-group.collapsed .filter-group-body {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.filter-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
  direction: ltr;
  justify-content: flex-start;
}

.filter-checkbox:hover {
  color: var(--primary);
}

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  order: 1;
}

.filter-checkbox span:not(.stars) {
  order: 2;
}

.filter-checkbox {
  flex-wrap: nowrap;
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.color-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.color-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.filter-actions {
  padding: 20px 24px;
  display: flex;
  gap: 10px;
}

.filter-apply-btn {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-apply-btn:hover {
  background: #015C3D;
}

.filter-reset-btn {
  padding: 10px 24px;
  background: #FEE2E2;
  color: #DC2626;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-reset-btn:hover {
  background: #FECACA;
}

/* --- Product Grid Area --- */
.product-grid-area {
  flex: 1;
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E5E7EB;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.view-toggle {
  display: flex;
  gap: 5px;
}

.view-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.2s;
}

.view-btn.active,
.view-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.sort-dropdown {
  padding: 9px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #334155;
  background: #FFFFFF;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
}

.sort-dropdown:focus {
  border-color: var(--primary);
}

/* Product Cards Grid */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-cards-grid .premium-card {
  margin: 0;
}

/* Wishlist Heart Icon */
.p-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #94A3B8;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.p-wishlist:hover {
  color: #EF4444;
  background: #FFF;
  transform: scale(1.1);
}

/* Rating row */
.p-rating {
  margin: 5px 0 8px;
}

/* Old price strikethrough */
.p-old-price {
  font-size: 0.85rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 5px;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E5E7EB;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.page-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #F0FDF4;
}

.page-link.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* --- Contact Page Styles --- */
.contact-hero {
  background: linear-gradient(135deg, #013D29 0%, #0F2E1B 60%, #0B1120 100%);
  padding: 80px 0 120px;
  text-align: center;
}

.contact-hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-hero h1 .text-accent {
  color: #F8CB4B;
  font-style: italic;
  font-family: serif;
}

.contact-hero p {
  color: #CBD5E1;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Info Cards */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #F1F5F9;
}

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

.contact-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #013D29, #16A34A);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.6rem;
}

.contact-icon-circle.email {
  background: linear-gradient(135deg, #7B3AF5, #A855F7);
}

.contact-icon-circle.visit {
  background: linear-gradient(135deg, #D8423E, #F97316);
}

.contact-icon-circle.support {
  background: linear-gradient(135deg, #0EA5E9, #3B82F6);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  color: #1E293B;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #16A34A;
}

/* Contact Grid (Form + Map) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-box {
  background: #FFFFFF;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #F1F5F9;
}

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

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form .form-row .form-group {
  margin-bottom: 0;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: #1E293B;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 61, 41, 0.1);
  background: #FFFFFF;
}

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

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #013D29, #16A34A);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-heading);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 61, 41, 0.3);
}

.contact-submit-btn i {
  font-size: 1.2rem;
}

/* Map Box */
.contact-map-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #F1F5F9;
}

/* Business Hours */
.business-hours-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #F1F5F9;
}

.business-hours-card h3 {
  font-size: 1.1rem;
  color: #1E293B;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-hours-card h3 i {
  color: var(--primary);
  font-size: 1.3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.9rem;
  color: #475569;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-time {
  font-weight: 600;
  color: #1E293B;
}

.hours-time.closed {
  color: #EF4444;
}

/* Social Box */
.contact-social-box {
  background: #FFFFFF;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #F1F5F9;
}

.contact-social-box h3 {
  font-size: 1.1rem;
  color: #1E293B;
  margin-bottom: 15px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #64748B;
  transition: all 0.3s;
}

.social-icon-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(1, 61, 41, 0.25);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #F8FAFC;
}

.faq-question span {
  font-weight: 600;
  font-size: 1rem;
  color: #1E293B;
}

.faq-question i {
  font-size: 1.3rem;
  color: #94A3B8;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-question span {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: #64748B;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Category Banner Grid (Standalone Page) --- */
.category-page-wide {
  max-width: 1400px;
}

.category-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cat-banner-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-banner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cat-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease;
}

.cat-banner-card:hover .cat-banner-bg {
  transform: scale(1.08);
  /* Infinite zoom effect */
}

.cat-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  z-index: 1;
}

.cat-banner-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  color: white;
}

.cat-banner-content h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.explore-btn {
  display: inline-block;
  background: #7B3AF5;
  /* Purple hover button */
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.cat-banner-card:hover .explore-btn {
  opacity: 1;
  transform: translateY(0);
}

.explore-btn:hover {
  background: #632BE3;
  color: white;
  transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

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

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .category-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-banner-card {
    height: 260px;
  }

  .product-listing-layout {
    flex-direction: column;
  }

  .filter-sidebar {
    width: 100%;
    min-width: 100%;
    position: relative;
    top: 0;
  }

  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
    overflow: hidden;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 0px 0;
  }

  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .contact-form-box {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .category-banner-grid {
    grid-template-columns: 1fr;
  }

  .cat-banner-card {
    height: 220px;
  }

  .product-cards-grid {
    grid-template-columns: 1fr;
  }

  .product-topbar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

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

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

  .contact-hero h1 {
    font-size: 1.8rem;
  }
}


/* Loading Spinner */
.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* AJAX Transitions */
#productGrid {
  transition: opacity 0.3s ease;
}

#productGrid.loading {
  opacity: 0.5;
}






/*new form added css*/
/* section center */
.enquiry-section {
  text-align: center;
  padding: 60px 20px;
}

/* heading */
.form-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-subheading {
  color: #666;
  margin-bottom: 30px;
}

/* center form */
.form-container {
  display: flex;
  justify-content: center;
}

/* form row */
.enquiry-section form {
  /* display: flex; */
  gap: 10px;
  align-items: center;
}

/* inputs */
.enquiry-section input,
.enquiry-section textarea {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  height: 42px;
}

/* textarea same height */
.enquiry-section textarea {
  resize: none;
}

/* colors */
.enquiry-section input:nth-child(1) {
  background: #f0fdf4;
}

.enquiry-section input:nth-child(2) {
  background: #eff6ff;
}

.enquiry-section input:nth-child(3) {
  background: #fff7ed;
}

.enquiry-section textarea {
  background: #fdf2f8;
}

/* button */
.enquiry-section button {
  padding: 10px 18px;
  background: #1e5b3a;
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 42px;
  cursor: pointer;
}

.enquiry-section button:hover {
  background: #144d2f;
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 80px;
  color: white;
  text-align: center;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.about-hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.about-hero .hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 50px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.stat-item p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: white;
}

/* Company Overview */
.company-overview {
  padding: 80px 0;
  background: var(--bg-white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.overview-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.overview-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.highlight-item i {
  color: #4CAF50;
  font-size: 20px;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.mv-icon i {
  font-size: 36px;
  color: white;
}

.mv-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Manufacturing & Quality */
.manufacturing-quality {
  padding: 80px 0;
  background: var(--bg-white);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-center h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-header-center p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.quality-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s ease;
}

.quality-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.quality-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.quality-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.usp-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.usp-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.usp-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
  color: var(--text-dark);
}

.usp-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Product Categories Preview */
.product-categories-preview {
  padding: 80px 0;
  background: var(--bg-white);
}

.categories-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-preview-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.category-preview-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.category-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-preview-card:hover .category-preview-image img {
  transform: scale(1.1);
}

.category-preview-card h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 20px 8px;
  color: var(--text-dark);
}

.category-preview-card p {
  font-size: 14px;
  color: var(--text-gray);
  padding: 0 20px 20px;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Industries Served */
.industries-served {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.industry-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 32px;
  }

  .about-hero .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

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

  .quality-grid,
  .usp-grid,
  .categories-preview-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .overview-content h2,
  .section-header-center h2 {
    font-size: 28px;
  }
}


/* ========================================
   SCROLL REVEAL ANIMATION SYSTEM
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 83, 45, 0.2);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(20, 83, 45, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderDraw {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}


/* ========================================
   SHARED PAGE COMPONENTS — PREMIUM
   ======================================== */

/* --- Premium Page Hero Base --- */
.rfq-page,
.faq-page,
.careers-page {
  overflow-x: hidden;
}

.rfq-hero,
.faq-hero,
.careers-hero {
  position: relative;
  padding: 120px 0 100px;
  color: white;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0B3D2E 0%, #14532D 30%, #1a6b3c 60%, #0d4a28 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

/* Mesh gradient overlay */
.rfq-hero::before,
.faq-hero::before,
.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Geometric decoration */
.rfq-hero::after,
.faq-hero::after,
.careers-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  pointer-events: none;
  z-index: 1;
}

.rfq-hero .container,
.faq-hero .container,
.careers-hero .container {
  position: relative;
  z-index: 2;
}

.rfq-hero .hero-content,
.faq-hero .hero-content,
.careers-hero .hero-content {
  max-width: 750px;
  margin: 0 auto;
}

/* Hero badge / label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-label i {
  font-size: 16px;
  color: var(--accent);
}

.rfq-hero h1,
.faq-hero h1,
.careers-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  animation: fadeInUp 0.7s ease-out 0.15s both;
}

.rfq-hero h1 span,
.faq-hero h1 span,
.careers-hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rfq-hero p,
.faq-hero p,
.careers-hero p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.rfq-hero .hero-content .btn-primary,
.careers-hero .hero-content .btn-primary {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent);
  color: #111;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.7s ease-out 0.45s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rfq-hero .hero-content .btn-primary:hover,
.careers-hero .hero-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Floating decoration dots for heroes */
.hero-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration.dot-1 {
  width: 8px;
  height: 8px;
  background: rgba(245, 158, 11, 0.4);
  border-radius: 50%;
  top: 25%;
  left: 10%;
  animation: float 4s ease-in-out infinite;
}

.hero-decoration.dot-2 {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: 60%;
  right: 8%;
  animation: float 5s ease-in-out infinite 1s;
}

.hero-decoration.dot-3 {
  width: 6px;
  height: 6px;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  bottom: 20%;
  left: 20%;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.hero-decoration.ring-1 {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: 15%;
  right: 15%;
  animation: float 6s ease-in-out infinite 2s;
}


/* --- Section Title Premium --- */
.section-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  /* color: #f2f5fc; */
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Premium accent line under section title */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}


/* ========================================
   RFQ PAGE — PREMIUM STYLES
   ======================================== */

/* Benefits */
.rfq-benefits {
  padding: 90px 0;
  background: var(--bg-white);
  position: relative;
}

.rfq-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 45px 30px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(20, 83, 45, 0.12);
  border-color: transparent;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b3c 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
  position: relative;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.15), rgba(245, 158, 11, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(20, 83, 45, 0.3);
}

.benefit-card:hover .benefit-icon::after {
  opacity: 1;
}

.benefit-icon i {
  font-size: 36px;
  color: white;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* RFQ Form Section */
.rfq-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F0FDF9 0%, #F9FAFB 100%);
  position: relative;
}

.rfq-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.form-header {
  text-align: center;
  margin-bottom: 45px;
}

.form-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.rfq-form .form-row,
.career-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 6px;
}

.rfq-form .form-group,
.career-form .form-group {
  margin-bottom: 24px;
  position: relative;
}

.rfq-form label,
.career-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.rfq-form input,
.rfq-form textarea,
.rfq-form select,
.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rfq-form input:focus,
.rfq-form textarea:focus,
.rfq-form select:focus,
.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 83, 45, 0.08);
  background: #fff;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder,
.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #9CA3AF;
}

.rfq-form small,
.career-form small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* File upload premium style */
.rfq-form input[type="file"],
.career-form input[type="file"] {
  padding: 14px 18px;
  background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
  border: 2px dashed var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rfq-form input[type="file"]:hover,
.career-form input[type="file"]:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #ECFDF5, #F0FDF9);
}

.btn-large {
  padding: 17px 50px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b3c 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(20, 83, 45, 0.35);
}

.btn-large:hover::before {
  left: 100%;
}


/* Process / How It Works */
.rfq-process {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
  opacity: 0.2;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 83, 45, 0.1);
  border-color: rgba(20, 83, 45, 0.15);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b3c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  font-family: var(--font-heading);
  box-shadow: 0 6px 20px rgba(20, 83, 45, 0.25);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  animation: pulseGlow 1.5s ease infinite;
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-arrow {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  opacity: 0.3;
}


/* Trust Section */
.rfq-trust {
  padding: 100px 0;
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF9 50%, #F0FDFA 100%);
  position: relative;
  overflow: hidden;
}

.rfq-trust::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 83, 45, 0.04) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.trust-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trust-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.trust-content>p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
  line-height: 1.7;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-stats .stat {
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(20, 83, 45, 0.08);
  transition: all 0.4s ease;
}

.trust-stats .stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(20, 83, 45, 0.1);
  border-color: rgba(20, 83, 45, 0.15);
}

.trust-stats .stat h3 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.trust-stats .stat p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}


/* RFQ Final CTA */
.rfq-final-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #0B3D2E 0%, #14532D 50%, #0d4a28 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rfq-final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.rfq-final-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
}

.rfq-final-cta .container {
  position: relative;
  z-index: 2;
}

.rfq-final-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 18px;
  color: white;
  letter-spacing: -0.5px;
}

.rfq-final-cta p {
  font-size: 19px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.rfq-final-cta .btn-primary {
  padding: 17px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  background: var(--accent);
  color: #111;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rfq-final-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}


/* ========================================
   FAQ PAGE — PREMIUM STYLES
   ======================================== */

/* Search */
.faq-search {
  padding: 0;
  background: transparent;
  margin-top: -35px;
  position: relative;
  z-index: 10;
}

.search-box {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  z-index: 2;
}

.search-box input {
  width: 100%;
  padding: 20px 24px 20px 60px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  font-size: 16px;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-dark);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(20, 83, 45, 0.08);
  background: #fff;
}

.search-box input:focus+i,
.search-box:focus-within i {
  color: var(--primary);
}

.search-box input::placeholder {
  color: #9CA3AF;
}


/* Category Filter Tabs */
.faq-content {
  padding: 70px 0 100px;
  background: var(--bg-white);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 11px 28px;
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 83, 45, 0.04), transparent);
  transition: left 0.5s ease;
}

.category-btn:hover::before {
  left: 100%;
}

.category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 83, 45, 0.1);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b3c 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(20, 83, 45, 0.3);
  transform: translateY(-2px);
}


/* FAQ Accordion Items */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  border-radius: 4px 0 0 4px;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(20, 83, 45, 0.12);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-item.active {
  border-color: rgba(20, 83, 45, 0.15);
  box-shadow: 0 10px 40px rgba(20, 83, 45, 0.08);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 20px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(20, 83, 45, 0.02);
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-question i {
  font-size: 22px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 83, 45, 0.05);
  border-radius: 50%;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  padding: 0 28px;
  display: none;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
  padding-left: 2px;
}


/* FAQ CTA */
.faq-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 83, 45, 0.04), transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}

.faq-cta .cta-content {
  position: relative;
  z-index: 2;
}

.faq-cta .cta-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.faq-cta .cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}

.faq-cta .btn-primary {
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a6b3c 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
}

.faq-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(20, 83, 45, 0.3);
}


/* ========================================
   CAREERS PAGE — PREMIUM STYLES
   ======================================== */

/* Why Work With Us */
.why-work {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.why-work .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-work .benefit-card {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-work .benefit-card:nth-child(1) .benefit-icon {
  background: linear-gradient(135deg, #14532D, #22c55e);
}

.why-work .benefit-card:nth-child(2) .benefit-icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.why-work .benefit-card:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.why-work .benefit-card:nth-child(4) .benefit-icon {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}


/* Job Openings */
.job-openings {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
}

.jobs-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: var(--bg-white);
  padding: 35px 35px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(20, 83, 45, 0.12);
}

.job-card:hover::before {
  transform: scaleY(1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.job-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.job-badge {
  padding: 7px 18px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(20, 83, 45, 0.1);
}

.job-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta i {
  font-size: 18px;
  color: var(--primary);
}

.job-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
}

.apply-btn {
  padding: 12px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.35s ease;
  z-index: -1;
}

.apply-btn:hover {
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 83, 45, 0.25);
}

.apply-btn:hover::before {
  left: 0;
}


/* Application Form */
.application-form {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}


/* Company Culture */
.company-culture {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #ECFDF5 100%);
  position: relative;
  overflow: hidden;
}

.company-culture::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 83, 45, 0.03), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.culture-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.culture-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.culture-content>p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.culture-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.culture-highlights .highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(20, 83, 45, 0.06);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
  transition: all 0.35s ease;
}

.culture-highlights .highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 83, 45, 0.08);
  border-color: rgba(20, 83, 45, 0.12);
}

.culture-highlights .highlight i {
  font-size: 26px;
  color: var(--primary);
  flex-shrink: 0;
}


/* Careers CTA */
.careers-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #0B3D2E 0%, #14532D 50%, #0d4a28 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.careers-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
}

.careers-cta .container {
  position: relative;
  z-index: 2;
}

.careers-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 18px;
  color: white;
  letter-spacing: -0.5px;
}

.careers-cta p {
  font-size: 19px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.careers-cta .btn-primary {
  padding: 17px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  background: var(--accent);
  color: #111;
  border: none;
  transition: all 0.4s ease;
  display: inline-block;
}

.careers-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}


/* ========================================
   RESPONSIVE — ALL 3 PAGES
   ======================================== */

@media (max-width: 1024px) {
  .why-work .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Fix careers opportunity cards on tablet */
  .job-openings > .container > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {

  .rfq-hero,
  .faq-hero,
  .careers-hero {
    padding: 100px 0 80px;
  }

  .rfq-hero h1,
  .faq-hero h1,
  .careers-hero h1 {
    font-size: 32px;
  }

  .rfq-benefits .benefits-grid,
  .why-work .benefits-grid,
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Fix careers opportunity cards on mobile */
  .job-openings > .container > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* Fix gradient card padding on mobile */
  .job-openings div[style*="linear-gradient"] {
    padding: 40px 25px !important;
  }

  /* Fix button wrapping on mobile */
  .job-openings div[style*="flex; gap: 15px"] {
    flex-wrap: wrap !important;
  }

  /* Fix font sizes on mobile */
  .job-openings h3[style*="font-size: 28px"] {
    font-size: 22px !important;
  }

  .job-openings p[style*="font-size: 16px"] {
    font-size: 15px !important;
  }

  .rfq-form .form-row,
  .career-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-wrapper {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .process-steps {
    flex-direction: column;
    gap: 16px;
  }

  .process-steps::before {
    display: none;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 22px;
  }

  .faq-categories {
    flex-direction: column;
    align-items: stretch;
  }

  .category-btn {
    width: 100%;
    text-align: center;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .job-card {
    padding: 25px 20px;
  }

  .job-meta {
    flex-direction: column;
    gap: 8px;
  }

  .culture-highlights {
    grid-template-columns: 1fr;
  }

  .rfq-final-cta,
  .careers-cta {
    padding: 80px 0;
  }

  .rfq-final-cta h2,
  .careers-cta h2 {
    font-size: 28px;
  }

  .search-box {
    margin: 0 20px;
  }

  .search-box input {
    padding: 16px 20px 16px 52px;
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .rfq-benefits,
  .rfq-process,
  .rfq-trust,
  .faq-content,
  .faq-cta,
  .why-work,
  .job-openings,
  .application-form,
  .company-culture {
    padding: 70px 0;
  }

  .rfq-form-section {
    padding: 70px 0;
  }

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 480px) {

  .rfq-hero,
  .faq-hero,
  .careers-hero {
    padding: 80px 0 60px;
  }

  .rfq-hero h1,
  .faq-hero h1,
  .careers-hero h1 {
    font-size: 26px;
  }

  .hero-label {
    font-size: 11px;
    padding: 6px 14px;
  }

  .trust-stats .stat h3 {
    font-size: 36px;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 15px;
  }
}


/* ========================================
   TRUSTED DISTRIBUTION PARTNERS SECTION
   ======================================== */

.partners-section {
  background: #F9FAFB;
  padding: 80px 0;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header .section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.partners-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.partners-slider {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  display: block !important;
  clear: both;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 120px;
}

.partners-slider:last-child {
  margin-bottom: 0;
}

/* Gradient fade effect on edges */
.partners-slider::before,
.partners-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #F9FAFB 0%, transparent 100%);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #F9FAFB 0%, transparent 100%);
}

.partner-logo {
  padding: 0 30px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
  outline: none;
  animation: float 4s ease-in-out infinite;
}

.partner-logo:nth-child(2n) {
  animation: float 5s ease-in-out infinite 0.5s;
}

.partner-logo:nth-child(3n) {
  animation: float 4.5s ease-in-out infinite 1s;
}

.partner-logo img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
 /* filter: grayscale(100%) opacity(0.6);*/
  transition: all 0.3s ease;
  display: block;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Slick slider customization */
.partners-slider .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.partners-slider .slick-track {
  display: flex !important;
  align-items: center;
  margin: 0;
}

.partners-slider .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: auto;
  float: none !important;
}

.partners-slider .slick-slide>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* RTL slider specific fixes */
.partners-slider-rtl.slick-slider {
  direction: rtl;
}

.partners-slider-rtl .slick-slide {
  direction: ltr;
}

/* Hide default slick arrows and dots */
.partners-slider .slick-arrow,
.partners-slider .slick-dots {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-header {
    margin-bottom: 40px;
  }

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

  .partners-header .section-subtitle {
    font-size: 1rem;
  }

  .partner-logo {
    padding: 0 20px;
    height: 80px;
  }

  .partner-logo img {
    max-width: 140px;
    max-height: 60px;
  }

  .partners-slider::before,
  .partners-slider::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 40px 0;
  }

  .partners-header .section-title {
    font-size: 1.75rem;
  }

  .partner-logo {
    padding: 0 15px;
    height: 70px;
  }

  .partner-logo img {
    max-width: 120px;
    max-height: 50px;
  }

  .partners-slider::before,
  .partners-slider::after {
    width: 50px;
  }
}

/* --- Our Product Range Section --- */
.our-product-range {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.product-range-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.product-range-header h2 {
  font-size: 2.8rem;
  color: #334155;
  margin-bottom: 20px;
  font-weight: 500;
}

.product-range-header h2 .highlight-text {
  color: #1e293b;
  font-weight: 700;
}

.product-range-header p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.product-range-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-range-item i {
  font-size: 1.8rem;
  color: #7dd3fc;
  margin-top: 2px;
}

.product-range-content h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.product-range-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .product-range-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-range-header h2 {
    font-size: 2.2rem;
  }
}

/* --- Mission & Vision Alternating Layout --- */
.mission-vision {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mv-row {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-row-reverse {
  flex-direction: row-reverse;
}

.mv-image {
  flex: 1;
  max-width: 50%;
  height: 100%;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.mv-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-content .mv-icon {
  width: 60px;
  height: 60px;
  background: #E8DEF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-content .mv-icon i {
  font-size: 1.8rem;
  color: #6D55A5;
}

.mv-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.mv-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 992px) {

  .mv-row,
  .mv-row-reverse {
    flex-direction: column;
  }

  .mv-image {
    max-width: 100%;
  }

  .mv-image img {
    min-height: 300px;
  }
}

/* --- Company Introduction Section --- */
.company-introduction {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: flex-start;
}

.intro-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-title {
  margin-bottom: 10px;
  line-height: 1.2;
}

.intro-title .fw-light {
  font-weight: 400;
  font-size: 2rem;
  color: #475569;
  display: block;
  margin-bottom: 5px;
}

.intro-title strong {
  font-weight: 700;
  font-size: 2.8rem;
  color: #1e293b;
}

.intro-left p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro-image {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.intro-right p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-title strong {
    font-size: 2.4rem;
  }
}

/* --- Premium Company Introduction Section --- */
.company-introduction-premium {
  padding: 100px 0;
  background-color: var(--bg-alt);
  position: relative;
}

.company-introduction-premium .relative {
  position: relative;
}

.company-introduction-premium .overflow-hidden {
  overflow: hidden;
}

.company-introduction-premium .z-10 {
  z-index: 10;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.decor-top-right {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(20, 83, 45, 0.08);
}

.decor-bottom-left {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background-color: rgba(245, 158, 11, 0.05);
}

.premium-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}

.intro-visuals {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.eyebrow-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 15px;
}

.intro-header .title {
  font-size: 3.2rem;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 0;
  font-weight: 400;
}

.text-gradient {
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary) 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-composition {
  position: relative;
  margin-top: 20px;
}

.main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-white);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 6px solid var(--accent);
  z-index: 5;
}

.experience-badge .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.vision-quote {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.vision-quote .quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 2.5rem;
  color: var(--accent);
  background: var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.vision-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: #334155;
  margin: 0;
  line-height: 1.6;
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}

.intro-content .lead-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.6;
}

.industries-served {
  display: none;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.industries-served .label {
  font-weight: 600;
  color: #64748b;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.industry-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.industry-tags .tag {
  padding: 6px 14px;
  background: #f1f5f9;
  color: #334155;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.industry-tags .tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-focus-card {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.product-focus-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-focus-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.custom-solutions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
}

.custom-solutions i {
  color: var(--accent);
  font-size: 1.5rem;
}

.custom-solutions span {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
}

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

.value-item {
  text-align: center;
}

.value-item .v-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: rgba(20, 83, 45, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.value-item:hover .v-icon {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
}

.value-item h4 {
  font-size: 0.95rem;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
}

.policy-highlight {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.policy-highlight h4 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 8px;
  font-style: italic;
}

.policy-highlight p {
  color: #64748b;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}

.intro-footer-note {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
}

.intro-footer-note p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro-footer-note strong {
  color: #fff;
  font-size: 1.15rem;
}

@media (max-width: 992px) {
  .premium-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intro-header .title {
    font-size: 2.6rem;
  }

  .experience-badge {
    bottom: -10px;
    right: 10px;
    padding: 15px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    background: var(--bg-white);
    padding: 15px;
    border-radius: 12px;
  }

  .value-item .v-icon {
    margin: 0;
  }
}

/* --- Clients / Partners Page --- */
.clients-showcase {
  padding: 80px 0;
  background-color: #ffffff;
}

.client-category {
  margin-bottom: 70px;
}

.client-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(20, 83, 45, 0.1);
  font-weight: 700;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 80px;
  height: 2px;
  background-color: var(--accent);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.client-logo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.client-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(20, 83, 45, 0.2);
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
 /* filter: grayscale(100%) opacity(0.8);*/
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.clients-cta {
  padding: 80px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid #e2e8f0;
}

.clients-cta h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.clients-cta p {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .category-title {
    font-size: 1.8rem;
  }

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

  .client-logo-card {
    padding: 15px;
    height: 100px;
  }

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

@media (max-width: 480px) {
  .client-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Catalog Download Floating Button & Modal --- */

.catalog-floating-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% - 50px));
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 998;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.catalog-floating-btn i {
  font-size: 24px;
  flex-shrink: 0;
}

.catalog-floating-btn .btn-text {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.catalog-floating-btn:hover {
  transform: translateY(-50%) translateX(0);
  background: var(--accent);
}

.catalog-floating-btn:hover .btn-text {
  opacity: 1;
}

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

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

.catalog-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(5px);
}

.catalog-modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 550px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.catalog-modal.active .catalog-modal-content {
  transform: translateY(0) scale(1);
}

.catalog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.catalog-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.catalog-modal-header {
  background: var(--hero-bg-left);
  padding: 30px 40px;
  border-bottom: 1px solid var(--border-light);
}

.catalog-modal-header h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.catalog-modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.catalog-modal-body {
  padding: 30px 40px;
}

/* CF7 Form Overrides within Modal */
.catalog-modal-body .wpcf7-form p {
  margin-bottom: 15px;
}

.catalog-modal-body .wpcf7-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.catalog-modal-body .wpcf7-form input[type="text"],
.catalog-modal-body .wpcf7-form input[type="email"],
.catalog-modal-body .wpcf7-form input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.95rem;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.catalog-modal-body .wpcf7-form input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.1);
  background: #fff;
}

.catalog-modal-body .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.catalog-modal-body .wpcf7-form input[type="submit"]:hover {
  background: #d97706;
  /* Darker accent */
}

.catalog-modal-body .wpcf7-spinner {
  display: none !important;
  /* Hide default spinner, can add custom if needed */
}

/* Success Message Styling */
.success-download {
  text-align: center;
  padding: 20px 0;
}

.success-download i {
  font-size: 64px;
  color: #10b981;
  margin-bottom: 15px;
}

.success-download h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.success-download p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.error-msg {
  color: #ef4444;
  background: #fee2e2;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 480px) {
  .catalog-modal-content {
    width: 95%;
  }

  .catalog-modal-header,
  .catalog-modal-body {
    padding: 20px;
  }
}


/* ========================================
   PARTNER PAGE STYLES
   ======================================== */

/* Why Partner Section */
.why-partner-section {
  padding: 80px 0;
  background: white;
}

.why-partner-section .section-subtitle {
  max-width: 800px;
  margin: 15px auto 40px;
}

/* Benefit Grid Layout */
.partner-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.partner-benefit-grid:last-child {
  margin-bottom: 0;
}

/* Benefit Icon Box */
.partner-benefit-icon-box {
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.partner-benefit-icon-box.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.partner-benefit-icon-box.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
}

.partner-benefit-icon-box.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 40px rgba(79, 172, 254, 0.3);
}

.partner-benefit-icon-box.gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  box-shadow: 0 10px 40px rgba(250, 112, 154, 0.3);
}

.partner-benefit-icon-box.gradient-green {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  box-shadow: 0 10px 40px rgba(17, 153, 142, 0.3);
}

.partner-benefit-icon-box i {
  font-size: 120px;
  opacity: 0.9;
  display: block;
  margin: 20px 0;
}

.partner-benefit-icon-box h3 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: white;
}

/* Benefit Content */
.partner-benefit-icon-wrapper,
.partner-benefit-content-wrapper {
  width: 100%;
}

.partner-benefit-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a202c;
  font-weight: 700;
}

.partner-benefit-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.partner-benefit-content p:last-of-type {
  margin-bottom: 20px;
}

/* Benefit Stats */
.partner-benefit-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.partner-stat-box {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partner-stat-box .stat-value {
  font-size: 24px;
  font-weight: 700;
}

.partner-stat-box .stat-value.color-purple {
  color: #667eea;
}

.partner-stat-box .stat-value.color-pink {
  color: #f093fb;
}

.partner-stat-box .stat-value.color-blue {
  color: #4facfe;
}

.partner-stat-box .stat-value.color-orange {
  color: #fa709a;
}

.partner-stat-box .stat-value.color-green {
  color: #11998e;
}

.partner-stat-box .stat-label {
  font-size: 13px;
  color: #64748b;
}

/* Partnership Types Section */
#partnership-types {
  padding: 80px 0;
  background: #F8FAFC;
}

#partnership-types .section-subtitle {
  max-width: 800px;
  margin: 15px auto 40px;
}

.partnership-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partnership-type-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.partnership-type-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.partnership-type-icon.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.partnership-type-icon.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.partnership-type-icon.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.partnership-type-icon.gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.partnership-type-icon i {
  font-size: 36px;
  color: white;
}

.partnership-type-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a202c;
}

.partnership-type-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Partner Form Section */
.partner-form-section {
  padding: 80px 0;
  background: white;
}

.partner-form-section .section-subtitle {
  margin: 15px auto 40px;
}

.partner-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.partner-form-container {
  background: #F8FAFC;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partner-form-section-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1a202c;
  font-weight: 600;
}

.partner-form-group {
  margin-bottom: 30px;
}

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

.partner-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #1a202c;
  font-weight: 500;
  font-size: 14px;
}

.partner-form-field input,
.partner-form-field select,
.partner-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.partner-form-field input:focus,
.partner-form-field select:focus,
.partner-form-field textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.partner-form-field textarea {
  resize: vertical;
}

.partner-form-submit {
  text-align: center;
  margin-top: 30px;
}

.partner-form-submit button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.partner-form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.partner-form-submit button:active {
  transform: translateY(0);
}

.partner-form-submit p {
  margin-top: 15px;
  font-size: 13px;
  color: #64748b;
}

/* Partner CTA Section */
.partner-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.partner-cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.partner-cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partner-cta-section a {
  background: white;
  color: #667eea;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
}

.partner-cta-section a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .partner-benefit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .partner-benefit-icon-box {
    padding: 40px 30px;
  }

  .partner-benefit-icon-box i {
    font-size: 80px;
  }

  .partner-benefit-icon-box h3,
  .partner-benefit-content h3 {
    font-size: 22px;
  }

  .partner-benefit-content p {
    font-size: 15px;
  }

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

  .partner-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partner-form-container {
    padding: 30px 20px;
  }

  .partner-cta-section h2 {
    font-size: 28px;
  }

  .partner-cta-section p {
    font-size: 16px;
  }
}


/* ========================================
   RFQ PAGE STYLES
   ======================================== */

/* Why Choose Us Section */
.why-choose-us {
  background: #F8FAFC;
  padding: 80px 0;
}

.why-choose-us .section-subtitle {
  max-width: 700px;
  margin: 15px auto 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: center;
}

.why-choose-grid:last-child {
  margin-top: 50px;
}

.why-choose-us .content-block h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a202c;
  font-weight: 700;
}

.why-choose-us .content-block p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.why-choose-us .content-block p:last-child {
  margin-bottom: 0;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background: white;
}

.industries-section .section-subtitle {
  max-width: 800px;
  margin: 15px auto 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.industry-content {
  padding: 35px;
  border-radius: 12px;
  color: white;
  transition: transform 0.3s ease;
}

.industry-content:hover {
  transform: translateY(-5px);
}

.industry-content.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.industry-content.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.industry-content.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.industry-content.gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.industry-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.industry-header i {
  font-size: 48px;
  margin-right: 20px;
}

.industry-header h3 {
  font-size: 24px;
  margin: 0;
  color: white;
}

.industry-content p {
  opacity: 0.95;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* RFQ FAQ Section */
.rfq-faq {
  background: #F8FAFC;
  padding: 80px 0;
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #1a202c;
  user-select: none;
}

.faq-question i {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 25px;
  color: #64748b;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

/* Responsive Design for RFQ */
@media (max-width: 768px) {

  .why-choose-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-us .content-block h3 {
    font-size: 22px;
  }

  .why-choose-us .content-block p {
    font-size: 15px;
  }

  .industry-content {
    padding: 25px;
  }

  .industry-header {
    flex-direction: column;
    text-align: center;
  }

  .industry-header i {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .industry-header h3 {
    font-size: 20px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}


/* ========================================
   FAQ PAGE STYLES
   ======================================== */

/* Quick Help Section */
.quick-help-section {
  padding: 60px 0;
  background: #F8FAFC;
}

.quick-help-section .section-subtitle {
  max-width: 800px;
  margin: 15px auto 40px;
}

.faq-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.faq-help-grid:last-child {
  margin-bottom: 0;
}

/* FAQ Icon Box */
.faq-icon-box {
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.faq-icon-box.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.faq-icon-box.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
}

.faq-icon-box.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 40px rgba(79, 172, 254, 0.3);
}

.faq-step-number {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
}

.faq-step-number span {
  font-size: 48px;
  font-weight: 700;
}

.faq-icon-box i {
  font-size: 120px;
  opacity: 0.9;
  display: block;
  margin: 20px 0;
}

.faq-icon-box h3 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: white;
}

/* FAQ Help Content */
.faq-help-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a202c;
  font-weight: 700;
}

.faq-help-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.faq-help-content p:last-of-type {
  margin-bottom: 20px;
}

/* FAQ Help Stats */
.faq-help-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-stat-box {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-stat-box .stat-value {
  font-size: 24px;
  font-weight: 700;
}

.faq-stat-box .stat-value.color-purple {
  color: #667eea;
}

.faq-stat-box .stat-value.color-pink {
  color: #f093fb;
}

.faq-stat-box .stat-value.color-blue {
  color: #4facfe;
}

.faq-stat-box .stat-label {
  font-size: 13px;
  color: #64748b;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-help-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .faq-icon-box {
    padding: 40px 30px;
  }

  .faq-icon-box i {
    font-size: 80px;
  }

  .faq-icon-box h3,
  .faq-help-content h3 {
    font-size: 22px;
  }

  .faq-help-content p {
    font-size: 15px;
  }

  .faq-step-number {
    width: 60px;
    height: 60px;
  }

  .faq-step-number span {
    font-size: 36px;
  }
}


/* Force remove all top spacing from pages */
.page-template-page-b2b-home .site-content,
.page-template-page-contact .site-content,
.page-template-page-clients .site-content,
.page-template-page-partner .site-content,
.page-template-page-careers .site-content,
.page-template-page-faq .site-content,
.page-template-page-rfq .site-content,
.page-template-page-about .site-content,
.page-template-page-products .site-content,
.page-template-page-categories .site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Force hero to start from top */
.page-template-page-b2b-home main,
.page-template-page-contact main,
.page-template-page-clients main,
.page-template-page-partner main,
.page-template-page-careers main,
.page-template-page-faq main,
.page-template-page-rfq main,
.page-template-page-about main,
.page-template-page-products main,
.page-template-page-categories main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Hero section absolute positioning fix */
.hero:not(.hero--split) {
  margin-top: 0 !important;
  /* padding-top: 20px !important; */
}

/* Remove Elementor default spacing if present */
.elementor-section.hero,
.elementor-top-section.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* ========================================
   B2B WHOLESALE PRODUCT ENHANCEMENTS
   ======================================== */

/* Hide retail elements for B2B */
.product-cards-grid .p-wishlist {
  display: none !important;
}

.product-cards-grid .p-rating {
  display: none !important;
}

/* Brand Display */
.p-brand {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* B2B Specifications */
.p-b2b-specs {
  margin: 12px 0;
  padding: 10px;
  background: #F8F9FA;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.p-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 5px;
}

.p-spec-item:last-child {
  margin-bottom: 0;
}

.p-spec-item i {
  font-size: 1rem;
  color: var(--primary);
}

/* Badge variants for stock */
.p-badge--success {
  background: #28a745;
  color: #fff;
  border: none;
}

.p-badge--warning {
  background: #ffc107;
  color: #000;
  border: none;
}

.p-badge--info {
  background: #17a2b8;
  color: #fff;
  border: none;
}

.p-badge--danger {
  background: #dc3545;
  color: #fff;
  border: none;
}

.p-badge--trending {
  background: #ff6b6b;
  color: #fff;
  border: none;
}

.p-badge--featured {
  background: #ffd700;
  color: #000;
  border: none;
}

/* Contact for Price */
.p-contact-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 600;
}

/* Price variants */
.p-price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 8px;
}

.p-price-new {
  color: var(--accent);
  font-weight: 700;
}

/* B2B Action Buttons */
.p-b2b-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
}

/* Stock colors in filters */
.stock-in {
  color: #28a745;
}

.stock-limited {
  color: #ffc107;
}

.stock-backorder {
  color: #17a2b8;
}

/* ========================================
   AJAX FILTER LOADING STATES
   ======================================== */

.filter-loading-spinner {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.2rem;
  color: var(--primary);
  display: none;
}

.filter-loading-spinner i {
  font-size: 2rem;
  margin-right: 10px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.product-cards-grid.loading {
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.results-count {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 10px;
}

/* Clear Filters Button (optional) */
.clear-filters-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.clear-filters-btn:hover {
  background: #FEE2E2;
  border-color: #EF4444;
  color: #DC2626;
}

.clear-filters-btn i {
  margin-right: 5px;
}

.filter-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .nav-links .primary-menu {
    flex-direction: column;
  }
}