/* ============================================
   Ergen Plastic Industries - Custom Bootstrap 5 Theme
   ============================================ */

/* --- CSS Custom Properties (Brand Colors) --- */
:root {
  --bs-primary: #2E7D32;
  --bs-primary-rgb: 46, 125, 50;
  --bs-secondary: #F9A825;
  --bs-secondary-rgb: 249, 168, 37;
  --bs-accent: #81C784;
  --bs-accent-rgb: 129, 199, 132;
  --bs-light-bg: #FFF8E1;
  --bs-dark-green: #1B5E20;
  --bs-dark-green-rgb: 27, 94, 32;
  --bs-border-amber: #F57F17;
  --bs-cream: #FFFDE7;
}

/* --- Global --- */
body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}
/* Sticky Footer */
#page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#page-wrap > .container {
  flex: 1;
}
#page-wrap > .site-footer {
  margin-top: auto;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--bs-dark-green);
}

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

/* --- Top Bar --- */
.top-bar {
  background: var(--bs-dark-green);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container > .d-flex {
  min-height: 36px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  line-height: 36px;
}
.topbar-item i {
  color: var(--bs-secondary);
  font-size: 0.72rem;
}
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.topbar-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 36px;
}
.topbar-links a i {
  font-size: 0.7rem;
  color: var(--bs-secondary);
  opacity: 0.7;
}
.topbar-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.topbar-links a:hover i {
  opacity: 1;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  text-decoration: none;
  transition: all 0.3s;
}
.topbar-social a:hover {
  background: var(--bs-secondary);
  color: var(--bs-dark-green);
  transform: translateY(-1px);
}

/* --- Navbar --- */
.navbar-brand img {
  max-height: 55px;
}
.navbar {
  background: var(--bs-primary) !important;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  padding: 0 !important;
}
.navbar .container {
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-brand {
  background: #fff;
  padding: 6px 18px 6px 10px !important;
  margin-right: 1rem;
  border-radius: 0 0 8px 0;
  position: relative;
}
.navbar-brand::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(135deg, #fff 50%, transparent 50%);
}
.navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 1rem 0.9rem !important;
  white-space: nowrap;
  transition: all 0.3s;
  position: relative;
  letter-spacing: 0.3px;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--bs-secondary);
  border-radius: 3px 3px 0 0;
  transition: width 0.3s;
}
.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}
.navbar .nav-link:hover::after {
  width: 60%;
}
.navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.12);
}
.navbar .nav-link.active::after {
  width: 60%;
}
.navbar .btn-cart {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem;
  transition: all 0.3s;
  border-radius: 50%;
}
.navbar .btn-cart:hover {
  color: var(--bs-secondary);
  background: rgba(255,255,255,0.1);
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.3) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}
/* Search in green navbar */
.navbar .search-form .form-control {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
}
.navbar .search-form .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}
.navbar .search-form .form-control:focus {
  background: rgba(255,255,255,0.95);
  color: #333;
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 0.2rem rgba(249,168,37,0.3);
}
.navbar .search-form .form-control:focus::placeholder {
  color: #999;
}
.navbar .search-form .btn {
  background: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-dark-green);
}
.navbar .search-form .btn:hover {
  background: #FFD54F;
  border-color: #FFD54F;
}

/* --- Search Form --- */
.search-form .form-control {
  border-color: #ddd;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 0.9rem;
}
.search-form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.15);
}
.search-form .btn {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  border-radius: 0 0.375rem 0.375rem 0;
}
.search-form .btn:hover {
  background: var(--bs-dark-green);
  border-color: var(--bs-dark-green);
}

