/*
Theme Name: LK Mats Theme (Lighter & Rounder Green Edition)
Theme URI: https://lkmats.co.zw
Author: Antigravity Studio
Author URI: https://lkmats.co.zw
Description: Premium B2B Modern Theme for LK Mats with lighter geometric typography, soft rounded UI components, and corporate emerald green brand identity.
Version: 3.6.0
Text Domain: lk-mats-theme
*/

/* Google Fonts Import: Outfit (Headings) + Plus Jakarta Sans (Body) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --wp--preset--color--primary-green: #006837;
  --wp--preset--color--primary-green-light: #10B981;
  --wp--preset--color--primary-green-hover: #04522B;
  --wp--preset--color--primary-red: #006837;
  --wp--preset--color--primary-gold: #006837;
  --wp--preset--color--dark-slate: #090D14;
  --wp--preset--color--dark-card: #111622;
  --wp--preset--color--light-surface: #F7F8FA;
  --wp--preset--color--white: #FFFFFF;
  --wp--preset--color--muted-grey: #94A3B8;
  --wp--preset--color--border-dark: rgba(255, 255, 255, 0.1);
  
  --wp--font-heading: 'Outfit', sans-serif;
  --wp--font-body: 'Plus Jakarta Sans', sans-serif;
  --wp--font-mono: 'Outfit', sans-serif;
}
/* Universal Viewport & Anti-Horizontal Overflow Constraints */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
  max-width: 100%;
}

img, video, iframe, svg, canvas, picture {
  max-width: 100% !important;
  height: auto;
  box-sizing: border-box !important;
}

.wp-block-columns,
.wp-block-column,
.wp-block-group,
.wp-block-buttons,
.container,
.lk-section,
.lk-header,
.lk-top-bar,
.lk-nav-container,
.estimator-box {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Utility Classes */
.container { max-width: 1320px; margin: 0 auto; padding: 0 1rem; }
.grid { display: grid; gap: 1rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }
/* Responsive Visibility Rules */
.hide-desktop { display: none !important; }
.hide-mobile { display: flex !important; }

@media (max-width: 768px) {
  .hide-desktop { display: block !important; }
  .hide-mobile { display: none !important; }
}
/* Mobile Side Drawer Navigation */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(9, 13, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, #00522B 0%, #03381E 100%);
  color: #FFFFFF;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
}

@media (min-width: 769px) {
  .mobile-menu-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

/* Drawer Header Utility Bar */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.15);
}

.drawer-utility-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 2.5rem;
  color: #FFFFFF;
}
.drawer-utility-icons a {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.drawer-utility-icons a:nth-child(1) {
  background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
}
.drawer-utility-icons a:nth-child(2) {
  background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
}
.drawer-utility-icons a:nth-child(3) {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}
.drawer-utility-icons a:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.utility-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.8rem;
}
.utility-lang {
  font-family: var(--wp--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.drawer-close-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 2.4rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.drawer-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
}

/* Drawer Scrollable Body */
.drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Primary Product Categories (Bold with Chevron) */
.drawer-section.primary-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #FFFFFF !important;
  text-decoration: none;
  font-family: var(--wp--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.drawer-link-primary .chevron {
  font-size: 1.4rem;
  opacity: 0.8;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.drawer-link-primary:hover {
  color: #10B981 !important;
  padding-left: 6px;
}
.drawer-link-primary:hover .chevron {
  transform: translateX(4px);
  opacity: 1;
}

/* Secondary Links */
.drawer-section.secondary-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.drawer-section.secondary-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--wp--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.drawer-section.secondary-links a:hover {
  color: #10B981;
  padding-left: 6px;
}

/* 100% Full-Width Contact Buttons in Drawer */
.drawer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-full-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100% !important;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--wp--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.drawer-phone-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF !important;
}
.drawer-phone-btn:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
}

.drawer-email-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF !important;
}
.drawer-email-btn:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
}

/* Drawer Footer Actions */
.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}
.drawer-cta-btn {
  width: 100% !important;
  text-align: center;
  justify-content: center;
  background-color: #10B981 !important;
  border-color: #10B981 !important;
  font-weight: 600;
}
.drawer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s ease;
}
.drawer-whatsapp-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

body.drawer-open {
  overflow: hidden !important;
}

.menu-toggle {
  background: none;
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 8px;
  color: var(--wp--preset--color--white);
  font-size: 1.6rem;
  padding: 6px 14px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--wp--preset--color--primary-green-light);
}

