@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --primary: #0D5C3B;
  --primary-dark: #073823;
  --primary-light: #E6F4ED;
  --secondary: #7CC242;
  --accent: #A5D64F;
  --dark: #111111;
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #E5E7EB;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --transition: all 0.25s ease-in-out;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Layout Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-outline {
  border: 1.5px solid #CBD5E1;
  background-color: transparent;
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Top Navbar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-logo span {
  color: var(--gray-medium);
  font-weight: 600;
  font-size: 13px;
  display: block;
  letter-spacing: 2px;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active {
  border-bottom: 2px solid var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-light);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1100;
  list-style: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero-exact {
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.1) 100%), url('../images/hero_bg.png') center/cover no-repeat;
  padding: 85px 0 95px 0;
  position: relative;
}

.hero-exact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-heading {
  font-size: 46px;
  line-height: 1.15;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-heading span {
  color: var(--primary);
}

.hero-desc-exact {
  font-size: 16px;
  color: #475569;
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-stats-row {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat-item-exact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item-exact h3 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 800;
}

.stat-item-exact p {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  line-height: 1.2;
}

/* Hero Skewed Stack Container */
.hero-skew-container {
  transform: skewX(-14deg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  padding: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.hero-skew-card {
  height: 125px;
  background: rgba(20, 20, 20, 0.85);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.hero-skew-card.active, .hero-skew-card:hover {
  border-color: var(--accent);
  background: rgba(13, 92, 59, 0.7);
  box-shadow: 0 0 20px rgba(165, 214, 79, 0.3);
}

.hero-skew-content {
  transform: skewX(14deg);
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-skew-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero-skew-img-box {
  transform: skewX(14deg);
  width: 150px;
  height: 95px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

/* Section Common Styling */
.section-padding {
  padding: 80px 0;
}

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

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: inline-block;
  position: relative;
}

.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 6px auto 0 auto;
}

.section-title-exact {
  font-size: 32px;
  color: var(--dark);
  font-weight: 800;
}

/* What We Offer Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.offer-icon-box {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 700;
}

.offer-card p {
  font-size: 12.5px;
  color: #64748B;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.5;
}

.link-green {
  color: var(--primary);
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link-green:hover {
  color: var(--primary-dark);
}

/* Product Categories Slider */
.cat-slider-wrapper {
  position: relative;
  padding: 0 10px;
}

.cat-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.cat-slider-viewport::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.cat-slider-track {
  display: flex;
  gap: 20px;
}

.cat-card-exact {
  min-width: 210px;
  max-width: 210px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cat-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid #CBD5E1;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  color: var(--dark);
  transition: var(--transition);
}

.cat-slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cat-slider-arrow.left {
  left: -22px;
}

.cat-slider-arrow.right {
  right: -22px;
}

.cat-card-exact:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.cat-card-img {
  height: 140px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-card-body h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.cat-card-body p {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 14px;
  flex-grow: 1;
}

/* Trusted Brands Bar */
.brand-bar-exact {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  text-align: center;
}

.brand-bar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #64748B;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.brand-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-card-exact {
  background: var(--white);
  border: 1px solid #CBD5E1;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.brand-card-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
  flex-shrink: 0;
}

.brand-card-text {
  text-align: left;
}

.brand-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.1;
}

.brand-card-tagline {
  font-size: 10.5px;
  color: #64748B;
  font-style: italic;
}

/* Side by Side Partner & Industries Section */
.trusted-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-content h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.checklist-content p {
  font-size: 12.5px;
  color: #64748B;
}

.industry-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-proj-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ind-proj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ind-proj-img {
  height: 150px;
  background: #093E27;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.ind-proj-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(13,92,59,0.9);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.ind-proj-body {
  padding: 16px;
}

.ind-proj-body h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.ind-proj-body p {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 12px;
}

/* Need Help Selecting Banner */
.need-help-banner {
  background: #072E20 url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  padding: 50px 0;
  color: white;
  margin-top: 60px;
}

.need-help-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 46, 32, 0.92);
}

.need-help-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.need-help-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.help-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-action-icon {
  font-size: 28px;
  color: var(--accent);
}

.help-callout-box {
  background: var(--accent);
  color: var(--dark);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.help-callout-box h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 800;
}

/* Footer Exact */
.footer-exact {
  background: #062318;
  color: #94A3B8;
  padding: 70px 0 24px 0;
}

.footer-exact-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-exact-col h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-exact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-exact-links a {
  color: #94A3B8;
  font-size: 13.5px;
}

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

.footer-exact-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748B;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
}

/* Solutions Page Styles */
.solution-card-exact {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.solution-card-exact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.solution-card-img-box {
  height: 190px;
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
}

.solution-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.solution-badge-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #0D5C3B;
  color: var(--white);
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  z-index: 5;
}

.solution-card-body {
  padding: 0 24px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 8px;
}

.solution-card-body p {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Solutions Callout Banner */
.solution-callout-banner {
  background: linear-gradient(90deg, rgba(6, 35, 24, 0.95) 0%, rgba(9, 62, 39, 0.9) 100%), url('../images/hero_bg.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
  margin-top: 60px;
}

.solution-trust-footer-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #E2E8F0;
}

.solution-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-trust-icon {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.solution-trust-text {
  font-size: 12px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-exact-grid, .trusted-partner-grid, .footer-exact-grid {
    grid-template-columns: 1fr;
  }
  .offer-grid, .cat-grid-exact {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Detail View Styles */
.product-detail-hero {
  background: linear-gradient(90deg, rgba(8, 42, 28, 0.92) 0%, rgba(8, 42, 28, 0.8) 100%), url('../images/hero_bg.png') center/cover no-repeat;
  color: white;
  padding: 50px 0;
}

.trust-action-bar {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -30px auto 40px auto;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
  gap: 16px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.gallery-main {
  height: 380px;
  background: #F1F5F9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.gallery-thumbs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.thumb-card {
  width: 90px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #E2E8F0;
}

.thumb-card.active {
  border-color: var(--primary);
}

.quick-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
  background: #F8FAFC;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid #E2E8F0;
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-spec-icon {
  font-size: 22px;
  color: var(--primary);
}

.quick-spec-label {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
}

.quick-spec-val {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
}

/* Dynamic Tabs */
.tabs-header {
  display: flex;
  border-bottom: 2px solid #E2E8F0;
  gap: 8px;
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #64748B;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.spec-table th, .spec-table td {
  padding: 10px 14px;
  border: 1px solid #E2E8F0;
  text-align: left;
}

.spec-table th {
  background: #F8FAFC;
  color: #334155;
  font-weight: 700;
}

/* Construction Types Grid */
.construction-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.const-type-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.const-type-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.const-type-img {
  height: 110px;
  background: #093E27;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}

.const-type-title {
  padding: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1E293B;
}

/* About Us & Contact Us Specific Mockup Styles */
.values-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-item-exact {
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.value-item-exact:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #E2E8F0;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

.timeline-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.timeline-circle {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid #CBD5E1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px auto;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.contact-top-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: -40px auto 50px auto;
  position: relative;
  z-index: 10;
}

.contact-top-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-top-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,92,59,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Catalog Page Styles */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding: 50px 0 80px 0;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}

.category-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.category-menu-item a:hover {
  background: #F1F5F9;
  color: var(--primary);
}

.category-menu-item a.active {
  background: #EAF5EE;
  color: var(--primary);
  font-weight: 700;
  border-left: 3.5px solid var(--primary);
}

/* Trust Badges Bar */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.trust-badge-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.trust-badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(13,92,59,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.25;
}

/* Search & Filter Control Bar */
.search-filter-bar {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.search-input-box {
  flex-grow: 1;
  position: relative;
}

.search-input-box input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.search-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 14px;
}

.select-category-dropdown {
  padding: 10px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 14px;
  color: #334155;
  outline: none;
  background: var(--white);
}

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

.product-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.product-img-wrapper {
  height: 190px;
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.product-desc {
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 18px;
  line-height: 1.5;
  flex-grow: 1;
}

/* Pagination Pills */
.pagination-exact {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.pagination-item {
  width: 36px;
  height: 36px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #334155;
  transition: var(--transition);
}

.pagination-item.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination-item:hover:not(.active) {
  background: var(--primary-light);
  color: var(--primary);
}

/* Can't Find Banner Box */
.cant-find-box {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.cant-find-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cant-find-icon {
  width: 48px;
  height: 48px;
  background: rgba(13,92,59,0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cant-find-info h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}

.cant-find-info p {
  font-size: 13.5px;
  color: #64748B;
}