/* --- Sidebar --- */
.sidebar-panel {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
}
.sidebar-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  letter-spacing: 0.3px;
}
.sidebar-header i {
  color: var(--bs-secondary);
}
.sidebar-menu {
  padding: 0.35rem 0;
}
.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  color: #444;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.sidebar-menu-item i {
  font-size: 0.65rem;
  color: #bbb;
  transition: all 0.25s;
}
.sidebar-menu-item span {
  flex: 1;
}
.sidebar-menu-item:hover {
  background: var(--bs-light-bg);
  color: var(--bs-primary);
  border-left-color: var(--bs-secondary);
  padding-left: 1.15rem;
  text-decoration: none;
}
.sidebar-menu-item:hover i {
  color: var(--bs-primary);
  transform: translateX(2px);
}
.sidebar-menu-item + .sidebar-menu-item {
  border-top: 1px solid #f0f0f0;
}
/* Go Green Card */
.go-green-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-top: 1rem;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s;
}
.go-green-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.go-green-card img {
  display: block;
  width: 100%;
}

/* --- Page Title Bar --- */
.page-title-bar {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(27,94,32,0.2);
  position: relative;
}
.page-title-bar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-title-bar-inner {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-title-bar h1 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}
.page-title-bar h1 i {
  color: var(--bs-secondary);
  font-size: 1.1rem;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover {
  color: var(--bs-secondary);
}
.page-breadcrumb i {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
}
.page-breadcrumb span {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* --- Category Cards (Redesigned) --- */
.cat-card {
  background: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e8e8e8;
  transition: all 0.35s;
  height: 100%;
}
.cat-card:hover {
  box-shadow: 0 8px 24px rgba(46,125,50,0.15);
  transform: translateY(-4px);
  border-color: var(--bs-primary);
}
.cat-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.cat-card-img {
  background: #fafafa;
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #f0f0f0;
  transition: background 0.3s;
}
.cat-card:hover .cat-card-img {
  background: var(--bs-light-bg);
  border-bottom-color: var(--bs-accent);
}
.cat-card-img img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.cat-card:hover .cat-card-img img {
  transform: scale(1.06);
}
.cat-card-name {
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: #fff;
}
.cat-card-name span {
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.cat-card-name i {
  color: #ccc;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.cat-card:hover .cat-card-name span {
  color: var(--bs-primary);
}
.cat-card:hover .cat-card-name i {
  color: var(--bs-primary);
  transform: translateX(3px);
}

/* --- Product Cards (Redesigned) --- */
.prod-card {
  background: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #e8e8e8;
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.prod-card:hover {
  box-shadow: 0 8px 24px rgba(46,125,50,0.15);
  transform: translateY(-4px);
  border-color: var(--bs-primary);
}
.prod-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  z-index: 2;
  letter-spacing: 0.3px;
}
.prod-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 1.5rem 1rem;
  border-bottom: 2px solid #f0f0f0;
  flex: 1;
  transition: background 0.3s;
}
.prod-card:hover .prod-card-img {
  background: var(--bs-light-bg);
  border-bottom-color: var(--bs-accent);
}
.prod-card-img img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.05);
}
.prod-card-body {
  padding: 0.85rem;
}
.prod-card-name {
  display: block;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  text-decoration: none;
  transition: color 0.2s;
}
.prod-card-name:hover {
  color: var(--bs-primary);
}
.prod-card-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.prod-card-actions .btn {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

/* --- Product Detail Page --- */
.product-code-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.product-detail-img-wrap {
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img-wrap:hover {
  border-color: var(--bs-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.product-detail-img {
  max-height: 350px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-detail-img-wrap:hover .product-detail-img {
  transform: scale(1.03);
}
/* Product Specs */
.product-specs-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.specs-title {
  color: var(--bs-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bs-light-bg);
}
.specs-title i {
  color: var(--bs-secondary);
}
.product-specs-table {
  margin-bottom: 1rem;
}
.product-specs-table td {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  border-color: #f0f0f0;
}
.product-specs-table .spec-label {
  color: #666;
  font-weight: 500;
  width: 40%;
  white-space: nowrap;
}
.product-specs-table .spec-label i {
  color: var(--bs-primary);
  font-size: 0.78rem;
  margin-right: 4px;
  opacity: 0.7;
}
.product-specs-table .spec-value {
  color: #333;
  font-weight: 600;
}
.product-specs-table tr:hover {
  background: var(--bs-light-bg);
}
.product-detail-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}
.product-detail-actions .btn-primary {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
/* Share Buttons */
.btn-share {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid;
}
.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.btn-share-fb { color: #1877F2; border-color: #1877F2; background: rgba(24,119,242,0.05); }
.btn-share-fb:hover { background: #1877F2; color: #fff; }
.btn-share-tw { color: #1DA1F2; border-color: #1DA1F2; background: rgba(29,161,242,0.05); }
.btn-share-tw:hover { background: #1DA1F2; color: #fff; }
.btn-share-li { color: #0A66C2; border-color: #0A66C2; background: rgba(10,102,194,0.05); }
.btn-share-li:hover { background: #0A66C2; color: #fff; }
.btn-share-wa { color: #25D366; border-color: #25D366; background: rgba(37,211,102,0.05); }
.btn-share-wa:hover { background: #25D366; color: #fff; }

/* --- Back Link Button --- */
.back-link-btn {
  display: inline-flex;
  align-items: center;
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  background: var(--bs-light-bg);
  border: 1px solid #eee;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.back-link-btn:hover {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
  box-shadow: 0 2px 8px rgba(46,125,50,0.2);
}
.back-link-btn:hover i {
  transform: translateX(-2px);
}
.back-link-btn i {
  transition: transform 0.3s;
}

/* --- Buttons --- */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  background-color: var(--bs-dark-green);
  border-color: var(--bs-dark-green);
}
.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: #333;
}
.btn-secondary:hover {
  background-color: #F57F17;
  border-color: #F57F17;
  color: #fff;
}
.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

/* --- Homepage Hero Section --- */
.hero-carousel-wrap {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.12);
  height: 100%;
}
.hero-carousel {
  height: 100%;
}
.hero-carousel .carousel-inner {
  height: 100%;
}
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .carousel-item img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.hero-carousel .carousel-indicators {
  margin-bottom: 0.5rem;
}
.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 0.7;
  margin: 0 3px;
}
.hero-carousel .carousel-indicators button.active {
  background: var(--bs-secondary);
  border-color: var(--bs-secondary);
  opacity: 1;
}
.hero-nav {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-carousel-wrap:hover .hero-nav {
  opacity: 1;
}
.hero-nav:hover {
  background: var(--bs-primary);
}
.hero-nav .carousel-control-prev-icon,
.hero-nav .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}
.carousel-control-prev.hero-nav { left: 10px; }
.carousel-control-next.hero-nav { right: 10px; }
@media (max-width: 767.98px) {
  .hero-carousel .carousel-item img {
    min-height: 200px;
    height: 200px;
  }
}

/* --- Quick Contact Card --- */
.quick-contact-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.qc-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  padding: 1rem 1.25rem;
  text-align: center;
}
.qc-phone {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.qc-phone i {
  color: var(--bs-secondary);
  margin-right: 6px;
  font-size: 0.95rem;
}
.qc-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  margin-top: 3px;
  letter-spacing: 0.3px;
}
.qc-body {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qc-body form {
  display: flex;
  flex-direction: column;
}
.quick-contact-card .input-group-text {
  background: var(--bs-light-bg);
  border-color: #ddd;
  color: var(--bs-primary);
  font-size: 0.82rem;
}
.quick-contact-card .form-control {
  border-color: #ddd;
  font-size: 0.85rem;
}
.quick-contact-card .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.15rem rgba(46,125,50,0.15);
}
.quick-contact-card textarea.form-control {
  border-radius: 0.375rem;
}
.qc-captcha img {
  height: 30px;
  border-radius: 4px;
}
.qc-refresh {
  color: var(--bs-primary);
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.qc-refresh:hover {
  color: var(--bs-dark-green);
  transform: rotate(180deg);
}
.quick-contact-card .btn-submit {
  background: linear-gradient(135deg, var(--bs-secondary) 0%, #FFD54F 100%);
  border: none;
  color: var(--bs-dark-green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.quick-contact-card .btn-submit:hover {
  background: linear-gradient(135deg, #FFD54F 0%, var(--bs-secondary) 100%);
  box-shadow: 0 2px 8px rgba(249,168,37,0.4);
  transform: translateY(-1px);
}

/* --- Product Slider (Homepage) --- */
.products-block {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.products-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-header h2 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}
.products-header h2 i {
  color: var(--bs-secondary);
}
.products-viewall {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.products-viewall:hover {
  color: var(--bs-secondary);
}
.products-body {
  padding: 0.75rem 1rem;
}
/* Product Cards in Slider */
.slider-product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
}
.slider-product-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 4px 14px rgba(46,125,50,0.12);
  transform: translateY(-3px);
}
.slider-product-img {
  display: block;
  background: #fafafa;
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}
.slider-product-img img {
  height: 110px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.slider-product-card:hover .slider-product-img img {
  transform: scale(1.05);
}
.slider-product-name {
  padding: 0.5rem;
}
.slider-product-name a {
  color: #333;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  line-height: 1.3;
  transition: color 0.2s;
}
.slider-product-card:hover .slider-product-name a {
  color: var(--bs-primary);
}
/* Slider Nav Arrows */
.product-slider .slider-nav {
  width: 32px;
  height: 32px;
  background: var(--bs-primary);
  border-radius: 50%;
  opacity: 0.85;
  top: 50%;
  transform: translateY(-50%);
}
.product-slider .slider-nav:hover {
  opacity: 1;
  background: var(--bs-dark-green);
}
.product-slider .slider-nav .carousel-control-prev-icon,
.product-slider .slider-nav .carousel-control-next-icon {
  width: 14px;
  height: 14px;
}
.product-slider .carousel-control-prev.slider-nav {
  left: -8px;
}
.product-slider .carousel-control-next.slider-nav {
  right: -8px;
}
/* Slider Indicators */
.product-slider .carousel-indicators {
  bottom: -8px;
  margin-bottom: 0;
}
.product-slider .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  opacity: 1;
}
.product-slider .carousel-indicators button.active {
  background-color: var(--bs-primary);
  width: 20px;
  border-radius: 4px;
}

/* --- Welcome Section --- */
.welcome-block {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.welcome-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  padding: 0.9rem 1.25rem;
}
.welcome-header h2 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}
.welcome-header h2 i {
  color: var(--bs-secondary);
}
.welcome-body {
  padding: 1.25rem;
}
.welcome-body p {
  line-height: 1.75;
  color: #555;
  text-align: justify;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}
.welcome-img {
  border: 3px solid var(--bs-accent);
  border-radius: 0.75rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
/* Feature Boxes */
.welcome-features .feature-box {
  background: var(--bs-light-bg);
  border-radius: 0.5rem;
  padding: 1rem 0.5rem;
  border: 1px solid #eee;
  transition: all 0.3s;
  height: 100%;
}
.welcome-features .feature-box:hover {
  background: #fff;
  border-color: var(--bs-primary);
  box-shadow: 0 3px 10px rgba(46,125,50,0.12);
  transform: translateY(-2px);
}
.welcome-features .feature-icon {
  font-size: 1.75rem;
  color: var(--bs-primary);
  margin-bottom: 0.4rem;
}
.welcome-features .feature-box:hover .feature-icon {
  color: var(--bs-dark-green);
}
.welcome-features .feature-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 0.15rem;
}
.welcome-features .feature-text {
  font-size: 0.75rem;
  color: #777;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, #1a4f1c 0%, var(--bs-dark-green) 100%);
  color: rgba(255,255,255,0.85);
  padding: 0;
  margin-top: auto !important;
  flex-shrink: 0;
}
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--bs-secondary) 0%, var(--bs-primary) 50%, var(--bs-secondary) 100%);
}
.site-footer .container > .row {
  padding-top: 2.5rem;
}
.footer-section {
  padding-right: 1rem;
}
.site-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.7rem;
}
.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--bs-secondary);
  border-radius: 2px;
}
.site-footer h5 i {
  color: var(--bs-secondary);
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.25s;
}
.site-footer a:hover {
  color: var(--bs-secondary);
  padding-left: 2px;
}
.footer-about {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
/* Footer Links */
.site-footer .footer-links li {
  margin-bottom: 0.35rem;
}
.site-footer .footer-links li a {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}
.site-footer .footer-links li a::before {
  content: "\203A";
  color: var(--bs-secondary);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.25s;
}
.site-footer .footer-links li a:hover::before {
  transform: translateX(3px);
}
/* Footer Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item i {
  color: var(--bs-secondary);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item div {
  font-size: 0.84rem;
  line-height: 1.5;
}
.site-footer .footer-contact li {
  margin-bottom: 0.75rem;
}
/* Footer Social */
.site-footer .footer-social {
  display: flex;
  gap: 8px;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1rem;
  transition: all 0.3s;
  padding: 0;
}
.site-footer .footer-social a:hover {
  background: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-dark-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(249,168,37,0.3);
  padding-left: 0;
}
/* Footer Bottom */
/* Visitor Counter */
.footer-visitor {
  background: rgba(0,0,0,0.15);
  padding: 0.7rem 0;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.visitor-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.visitor-badge i {
  color: var(--bs-secondary);
  font-size: 0.9rem;
}
.visitor-digits {
  display: inline-flex;
  gap: 3px;
  margin-left: 8px;
}
.visitor-digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 0.85rem 0;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.footer-bottom-links a:hover {
  color: var(--bs-secondary);
  padding-left: 0;
}
.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--bs-secondary);
}

/* --- Content Sections --- */
.content-section {
  background: #fff;
  border-radius: 0.6rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  margin-bottom: 1.5rem;
}

/* --- Inner Page Blocks (About, Contact, etc.) --- */
.inner-block {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
}
.inner-block-header {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  padding: 0.75rem 1.25rem;
}
.inner-block-header h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}
.inner-block-header h2 i {
  color: var(--bs-secondary);
  font-size: 0.9rem;
}
.inner-block-body {
  padding: 1.25rem;
}
.inner-block-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 0.75rem;
}
.inner-block-body p:last-child {
  margin-bottom: 0;
}
/* About List Style */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.about-list li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-list li i {
  color: var(--bs-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}
/* About Images */
.about-img {
  border: 2px solid #eee;
  transition: all 0.3s;
}
.about-img:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 4px 12px rgba(46,125,50,0.15);
  transform: scale(1.02);
}

/* --- Tables (Downloads, Network, Cart) --- */
.table-custom thead th {
  background: var(--bs-primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
}
.table-custom tbody td {
  font-size: 0.9rem;
  vertical-align: middle;
}
.table-custom tbody tr:hover {
  background: var(--bs-light-bg);
}

/* --- Forms (Enquiry, Subscribe) --- */
.form-section .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
}
.form-section .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.15);
}

/* --- Back to Top & Utility --- */
.back-link {
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.back-link:hover {
  color: var(--bs-dark-green);
}

/* --- Bootstrap Modal Override (for product quick view) --- */
.modal-product .modal-header {
  background: var(--bs-primary);
  color: #fff;
}
.modal-product .btn-close {
  filter: invert(1);
}

/* --- jQuery UI Autocomplete Override --- */
.ui-autocomplete {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 0.375rem 0.375rem;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1060;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ui-menu-item {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.ui-menu-item:hover,
.ui-menu-item.ui-state-active {
  background: var(--bs-light-bg);
  color: var(--bs-primary);
}

/* --- Product Description Content --- */
.product-description {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.85;
}

/* --- Section Headings (Key Features, etc.) --- */
.desc-section-heading {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%) !important;
  color: #fff !important;
  margin: 1.75rem 0 1.1rem 0 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0.7rem 1.1rem 0.7rem 2.75rem !important;
  border-radius: 0.5rem !important;
  border: none !important;
  position: relative;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(27,94,32,0.18);
  overflow: hidden;
}
.desc-section-heading::before {
  content: '\F588';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-secondary);
  font-size: 1rem;
}
.desc-section-heading::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Regular Paragraphs --- */
.desc-paragraph {
  background: transparent !important;
  margin-bottom: 1rem;
  text-align: justify;
  color: #444;
}

/* --- Feature Cards (JS-enhanced) --- */
.desc-feature-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem !important;
  padding: 1rem 1.15rem !important;
  margin-bottom: 0.75rem !important;
  border-radius: 0.5rem !important;
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.desc-feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--bs-accent);
  border-radius: 4px 0 0 4px;
  transition: all 0.3s;
}
.desc-feature-card:nth-child(even)::before {
  background: var(--bs-secondary);
}
.desc-feature-card:hover {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 4px 16px rgba(46,125,50,0.12) !important;
  transform: translateY(-2px) !important;
  background: #fff !important;
}
.desc-feature-card:hover::before {
  background: var(--bs-primary);
  width: 5px;
}