body {
  font-family: var(--wp--font-body);
  background-color: var(--wp--preset--color--dark-slate);
  color: #E2E8F0;
  margin: 0;
  padding: 0;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wp--font-heading);
  color: var(--wp--preset--color--white);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-top: 0;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 500; }

.eyebrow-label {
  font-family: var(--wp--font-heading);
  color: var(--wp--preset--color--primary-green-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  background: rgba(0, 104, 55, 0.14);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.eyebrow-label::before {
  content: "•";
  font-size: 1.2rem;
  line-height: 0;
}

.mono-spec {
  font-family: var(--wp--font-body);
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--wp--preset--color--muted-grey);
}

/* Button Base Styles (Auto-Width Fit to Text by Default) */
.btn-gold,
.btn-red,
.btn-green,
.btn-outline-white,
.wp-block-button,
.wp-block-button__link,
.wpcf7-submit {
  margin-top: 10px !important;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 0 28px;
  border-radius: 50px;
  text-decoration: none;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1;
  width: auto;
  white-space: nowrap;
}

.btn-gold,
.btn-gold .wp-block-button__link,
.btn-red,
.btn-red .wp-block-button__link,
.btn-green,
.btn-green .wp-block-button__link,
.wpcf7-submit {
  background-color: var(--wp--preset--color--primary-green);
  color: #FFFFFF !important;
  border: 2px solid var(--wp--preset--color--primary-green);
  box-shadow: 0 4px 14px rgba(0, 104, 55, 0.35);
}

.btn-gold:hover,
.btn-gold .wp-block-button__link:hover,
.btn-red:hover,
.btn-red .wp-block-button__link:hover,
.btn-green:hover,
.btn-green .wp-block-button__link:hover,
.wpcf7-submit:hover {
  background-color: var(--wp--preset--color--primary-green-hover);
  border-color: var(--wp--preset--color--primary-green-hover);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 104, 55, 0.45);
}

/* Outline White Button Specific Overrides */
.btn-outline-white,
.btn-outline-white .wp-block-button__link {
  background-color: rgba(9, 13, 20, 0.6) !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover,
.btn-outline-white .wp-block-button__link:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15) !important;
}

/* Prevent double-nesting inside wp-block-button container */
.wp-block-button.btn-green,
.wp-block-button.btn-outline-white {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.btn-outline-white:hover,
.btn-outline-white .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--primary-green-light);
  color: var(--wp--preset--color--primary-green-light) !important;
  background-color: rgba(0, 104, 55, 0.2);
  transform: translateY(-2px);
}

/* Header Navigation - Pinned Fixed to Top */
.lk-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background-color: rgba(9, 13, 20, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wp--preset--color--border-dark);
}

body {
  padding-top: 110px;
}
@media (max-width: 768px) {
  body {
    padding-top: 135px;
  }
}

.lk-top-bar {
  background-color: #05070B;
  color: #94A3B8;
  font-size: 0.8rem;
  font-family: var(--wp--font-body);
  font-weight: 400;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--wp--preset--color--border-dark);
}

.lk-top-bar a {
  color: var(--wp--preset--color--primary-green-light);
  text-decoration: none;
  font-weight: 500;
}

.top-bar-mobile-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-icon-link {
  font-size: 1.35rem !important;
  color: #FFFFFF !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  line-height: 1 !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.top-icon-link.icon-phone {
  background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%) !important;
  animation: periodic-phone 6s infinite ease-in-out;
}
.top-icon-link.icon-email {
  background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%) !important;
  animation: periodic-email 6s infinite ease-in-out 2s;
}
.top-icon-link.icon-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  animation: periodic-whatsapp 6s infinite ease-in-out 4s;
}
.top-icon-link.icon-menu,
.top-icon-link.menu-toggle {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%) !important;
  font-size: 1.55rem !important;
  animation: periodic-toggle 6s infinite ease-in-out 1s;
}
.top-icon-link:hover, .top-icon-link:active {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
}

/* Staggered Periodic Animations (6s Cycle) */
@keyframes periodic-phone {
  0% { transform: scale(1) rotate(0deg); box-shadow: 0 3px 8px rgba(0, 114, 255, 0.4); }
  5% { transform: scale(1.15) rotate(-10deg); box-shadow: 0 6px 16px rgba(0, 198, 255, 0.8); }
  10% { transform: scale(1.15) rotate(10deg); box-shadow: 0 6px 16px rgba(0, 198, 255, 0.8); }
  15% { transform: scale(1.15) rotate(-5deg); box-shadow: 0 6px 16px rgba(0, 198, 255, 0.8); }
  20%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 3px 8px rgba(0, 114, 255, 0.4); }
}