/* Number Badge */
.desc-feature-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(46,125,50,0.25);
  margin-top: 2px;
}

/* Feature Icon */
.desc-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--bs-light-bg);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: all 0.3s;
  margin-top: 1px;
}
.desc-feature-icon i {
  font-size: 1rem;
  color: var(--bs-primary);
  transition: all 0.3s;
}
.desc-feature-card:hover .desc-feature-icon {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  box-shadow: 0 2px 8px rgba(46,125,50,0.2);
}
.desc-feature-card:hover .desc-feature-icon i {
  color: #fff;
  transform: scale(1.1);
}

/* Feature Content */
.desc-feature-content {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}
.desc-feature-label {
  color: var(--bs-dark-green) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  display: inline;
}

/* --- Fallback: non-JS styled elements --- */
.product-description strong,
.product-description b {
  color: var(--bs-dark-green);
  font-weight: 700;
}
.product-description h1, .product-description h2, .product-description h3,
.product-description h4, .product-description h5, .product-description h6 {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%) !important;
  color: #fff !important;
  margin: 1.5rem 0 1rem 0;
  font-weight: 700;
  font-size: 0.95rem !important;
  padding: 0.7rem 1.1rem 0.7rem 1.1rem !important;
  border-radius: 0.5rem;
  border: none !important;
  box-shadow: 0 3px 10px rgba(27,94,32,0.18);
}