@keyframes periodic-email {
  0% { transform: translateY(0) scale(1); box-shadow: 0 3px 8px rgba(221, 36, 118, 0.4); }
  8% { transform: translateY(-5px) scale(1.12); box-shadow: 0 6px 16px rgba(255, 81, 47, 0.8); }
  16% { transform: translateY(-2px) scale(1.06); box-shadow: 0 4px 12px rgba(255, 81, 47, 0.6); }
  24%, 100% { transform: translateY(0) scale(1); box-shadow: 0 3px 8px rgba(221, 36, 118, 0.4); }
}

@keyframes periodic-whatsapp {
  0% { transform: scale(1); box-shadow: 0 3px 8px rgba(37, 211, 102, 0.4); }
  10% { transform: scale(1.18); box-shadow: 0 0 18px rgba(37, 211, 102, 0.85); }
  20%, 100% { transform: scale(1); box-shadow: 0 3px 8px rgba(37, 211, 102, 0.4); }
}

@keyframes periodic-toggle {
  0% { transform: scale(1); box-shadow: 0 3px 8px rgba(16, 185, 129, 0.4); }
  12% { transform: scale(1.14); box-shadow: 0 5px 18px rgba(16, 185, 129, 0.85); }
  22%, 100% { transform: scale(1); box-shadow: 0 3px 8px rgba(16, 185, 129, 0.4); }
}

/* Mobile Quote Button: Hidden by default and on all screens <= 520px */
.mobile-quote-btn {
  display: none !important;
}

/* Responsive Display Utility Classes */
.hide-desktop {
  display: none !important;
}
.hide-mobile {
  display: flex !important;
}
@media (max-width: 768px) {
  .hide-desktop {
    display: flex !important;
  }
  .hide-mobile {
    display: none !important;
  }

  .mobile-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 6px 12px;
    background-color: #05070B;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap !important;
    overflow: hidden;
  }

  .mobile-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
  }

  .mobile-header-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    min-width: 0;
  }

  .mobile-brand-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    text-decoration: none;
  }

  .mobile-brand-logo img {
    height: 52px !important;
    max-height: 54px !important;
    max-width: 135px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .mobile-sub-bar {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 14px;
    background: linear-gradient(90deg, #070B11 0%, #0D1622 60%, #070B11 100%);
    border-bottom: 1px solid rgba(16, 185, 129, 0.25);
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-factory-title {
    font-family: var(--wp--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wp--preset--color--primary-green-light);
  }
}

/* Medium mobile screens (390px - 768px): Scale icons & logo up */
@media (min-width: 390px) and (max-width: 768px) {
  .top-icon-link {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.42rem !important;
  }
  .mobile-header-actions {
    gap: 7px !important;
  }
  .mobile-brand-logo img {
    height: 60px !important;
    max-height: 62px !important;
    max-width: 155px !important;
  }
}

/* Request quote button visible only when device width > 520px and <= 768px where there is ample space */
@media (min-width: 521px) and (max-width: 768px) {
  .mobile-quote-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 14px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #10B981 0%, #047857 100%) !important;
    margin: 0 !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
  }
  .mobile-brand-logo img {
    height: 66px !important;
    max-height: 68px !important;
    max-width: 170px !important;
  }
}

.lk-nav-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lk-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lk-brand-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.lk-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lk-nav-links a {
  color: #E2E8F0;
  text-decoration: none;
  font-family: var(--wp--font-heading);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0em;
  transition: color 0.2s ease;
}

.lk-nav-links a:hover {
  color: var(--wp--preset--color--primary-green-light);
}

/* Floating WhatsApp Badge */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background-color: var(--wp--preset--color--dark-card);
  color: var(--wp--preset--color--primary-green-light);
  border: 1.5px solid var(--wp--preset--color--primary-green-light);
  border-radius: 50px;
  padding: 0 24px;
  height: 48px;
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background-color: var(--wp--preset--color--primary-green);
  color: #FFFFFF;
  border-color: var(--wp--preset--color--primary-green);
}