/* --- Tables from database --- */
.product-description table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  font-size: 0.88rem;
  border: none !important;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.product-description table td,
.product-description table th {
  padding: 0.75rem 1rem;
  border: none !important;
  border-bottom: 1px solid #eee !important;
  vertical-align: top;
  background: transparent !important;
}
.product-description table tr:last-child td { border-bottom: none !important; }
.product-description table tr:nth-child(odd) { background: #fff !important; }
.product-description table tr:nth-child(even) { background: #f7faf7 !important; }
.product-description table tr:hover { background: var(--bs-light-bg) !important; }
.product-description table td:first-child,
.product-description table th:first-child {
  font-weight: 600;
  color: var(--bs-dark-green) !important;
  width: 35%;
  border-right: 2px solid var(--bs-accent) !important;
}

/* --- Images --- */
.product-description img {
  max-width: 100%;
  height: auto !important;
  border-radius: 0.5rem;
  margin: 0.75rem 0;
  border: 2px solid #eee;
  transition: all 0.3s;
}
.product-description img:hover {
  border-color: var(--bs-accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- Lists --- */
.product-description ul, .product-description ol {
  padding-left: 0 !important;
  margin: 1rem 0;
  list-style: none !important;
}
.product-description ul li, .product-description ol li {
  padding: 0.6rem 1rem 0.6rem 2.2rem !important;
  margin-bottom: 0.5rem;
  color: #444;
  position: relative;
  background: #fafafa !important;
  border-radius: 0.4rem;
  border-left: 3px solid var(--bs-accent) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.product-description ul li:hover, .product-description ol li:hover {
  border-left-color: var(--bs-primary) !important;
  background: var(--bs-light-bg) !important;
  transform: translateX(3px);
}
.product-description ul li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  color: var(--bs-primary);
  font-size: 0.75rem;
}

/* --- Override ALL inline styles from old CMS --- */
.product-description table[width], .product-description table[style] {
  width: 100% !important; max-width: 100% !important; height: auto !important; border: none !important;
}
.product-description td[width], .product-description td[style] {
  width: auto !important; height: auto !important; background: transparent !important;
}
.product-description font {
  font-family: inherit !important; font-size: inherit !important; color: inherit !important;
}
.product-description span[style*="font-family"],
.product-description span[style*="font-size"] {
  font-family: inherit !important; font-size: inherit !important;
}

/* --- Blockquotes & HR --- */
.product-description blockquote {
  border-left: 4px solid var(--bs-primary);
  background: var(--bs-light-bg);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #555;
}
.product-description hr {
  border: none !important;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-accent), transparent);
  margin: 1.5rem 0;
  opacity: 0.4;
}

/* --- Mobile: feature cards stack tighter --- */
@media (max-width: 575.98px) {
  .desc-feature-card {
    gap: 0.6rem !important;
    padding: 0.8rem 0.85rem !important;
  }
  .desc-feature-icon {
    width: 32px;
    height: 32px;
  }
  .desc-feature-num {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
}

/* --- Legacy Class Mappings (backward-compat for PHP code) --- */
.txtmatter01 {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  padding: 0.25rem;
}
.txtmatter02 {
  font-size: 1.25rem;
  color: var(--bs-primary);
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 2px dotted var(--bs-accent);
}
.txtmatter04 {
  font-size: 1.5rem;
  color: var(--bs-primary);
  font-weight: 600;
  line-height: 1.4;
}
.txtmatter0456 {
  font-size: 1.75rem;
  color: var(--bs-primary);
  font-weight: 700;
  line-height: 1.4;
}
.titlenew {
  font-size: 0.95rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.news {
  font-size: 1.15rem;
  color: var(--bs-primary);
  text-align: center;
  font-weight: 700;
}
.news1 {
  font-size: 1rem;
  color: #fff;
  background: var(--bs-primary);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}

/* --- Go Green Banner --- */
.go-green-img {
  border-radius: 0.375rem;
  margin-top: 1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .sidebar-card {
    margin-bottom: 1.5rem;
  }
  .page-title-bar h1 {
    font-size: 1.05rem;
  }
  .page-title-bar-inner {
    padding: 0.85rem 1.15rem;
  }
}
@media (max-width: 575.98px) {
  .page-title-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
  }
  .page-title-bar h1 {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.8rem;
  }
  .content-section {
    padding: 1rem;
  }
  .prod-card-img img {
    height: 120px;
  }
  .cat-card-img img {
    height: 100px;
  }
  .cat-card-img {
    padding: 0.75rem;
  }
  .prod-card-img {
    padding: 1rem 0.75rem;
  }
  .prod-card-actions {
    flex-direction: column;
  }
  .prod-card-actions .btn {
    width: 100%;
  }
  .product-detail-img {
    max-height: 250px;
  }
  .product-detail-img-wrap {
    padding: 1rem;
  }
  .btn-share {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ============================================
   Contact Us Page
   ============================================ */
.contact-info-group {
  position: relative;
}
.contact-info-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-title i {
  color: var(--bs-secondary);
  font-size: 0.9rem;
}
.contact-info-text {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1.5rem;
  border-left: 3px solid var(--bs-accent);
  line-height: 1.7;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0;
}
.contact-detail-label {
  font-weight: 600;
  color: #444;
  min-width: 70px;
  font-size: 0.85rem;
}
.contact-detail-row a {
  color: var(--bs-primary);
  font-weight: 500;
}
.contact-detail-row a:hover {
  color: var(--bs-dark-green);
  text-decoration: underline;
}
.contact-img {
  max-height: 380px;
  border: 3px solid #eee;
  transition: all 0.3s;
}
.contact-img:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 6px 20px rgba(46,125,50,0.15);
  transform: scale(1.02);
}

/* ============================================
   Enquiry Form Page
   ============================================ */
.enquiry-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.35rem;
}
.enquiry-form .form-control {
  border-radius: 0.375rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.enquiry-form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.12);
}
.enquiry-form .input-group-text {
  background: var(--bs-light-bg);
  border-color: #ddd;
  color: var(--bs-primary);
  font-size: 0.85rem;
}
.enquiry-form .form-control:focus + .input-group-text,
.enquiry-form .input-group:focus-within .input-group-text {
  border-color: var(--bs-primary);
  color: var(--bs-dark-green);
}
.form-group-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--bs-dark-green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--bs-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.form-group-title i {
  color: var(--bs-secondary);
}
.captcha-img {
  height: 40px;
  border-radius: 0.375rem !important;
}
.enquiry-submit-btn {
  padding: 0.65rem 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px rgba(46,125,50,0.25);
  transition: all 0.3s;
}
.enquiry-submit-btn:hover {
  box-shadow: 0 5px 16px rgba(46,125,50,0.35);
  transform: translateY(-2px);
}

/* ============================================
   Network Page
   ============================================ */
.network-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark-green) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(46,125,50,0.2);
}
.network-phone {
  color: var(--bs-primary);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.network-phone:hover {
  color: var(--bs-dark-green);
}
.network-phone i {
  color: var(--bs-accent);
  font-size: 0.75rem;
}
.network-map-img {
  max-height: 500px;
  border: 3px solid #eee;
  transition: all 0.3s;
}
.network-map-img:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 6px 24px rgba(46,125,50,0.15);
}