/* Layout Sections */
.lk-section {
  padding: 90px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Hero Cover Section (Matching User Reference Layout) */
.lk-hero-cover-bg {
  background: linear-gradient(0deg, rgba(9, 13, 20, 0.35) 0%, rgba(9, 13, 20, 0.12) 20%, transparent 35%), url('/wp-content/themes/lk-mats-theme/images/hero-bg.jpg') no-repeat center center / cover !important;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 140px 48px 60px !important;
  box-sizing: border-box !important;
}

.lk-hero-content-right {
  max-width: 640px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 20px;
}

.eyebrow-label-ref {
  font-family: var(--wp--font-heading);
  color: var(--wp--preset--color--white);
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: right;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.hero-heading-ref {
  font-family: var(--wp--font-heading);
  font-size: clamp(2.5rem, 4.8vw, 4rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FFFFFF !important;
  line-height: 1.05 !important;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: right;
  text-shadow: 0 3px 12px rgba(0,0,0,0.95);
}

.hero-subtitle-ref {
  font-family: var(--wp--font-body);
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 24px;
  text-align: right;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.hero-buttons-ref {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  width: auto !important;
  margin-top: 0 !important;
}

.hero-buttons-ref .wp-block-button,
.hero-buttons-ref .wp-block-button__link {
  width: auto !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

/* Mobile Hero Banner Layout Adjustments (Strict 1-Column Full Width with Side Insets) */
@media (max-width: 768px) {
  .lk-hero-cover-bg,
  .spaghetti-hero-wrapper,
  .berber-hero-wrapper,
  .entrance-hero-wrapper,
  .event-hero-wrapper {
    background: linear-gradient(0deg, rgba(9, 13, 20, 0.35) 0%, rgba(9, 13, 20, 0.12) 20%, transparent 35%), url('/wp-content/themes/lk-mats-theme/images/hero-bg.jpg') no-repeat center center / cover !important;
    min-height: auto !important;
    padding: 70px 20px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lk-hero-content-right {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .eyebrow-label-ref,
  .hero-heading-ref,
  .hero-subtitle-ref {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .eyebrow-label-ref {
    font-size: 0.72rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 8px !important;
  }

  .hero-heading-ref {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    padding: 0 8px !important;
  }

  .hero-subtitle-ref,
  .lk-hero-cover-bg p:not(.eyebrow-label-ref),
  .spaghetti-hero-wrapper p:not(.eyebrow-label-ref),
  .berber-hero-wrapper p:not(.eyebrow-label-ref) {
    display: none !important;
  }

  .hero-buttons-ref,
  .wp-block-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 12px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  .hero-buttons-ref .wp-block-button,
  .hero-buttons-ref .wp-block-button__link,
  .wp-block-buttons .wp-block-button,
  .wp-block-buttons .wp-block-button__link {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
}

/* Product Grid Cards */
#lk-products-section .wp-block-columns {
  align-items: stretch;
}

#lk-products-section .wp-block-column {
  display: flex;
  flex-direction: column;
}

.lk-card-dark {
  background: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.lk-card-dark:hover {
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.lk-card-dark img {
  border-radius: 12px;
}

.lk-card-number {
  font-family: var(--wp--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--wp--preset--color--primary-green-light);
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.9;
}

.lk-card-dark .wp-block-button,
.lk-card-dark .btn-green {
  margin-top: auto;
  width: 100% !important;
}

.lk-card-dark .wp-block-button__link,
.lk-card-dark .btn-green {
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px;
}

/* Free Visual Proof Contact Form Section */
.proof-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proof-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.proof-badge-item {
  background-color: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-badge-item .badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.proof-badge-item strong {
  font-family: var(--wp--font-heading);
  color: #FFFFFF;
  font-weight: 500;
  display: block;
  font-size: 0.95rem;
}

.proof-badge-item p {
  color: var(--wp--preset--color--muted-grey);
  font-size: 0.8rem;
  margin: 2px 0 0;
  line-height: 1.3;
}

.proof-form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

@media (max-width: 900px) {
  .proof-form-layout {
    grid-template-columns: 1fr;
  }
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.proof-sidebar-card {
  background-color: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.proof-benefits-list {
  padding-left: 18px;
  margin: 0;
  color: var(--wp--preset--color--muted-grey);
  font-size: 0.9rem;
}

.proof-benefits-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.proof-benefits-list strong {
  color: #FFFFFF;
}

.proof-testimonial {
  background-color: #05070B;
  border-left: 3px solid var(--wp--preset--color--primary-green-light);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 0.88rem;
  color: #E2E8F0;
}

.proof-testimonial span {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--wp--preset--color--primary-green-light);
  margin-top: 8px;
  font-weight: 500;
}

.proof-direct-contact {
  background: rgba(0, 104, 55, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

/* Contact Form 7 Global Styling Overrides */
.wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7-form label {
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--wp--preset--color--primary-green-light);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.wpcf7-text,
.wpcf7-select,
.wpcf7-textarea,
.wpcf7-file {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--wp--preset--color--dark-slate);
  border: 1px solid var(--wp--preset--color--border-dark);
  color: #FFFFFF;
  font-family: var(--wp--font-body);
  font-size: 0.95rem;
  border-radius: 12px;
  box-sizing: border-box;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.wpcf7-text:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus {
  border-color: var(--wp--preset--color--primary-green-light);
  outline: none;
}

.wpcf7-file {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--wp--preset--color--muted-grey);
}

.wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: -10px;
  margin-bottom: 12px;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  font-family: var(--wp--font-body);
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid var(--wp--preset--color--primary-green-light) !important;
  background: rgba(0, 104, 55, 0.15) !important;
  color: #FFFFFF !important;
}

/* Stats Counter Section */
.lk-stats-strip {
  background-color: var(--wp--preset--color--dark-card);
  border-top: 1px solid var(--wp--preset--color--border-dark);
  border-bottom: 1px solid var(--wp--preset--color--border-dark);
  padding: 48px 24px;
}

.lk-stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.lk-stat-number {
  font-family: var(--wp--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--wp--preset--color--primary-green-light);
  line-height: 1;
}

.lk-stat-label {
  font-family: var(--wp--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wp--preset--color--muted-grey);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Image Gallery Rounded Corners */
.lk-gallery-block figure img {
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.lk-gallery-block figure:hover img {
  transform: scale(1.03);
}

.lk-gallery-block figcaption {
  font-family: var(--wp--font-heading);
  font-weight: 400;
  color: var(--wp--preset--color--primary-green-light) !important;
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Form & Estimator Widget */
.estimator-box {
  background-color: var(--wp--preset--color--dark-card);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 36px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.estimator-box input,
.estimator-box select,
.estimator-box textarea,
.estimator-box .wpcf7-text,
.estimator-box .wpcf7-select,
.estimator-box .wpcf7-textarea {
  width: 100% !important;
  box-sizing: border-box !important;
}

.estimator-box input[type="submit"],
.estimator-box .wpcf7-submit,
.estimator-box button[type="submit"] {
  width: 100% !important;
  box-sizing: border-box !important;
  display: block;
}

.estimator-box label {
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--wp--preset--color--primary-green-light);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* Footer Styling */
.lk-footer {
  background-color: #05070B;
  color: #94A3B8;
  border-top: 1px solid var(--wp--preset--color--border-dark);
  padding: 80px 24px 40px;
  font-size: 0.95rem;
}

.lk-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.lk-footer h4 {
  color: #FFFFFF;
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 0;
  border-bottom: 1.5px solid var(--wp--preset--color--primary-green-light);
  padding-bottom: 8px;
  display: inline-block;
}

.lk-footer a {
  color: #94A3B8;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.lk-footer a:hover {
  color: var(--wp--preset--color--primary-green-light);
}

.lk-footer-bottom {
  max-width: 1320px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--wp--preset--color--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--wp--preset--color--muted-grey);
  font-family: var(--wp--font-body);
}

/* ==========================================================================
   Berber Point Logo Mats SEO Landing Page Styles
   ========================================================================== */

/* Hero Interactive Slider Showcase */
.spaghetti-hero-wrapper,
.berber-hero-wrapper,
.entrance-hero-wrapper,
.event-hero-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .spaghetti-hero-wrapper,
  .berber-hero-wrapper,
  .entrance-hero-wrapper,
  .event-hero-wrapper {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.berber-slider-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--border-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  background-color: var(--wp--preset--color--dark-card);
}

.berber-slide-track {
  position: relative;
  min-height: 420px;
  height: 100%;
}

.spaghetti-slide,
.berber-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  align-items: flex-end !important;
}

.spaghetti-slide.active,
.berber-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.berber-slide-overlay {
  background: linear-gradient(0deg, rgba(5, 8, 14, 0.92) 0%, rgba(5, 8, 14, 0.6) 50%, rgba(5, 8, 14, 0.2) 80%, transparent 100%) !important;
  padding: 24px 24px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  margin-top: auto !important;
}

.berber-slide-badge {
  display: inline-block;
  background: var(--wp--preset--color--primary-green);
  color: #FFF;
  font-family: var(--wp--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  width: fit-content;
}

.berber-slide-title {
  font-size: 1.3rem;
  margin-bottom: 4px;
  margin-top: 2px;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.berber-slide-desc {
  font-size: 0.85rem;
  color: #F1F5F9;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.berber-slider-nav {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background-color: #05070B;
  border-top: 1px solid var(--wp--preset--color--border-dark);
  overflow-x: auto;
}

.spaghetti-nav-btn,
.berber-nav-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  padding: 8px 14px;
  border-radius: 30px;
  font-family: var(--wp--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.spaghetti-nav-btn:hover,
.spaghetti-nav-btn.active,
.berber-nav-btn:hover,
.berber-nav-btn.active {
  background: var(--wp--preset--color--primary-green);
  color: #FFFFFF;
  border-color: var(--wp--preset--color--primary-green-light);
}

/* Trust Bar */
.trust-bar-container {
  background-color: var(--wp--preset--color--dark-card);
  border-top: 1px solid var(--wp--preset--color--border-dark);
  border-bottom: 1px solid var(--wp--preset--color--border-dark);
  padding: 24px;
}

.trust-bar-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--wp--preset--color--border-dark);
  padding: 14px 18px;
  border-radius: 14px;
}

.trust-bar-icon {
  font-size: 1.5rem;
  color: var(--wp--preset--color--primary-green-light);
  line-height: 1;
}

.trust-bar-text {
  font-family: var(--wp--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Feature Cards Grid (12 Cards) */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  border-color: var(--wp--preset--color--primary-green-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,104,55,0.25);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,104,55,0.2);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wp--preset--color--primary-green-light);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: #FFFFFF;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--wp--preset--color--muted-grey);
  margin: 0;
  line-height: 1.5;
}

/* Specification Table */
.spec-table-container {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--wp--preset--color--border-dark);
  background-color: var(--wp--preset--color--dark-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--wp--preset--color--border-dark);
}

.spec-table th {
  background-color: #05070B;
  color: var(--wp--preset--color--primary-green-light);
  font-family: var(--wp--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table tr:nth-child(even) td {
  background-color: rgba(255,255,255,0.015);
}

.spec-table tr:hover td {
  background-color: rgba(0,104,55,0.1);
}

.spec-table td:first-child {
  font-family: var(--wp--font-heading);
  font-weight: 500;
  color: #FFFFFF;
  width: 35%;
}

.spec-table td:last-child {
  color: #CBD5E1;
}

/* Industries Cards Grid */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.industry-card {
  background: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.industry-card:hover {
  border-color: var(--wp--preset--color--primary-green-light);
  transform: translateY(-2px);
  background: rgba(0,104,55,0.1);
}

.industry-icon {
  font-size: 2rem;
  line-height: 1;
}

.industry-info h4 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: #FFFFFF;
}

.industry-info p {
  font-size: 0.8rem;
  color: var(--wp--preset--color--muted-grey);
  margin: 0;
}

/* How It Works Process Steps */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.process-step-card {
  background: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-green);
  color: #FFFFFF;
  font-family: var(--wp--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,104,55,0.4);
}

.process-step-card h4 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #FFFFFF;
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--wp--preset--color--muted-grey);
  margin: 0;
  line-height: 1.4;
}

/* Accordion FAQs (Gutenberg Details Block) */
.wp-block-details {
  background-color: var(--wp--preset--color--dark-card);
  border: 1px solid var(--wp--preset--color--border-dark);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}

.wp-block-details[open] {
  border-color: var(--wp--preset--color--primary-green-light);
  background: rgba(17,22,34,0.95);
}

.wp-block-details summary {
  font-family: var(--wp--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: #FFFFFF;
  cursor: pointer;
  outline: none;
  list-style-type: none;
  position: relative;
  padding-right: 30px;
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--wp--preset--color--primary-green-light);
  transition: transform 0.2s ease;
}

.wp-block-details[open] summary::after {
  content: "−";
}

.wp-block-details summary + * {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.6;
}

/* SEO Internal Linking Cloud */
.internal-links-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.internal-link-pill {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--wp--preset--color--border-dark);
  color: var(--wp--preset--color--primary-green-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--wp--font-heading);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.internal-link-pill:hover {
  background: var(--wp--preset--color--primary-green);
  color: #FFFFFF;
  border-color: var(--wp--preset--color--primary-green);
}

/* ==========================================================================
   Global Mobile, Tablet & Laptop Optimization Media Queries (<= 1200px)
   Legible Typography & Strict 1-Column Full-Width Vertical Row Stacking
   ========================================================================== */

@media (max-width: 1200px) {
  /* 1. Containers, Sections & Grid Padding */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .lk-section,
  .wp-block-group.alignfull,
  .wp-block-group.lk-section {
    padding: 40px 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hide Statistics Section on Mobile */
  .lk-stats-strip,
  .lk-stats-grid,
  .stats-strip,
  .stats-grid {
    display: none !important;
  }

  /* Force 1-Column Layout Across ALL Grid & Flex Components on Mobile & Small Screens (<= 992px) */
  .wp-block-columns,
  .trust-bar-grid,
  .trust-grid,
  .feature-cards-grid,
  .industry-cards-grid,
  .process-steps-grid,
  .spaghetti-hero-wrapper,
  .berber-hero-wrapper,
  .entrance-hero-wrapper,
  .event-hero-wrapper,
  .intro-grid,
  .variants-grid,
  .guides-grid,
  .swatches-grid,
  .wp-block-gallery,
  .wp-block-gallery.columns-5,
  div[style*="grid-template-columns"],
  div[style*="display:grid"],
  div[style*="display: grid"] {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Force 100% Full Width Spanning for Every Column, Card & Direct Child Row */
  .wp-block-columns > *,
  .intro-grid > *,
  .variants-grid > *,
  .guides-grid > *,
  .swatches-grid > *,
  .trust-grid > *,
  div[style*="grid-template-columns"] > *,
  div[style*="display:grid"] > *,
  div[style*="display: grid"] > *,
  .wp-block-column,
  .lk-card-dark,
  .feature-card,
  .industry-card,
  .process-step-card,
  .estimator-box,
  .trust-bar-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 24px 20px !important;
  }

  /* Product Showcase & Gallery Mobile Layout - Centered 85% Width */
  .wp-block-gallery,
  .lk-gallery-block,
  .wp-block-gallery.columns-5,
  .wp-block-gallery.has-nested-images {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 24px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .wp-block-gallery .wp-block-image,
  .wp-block-gallery figure.wp-block-image,
  .lk-gallery-block .wp-block-image,
  .lk-gallery-block figure {
    width: 85% !important;
    min-width: 80% !important;
    max-width: 85% !important;
    flex: 0 0 85% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .wp-block-gallery .wp-block-image img,
  .wp-block-gallery figure.wp-block-image img,
  .lk-gallery-block img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
    margin: 0 auto !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
  }

  .wp-block-gallery .wp-element-caption,
  .wp-block-gallery figcaption,
  .lk-gallery-block figcaption {
    position: relative !important;
    bottom: auto !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #10B981 !important;
    background: transparent !important;
    margin-top: 10px !important;
    padding: 4px 8px !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  /* 2. Compact Reduced Font Sizes */
  /* Headings */
  h1,
  .hero-heading-ref,
  .wp-block-heading.has-huge-font-size {
    font-size: 1.75rem !important;
    line-height: 1.18 !important;
    margin-bottom: 10px !important;
  }

  h2,
  .wp-block-heading.has-large-font-size {
    font-size: 1.35rem !important;
    line-height: 1.22 !important;
    margin-bottom: 8px !important;
  }

  h3,
  .berber-slide-title,
  .lk-card-dark h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  h4,
  .industry-info h4,
  .process-step-card h4 {
    font-size: 1.0rem !important;
    margin-bottom: 4px !important;
  }

  /* Eyebrow & Badges */
  .eyebrow-label,
  .eyebrow-label-ref,
  .berber-slide-badge {
    font-size: 0.7rem !important;
    letter-spacing: 0.08em !important;
    padding: 3px 10px !important;
    margin-bottom: 6px !important;
  }

  /* Body Paragraphs & Subtitles */
  p,
  li,
  .berber-slide-desc,
  .industry-info p,
  .process-step-card p,
  .wp-block-details summary + * {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
  }

  /* Stat Strip Numbers & Labels */
  .lk-stat-number {
    font-size: 1.8rem !important;
    line-height: 1 !important;
  }

  .lk-stat-label {
    font-size: 0.8rem !important;
  }

  /* Form & Estimator Box */
  .estimator-box h2 {
    font-size: 1.25rem !important;
  }

  .estimator-box p {
    font-size: 0.8rem !important;
  }

  .estimator-box input,
  .estimator-box select,
  .estimator-box textarea {
    font-size: 0.85rem !important;
    padding: 10px 12px !important;
  }

  /* Interactive Slider Navigation on Mobile */
  .berber-slider-container {
    border-radius: 14px !important;
  }

  .berber-slide-track {
    min-height: 280px !important;
  }

  .berber-slide-overlay {
    padding: 14px 16px 12px !important;
    background: linear-gradient(0deg, rgba(5, 8, 14, 0.92) 0%, rgba(5, 8, 14, 0.6) 50%, rgba(5, 8, 14, 0.2) 80%, transparent 100%) !important;
  }

  .berber-slide-title {
    font-size: 1.05rem !important;
    margin-bottom: 2px !important;
  }

  .berber-slide-desc {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }

  .berber-slider-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding: 10px !important;
  }

  .berber-nav-btn,
  .entrance-nav-btn {
    flex: 1 1 calc(50% - 6px) !important;
    font-size: 0.72rem !important;
    padding: 6px 4px !important;
    text-align: center !important;
  }

  /* Buttons & Action Links - 100% Width Full Spanning */
  .btn-gold,
  .btn-red,
  .btn-green,
  .btn-outline-white,
  .wp-block-button,
  .wp-block-button__link,
  .wpcf7-submit,
  .drawer-cta-btn,
  .drawer-whatsapp-btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    font-size: 0.88rem !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
  }

  /* Specification Table Responsive Display */
  .spec-table-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
  }

  /* Strict 100% Viewport Bounds Protection */
  .lk-top-bar,
  .lk-header,
  .lk-nav-container,
  .top-bar-left,
  .top-bar-right,
  .top-bar-mobile-icons,
  .spaghetti-hero-wrapper,
  .berber-hero-wrapper,
  .entrance-hero-wrapper,
  .event-hero-wrapper,
  .berber-slider-container,
  .berber-slide-track,
  .estimator-box,
  .lk-section,
  .container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Glassmorphic Quote Modal Popup (Dark Corporate Emerald Theme) */
body.modal-open {
  overflow: hidden !important;
}

.lk-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.lk-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lk-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lk-modal-container {
  position: relative;
  z-index: 2;
  background: #111622;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: 24px;
  padding: 36px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(16, 185, 129, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.lk-modal-overlay.open .lk-modal-container {
  transform: scale(1) translateY(0);
}

.lk-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  z-index: 10;
}

.lk-modal-close:hover {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 600px) {
  .lk-modal-container {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

/* ==========================================================================
   Industrial Excellence Cover Hero Section & Scrolling Marquee Ticker
   ========================================================================== */
.lk-industrial-cover-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #08090C;
  overflow: hidden;
  box-sizing: border-box;
}

.industrial-ambient-glow {
  position: absolute;
  left: -80px;
  top: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.06) 50%, rgba(16, 185, 129, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.industrial-cover-split {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.industrial-hero-col-left {
  flex: 0 0 52%;
  max-width: 52%;
  padding: 80px 40px 75px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  z-index: 3;
}

@media (min-width: 1400px) {
  .industrial-hero-col-left {
    padding-left: calc((100vw - 1320px) / 2 + 20px);
    padding-right: 50px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.industrial-hero-col-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .industrial-hero-col-right {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.industrial-machinist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.industrial-img-overlay-fade {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 160px;
  background: linear-gradient(to right, #08090C 0%, rgba(8, 9, 12, 0.8) 25%, rgba(8, 9, 12, 0) 100%);
  pointer-events: none;
}

.industrial-hero-title {
  font-family: var(--wp--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.industrial-hero-desc {
  font-family: var(--wp--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 24px 0;
  font-weight: 400;
  max-width: 490px;
}

.industrial-hero-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 30px;
}

.industrial-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.industrial-feature-item .feature-check {
  color: #10B981;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.industrial-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.industrial-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #10B981;
  color: #FFFFFF !important;
  font-family: var(--wp--font-heading, 'Outfit', sans-serif);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 9999px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.38);
  transition: all 0.25s ease;
  line-height: 1.2;
}

.industrial-cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  color: #FFFFFF !important;
}

.industrial-cta-btn .cta-arrow {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.industrial-cta-btn:hover .cta-arrow {
  transform: translateX(3px);
}

.industrial-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.industrial-avatars-cluster {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.avatar-circle-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #1E293B;
  display: block;
}

.avatar-circle-img:first-child {
  margin-left: 0;
}

.reviews-rating-text {
  font-family: var(--wp--font-heading, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  white-space: nowrap;
}



/* Mobile & Tablet Adaptation */
@media (max-width: 900px) {
  .industrial-cover-split {
    flex-direction: column;
  }

  .industrial-hero-col-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 60px 24px 40px;
  }

  .industrial-hero-col-right {
    flex: 0 0 100%;
    max-width: 100%;
    height: 320px;
  }

  .industrial-img-overlay-fade {
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, #08090C 0%, rgba(8, 9, 12, 0) 100%);
  }

  .industrial-hero-title {
    font-size: 2.2rem;
  }

  .industrial-hero-features {
    gap: 16px;
  }

  .industrial-hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .industrial-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}



.industrial-marquee-ticker { display: none; }