/* ============================================
   Quality Certificate Page
   ============================================ */
.quality-cert-wrap {
  padding: 1rem;
  background: var(--bs-light-bg);
  border-radius: 0.5rem;
  display: inline-block;
}
.quality-cert-img {
  max-height: 700px;
  border: 3px solid #eee;
  transition: all 0.3s;
}
.quality-cert-img:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 8px 30px rgba(46,125,50,0.18);
  transform: scale(1.01);
}

/* ============================================
   News List & Downloads Pages
   ============================================ */
.news-link {
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.news-link:hover {
  color: var(--bs-primary);
}
.news-link i {
  color: var(--bs-accent);
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.news-link:hover i {
  color: var(--bs-primary);
  transform: translateX(3px);
}
.download-link {
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.download-link:hover {
  color: var(--bs-primary);
}
.download-link i {
  color: var(--bs-primary);
  font-size: 0.95rem;
}
.date-badge {
  display: inline-block;
  background: var(--bs-light-bg);
  color: #666;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 1rem;
  border: 1px solid #eee;
}

/* Empty State (for no data) */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #999;
}
.empty-state i {
  font-size: 3rem;
  color: var(--bs-accent);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}
.empty-state p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   About Director - Under Construction
   ============================================ */
.under-construction-wrap {
  text-align: center;
  padding: 3rem 1.5rem;
}
.under-construction-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bs-light-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 3px solid var(--bs-secondary);
}
.under-construction-icon i {
  font-size: 2.2rem;
  color: var(--bs-secondary);
}
.under-construction-wrap h4 {
  color: var(--bs-dark-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.under-construction-wrap p {
  color: #777;
  font-size: 0.92rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   Subscribe / Thank You Page
   ============================================ */
.subscribe-result {
  padding: 2rem 1rem;
}
.subscribe-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.subscribe-icon i {
  font-size: 2.2rem;
}
.subscribe-icon-success {
  background: #e8f5e9;
  border: 3px solid var(--bs-primary);
}
.subscribe-icon-success i {
  color: var(--bs-primary);
}
.subscribe-icon-error {
  background: #fce4ec;
  border: 3px solid #e53935;
}
.subscribe-icon-error i {
  color: #e53935;
}
.subscribe-result h4 {
  color: var(--bs-dark-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.subscribe-result p {
  color: #666;
  font-size: 0.92rem;
  max-width: 450px;
  margin: 0 auto;
}

/* ============================================
   Responsive: Inner Pages
   ============================================ */
@media (max-width: 767.98px) {
  .contact-detail-row {
    flex-direction: column;
    gap: 0.15rem;
    align-items: flex-start;
  }
  .contact-detail-label {
    min-width: auto;
  }
  .enquiry-submit-btn {
    width: 100%;
  }
  .network-map-img {
    max-height: 300px;
  }
  .quality-cert-wrap {
    padding: 0.5rem;
  }
}
