/*
Theme Name: Bonylog
Theme URI: https://bonylog.hu
Author: Nemcsenyi Gabor
Author URI: https://bonylog.hu
Description: Bonylog Kft. - Konténer rendelés, Hulladékkezelés, Építőanyag kereskedés WordPress téma
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bonylog
Tags: one-page, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ============ CSS VARIABLES ============ */
:root {
  --orange: #E8721C;
  --orange-dark: #CC5F10;
  --orange-light: #F5983D;
  --orange-glow: rgba(232,114,28,0.25);
  --dark-grey: #1a1a1a;
  --medium-grey: #3a3a3a;
  --grey: #6B6B6B;
  --light-grey: #F0F0F0;
  --lighter-grey: #F7F7F7;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.18);
  --bg-primary: #ffffff;
  --bg-alt: #F7F7F7;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color-scheme: light dark;
}

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  /* scroll-behavior handled by JS for iOS compatibility */
  overflow-x: hidden;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-grey);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img { max-width: 100%; height: auto; }
:focus-visible {
  outline: 3px solid rgba(232,114,28,0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ LOGO WATERMARK ============ */
.logo-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-strip .logo-watermark {
  right: 5%;
  opacity: 0.08;
}
.about-section .logo-watermark {
  right: auto;
  left: -3%;
  top: 30%;
}
.faq-section .logo-watermark {
  right: -2%;
  top: 25%;
}
.contact-section .logo-watermark {
  left: -3%;
  right: auto;
  top: 60%;
}
body.dark-mode .logo-watermark {
  opacity: 0.03;
  filter: invert(1) brightness(2);
}
body.dark-mode .cta-strip .logo-watermark {
  opacity: 0.06;
  filter: invert(1) brightness(2);
}
@media (max-width: 768px) {
  .logo-watermark { width: 200px; height: 200px; right: -8%; }
  .cta-strip .logo-watermark { right: -5%; }
  .about-section .logo-watermark,
  .contact-section .logo-watermark { left: -8%; }
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--orange-glow);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.36s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.48s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.60s; }

/* ============ STICKY HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.header-top {
  background: var(--dark-grey);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  transition: all 0.4s ease;
  overflow: hidden;
  max-height: 40px;
}
.header.scrolled .header-top {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a {
  color: var(--orange-light);
  font-weight: 600;
}
.header-top a:hover { color: var(--white); }
.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.4s ease;
}
.header.scrolled .header-main { height: 65px; }
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--orange); }
.logo img {
  max-height: 50px;
  width: auto;
}
.logo img.logo-dark {
  display: none;
}
body.dark-mode .logo img.logo-light {
  display: none;
}
body.dark-mode .logo img.logo-dark {
  display: block;
}
html.dark-mode-init .logo img.logo-light {
  display: none;
}
html.dark-mode-init .logo img.logo-dark {
  display: block;
}
.header.scrolled .logo img {
  max-height: 40px;
}

/* ============ NAVIGATION ============ */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a,
.nav .menu-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--medium-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.nav a::after,
.nav .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover::after,
.nav a.active::after,
.nav .current-menu-item a::after {
  width: 60%;
}
.nav a:hover,
.nav .current-menu-item a { color: var(--orange); }
.nav a.active { color: var(--orange); }

/* WordPress menu list reset */
.nav .menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .menu li {
  list-style: none;
}

.nav-cta,
.nav .menu-item-cta a {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(232,114,28,0.3);
}
.nav-cta::after,
.nav .menu-item-cta a::after { display: none !important; }
.nav-cta:hover,
.nav .menu-item-cta a:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,114,28,0.4);
}

/* ============ MEGA MENU ============ */
.mega-menu-wrap {
  position: relative;
}
.has-megamenu {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}
.mega-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mega-menu-wrap:hover .mega-chevron,
.mega-menu-wrap.is-open .mega-chevron {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 16px 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
  white-space: nowrap;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.mega-menu-wrap:hover .mega-menu,
.mega-menu-wrap.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none !important;
  width: 160px;
}
.mega-item::after { display: none !important; }
.mega-item:hover {
  background: rgba(232,114,28,0.06);
}
.mega-item-img {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--lighter-grey);
}
.mega-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mega-item:hover .mega-item-img img {
  transform: scale(1.08);
}
.mega-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-grey), var(--lighter-grey));
}
.mega-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
  transition: color 0.25s ease;
}
.mega-item:hover .mega-item-title {
  color: var(--orange);
}
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.mega-item-desc {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--medium-grey);
  line-height: 1.4;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-item:hover .mega-item-desc {
  color: var(--dark-grey);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark-grey);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}
body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  margin-top: var(--header-h, 120px);
  min-height: 85vh;
  background: var(--dark-grey);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232,114,28,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(232,114,28,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 30%, #1f1f1f 70%, #1a1a1a 100%);
  animation: heroGradient 12s ease infinite alternate;
}
@keyframes heroGradient {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}
.hero-grid-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s ease-in-out infinite;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 3s; animation-duration: 6s; }
.hero-particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 2s; animation-duration: 10s; width: 3px; height: 3px; }
.hero-particle:nth-child(5) { left: 50%; top: 80%; animation-delay: 4s; animation-duration: 8s; width: 5px; height: 5px; }
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(20px, -30px) scale(1.3); opacity: 0.5; }
  50% { transform: translate(-10px, -50px) scale(0.8); opacity: 0.3; }
  75% { transform: translate(30px, -20px) scale(1.1); opacity: 0.4; }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text {
  opacity: 0;
  transform: translateY(40px);
  animation: heroTextIn 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 span {
  color: var(--orange);
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  opacity: 0.3;
  border-radius: 2px;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(232,114,28,0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232,114,28,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,114,28,0.05);
}
.hero-image-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  animation: heroImgIn 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroImgIn {
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-image .placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 30px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 4px 15px rgba(232,114,28,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge.has-seal {
  padding-left: calc(var(--seal-size, 56px) / 2 + 14px);
}
.hero-badge-seal {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--orange);
  box-shadow: 0 2px 10px rgba(232,114,28,0.3);
}
.hero-badge-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-float-card {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 20px;
  opacity: 0.15;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -15px) rotate(3deg); }
}

/* ============ SECTION DIVIDERS ============ */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}
.section-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--bg-primary);
  padding: 50px 20px;
  position: relative;
  z-index: 5;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--lighter-grey);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: 100px 20px;
  position: relative;
}
.section-alt { background: var(--lighter-grey); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-header h2 span { color: var(--orange); }
.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}
.section-line {
  width: 50px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin: 18px auto 0;
  position: relative;
}
.section-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-light);
  border-radius: 4px;
  animation: lineGlow 2s ease-in-out infinite;
}
@keyframes lineGlow {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.5); opacity: 0.4; }
}

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--light-grey);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #444, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img .placeholder { transform: scale(1.08); }
.service-card-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(232,114,28,0.3);
  z-index: 2;
}
.service-card-body { padding: 28px; }
.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card-body p {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}
.service-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}
.service-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-link:hover { gap: 12px; color: var(--orange-dark); }

/* Quick Contact Card */
.service-card-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
}
.service-card-cta .service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 40px;
}

/* ============ SERVICE ROW (ALTERNATING) ============ */
.service-row-section {
  position: relative;
  overflow: hidden;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.service-row.reverse .service-row-img { order: 2; }
.service-row.reverse .service-row-content { order: 1; }
.service-row-img {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.service-row:hover .service-row-img img { transform: translateY(var(--parallax-y, 0px)) scale(1.05); }
.service-row-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #444, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  transition: transform 0.8s ease;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.service-row:hover .service-row-img .placeholder {
  transform: translateY(var(--parallax-y, 0px)) scale(1.05);
}
.service-row-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row-content.bg-white { background: var(--bg-primary); }
.service-row-content.bg-grey { background: var(--lighter-grey); }
.service-row-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,114,28,0.08);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  width: fit-content;
  border: 1px solid rgba(232,114,28,0.15);
}
.service-row-content h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--dark-grey);
  letter-spacing: -0.3px;
}
.service-row-content p {
  color: var(--grey);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.service-row-copy p:last-child {
  margin-bottom: 0;
}
.service-row-copy a {
  color: var(--orange);
  font-weight: 700;
}
.service-row-copy a:hover {
  color: var(--orange-dark);
}
.service-row-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.service-row-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--dark-grey);
  font-weight: 500;
}
.service-row-features li i {
  flex-shrink: 0;
  color: var(--orange);
}
.service-row-content .highlight-box {
  background: var(--lighter-grey);
  padding: 22px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  margin: 20px 0;
  font-size: 0.88rem;
}
.service-row-content.bg-grey .highlight-box {
  background: var(--bg-primary);
}
.service-row-content .cta-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.service-row-secondary {
  color: var(--orange);
  border-color: var(--orange);
}
.service-row-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============ FULLPAGE SCROLL-SNAP (SERVICES) ============ */
.fp {
  position: relative;
}
.fp-s {
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
.fp-s .service-row {
  height: 100%;
  align-items: stretch;
}
.fp-s .service-row-img {
  min-height: unset;
  height: 100%;
}
.fp-s .service-row-content {
  overflow-y: auto;
  max-height: 100vh;
  max-height: 100dvh;
}

/* Clip-path image reveal */
.fp-clip {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: clip-path 2.2s cubic-bezier(.77, 0, .175, 1);
}
.fp-clip img,
.fp-clip .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(2px) brightness(0.85);
  transition: transform 2.2s cubic-bezier(.25,.46,.45,.94),
              filter 1.8s cubic-bezier(.25,.46,.45,.94);
}
.fp-s.on .fp-clip img,
.fp-s.on .fp-clip .placeholder {
  transform: scale(1);
  filter: blur(0) brightness(1);
}
.cl-l { clip-path: inset(0 100% 0 0); }
.cl-r { clip-path: inset(0 0 0 100%); }
.cl-u { clip-path: inset(0 0 100% 0); }
.cl-c { clip-path: circle(0% at 50% 50%); }
.cl-d { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
.fp-s.on .cl-l { clip-path: inset(0 0% 0 0); }
.fp-s.on .cl-r { clip-path: inset(0 0 0 0%); }
.fp-s.on .cl-u { clip-path: inset(0 0 0% 0); }
.fp-s.on .cl-c { clip-path: circle(75% at 50% 50%); }
.fp-s.on .cl-d { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* Watermark numbers */
.fp-wm {
  position: absolute;
  font-weight: 900;
  font-size: min(28vw, 360px);
  color: rgba(0, 0, 0, 0.025);
  line-height: 1;
  z-index: 0;
  right: 5%;
  bottom: 5%;
  pointer-events: none;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
  transform: translateY(30px) scale(0.96);
  transition: transform 1.6s cubic-bezier(.16,1,.3,1);
}
.fp-s.on .fp-wm {
  transform: translateY(0) scale(1);
}
body.dark-mode .fp-wm {
  color: rgba(255, 255, 255, 0.02);
}

/* Glow line accent */
@keyframes glowPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--orange-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 24px var(--orange-glow), 0 0 48px rgba(232,114,28,0.1); }
}
.fp-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--orange), transparent);
  z-index: 10;
  transition: height 1.8s cubic-bezier(.77, 0, .175, 1);
  box-shadow: 0 0 12px var(--orange-glow), 0 0 30px rgba(232,114,28,0.08);
}
.fp-s.on .fp-glow {
  height: 100%;
  animation: glowPulse 2.5s ease-in-out 2s 2;
}

/* Fade-in content animation */
.fp-fade {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.7s ease;
}
.fp-s.on .fp-fade {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.fp-s.on .fp-fade.d1 { transition-delay: 0.3s; }
.fp-s.on .fp-fade.d2 { transition-delay: 0.5s; }
.fp-s.on .fp-fade.d3 { transition-delay: 0.7s; }

/* Section dots navigation */
.fp-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.16,1,.3,1);
}
.fp-dots.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.fp-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(232, 114, 28, 0.4);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Enlarged click target */
.fp-dot::after {
  content: '';
  position: absolute;
  inset: -15px;
}
.fp-dot span {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--orange);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 6px var(--orange-glow);
}
.fp-dot.active {
  border-color: var(--orange);
  transform: scale(1.3);
}
.fp-dot.active span {
  transform: scale(1);
}
.fp-dot:hover {
  border-color: var(--orange);
}

/* Section counter */
.fp-counter {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--grey);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.fp-counter.visible {
  opacity: 1;
}
.fp-counter-current {
  color: var(--orange);
  font-size: 1.1rem;
}
.fp-counter-sep {
  margin: 0 3px;
  opacity: 0.4;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.cta-strip h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-strip p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cta-strip .btn-white {
  background: var(--bg-primary);
  color: var(--orange);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.cta-strip .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-grey), #e0e0e0);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #aaa, #888);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}
.product-card-body {
  padding: 16px 18px;
  text-align: center;
}
.product-card-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card-desc {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 4px;
  line-height: 1.4;
}
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}
.product-cat {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-cat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-cat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orange);
}
.product-cat ul { list-style: none; }
.product-cat ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.88rem;
  color: var(--medium-grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-cat ul li:last-child { border-bottom: none; }
.product-cat ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  background: var(--dark-grey);
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,114,28,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,114,28,0.05) 0%, transparent 60%);
  border-radius: 50%;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.about-image .placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #444, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  padding: 20px;
  text-align: center;
}
.about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 25px;
}
.about-content h2 span { color: var(--orange); }
.about-content p {
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.timeline {
  margin-top: 35px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(232,114,28,0.2);
}
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  position: relative;
}
.timeline-year {
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  height: fit-content;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(232,114,28,0.3);
}
.timeline-text {
  font-size: 0.9rem;
  opacity: 0.8;
  padding-top: 4px;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  padding: 100px 20px;
  background: var(--lighter-grey);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(232,114,28,0.25);
}
.contact-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item p {
  color: var(--grey);
  font-size: 0.95rem;
}
.contact-item a {
  color: var(--orange);
  font-weight: 600;
}
.contact-item a:hover { color: var(--orange-dark); }
.opening-hours {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.opening-hours h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-grey);
}
.opening-hours table { width: 100%; }
.opening-hours td {
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-grey);
}
.opening-hours tr:last-child td { border-bottom: none; }
.opening-hours .day {
  font-weight: 600;
  color: var(--dark-grey);
}
.opening-hours .hours {
  text-align: right;
  color: var(--grey);
}
.opening-hours .closed {
  color: #cc3333;
  font-weight: 600;
}
.contact-form-wrap {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--medium-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--lighter-grey);
  color: #1a1a1a;
}
.form-group select option {
  color: #1a1a1a;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(232,114,28,0.08);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232,114,28,0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Contact Form 7 compatibility */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 input.wpcf7-form-control,
.wpcf7 textarea.wpcf7-form-control,
.wpcf7 select.wpcf7-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--lighter-grey);
}
.wpcf7 input.wpcf7-form-control:focus,
.wpcf7 textarea.wpcf7-form-control:focus,
.wpcf7 select.wpcf7-form-control:focus {
  border-color: var(--orange);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(232,114,28,0.08);
}
.wpcf7 input.wpcf7-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232,114,28,0.3);
  width: 100%;
}
.wpcf7 input.wpcf7-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.wpcf7-response-output {
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 0.88rem;
  line-height: 1.5;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #16a34a !important;
  background: rgba(22,163,74,0.08);
  color: #16a34a;
}
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: #dc2626 !important;
  background: rgba(220,38,38,0.06);
  color: #dc2626;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 6px;
  display: block;
}
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}
.contact-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
  animation: toastSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-message i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
}
.contact-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.contact-success i { color: #4caf50; }
.contact-error {
  background: #fbe9e7;
  border: 1px solid #ef9a9a;
  color: #c62828;
}
.contact-error i { color: #f44336; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-grey);
  color: var(--medium-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(232,114,28,0.3);
}
.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-container .placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

/* ============ SUPPLIERS ============ */
.suppliers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 35px 0;
  margin-top: 30px;
  border-top: 1px solid var(--light-grey);
}
.supplier-logo {
  background: var(--lighter-grey);
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--grey);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.supplier-logo:hover {
  color: var(--orange);
  background: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============ PARTNERS BAR ============ */
.partners-bar {
  padding: 30px 0;
  background: var(--lighter-grey);
  overflow: hidden;
}
.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.partners-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--grey);
  margin-bottom: 20px;
}
.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-slide {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.partners-slide:hover {
  animation-play-state: paused;
}
.partner-logo {
  flex-shrink: 0;
  max-height: 45px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.partner-logo img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}
.partner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  max-height: 56px;
  padding: 0 26px;
  background: var(--bg-primary);
  border: 1.5px solid rgba(232, 114, 28, 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  opacity: 1;
  filter: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.partner-text:hover {
  opacity: 1;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(232, 114, 28, 0.18);
  transform: translateY(-1px);
}
.partner-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--dark-grey);
  white-space: nowrap;
  transition: color 0.4s ease;
}
.partner-text:hover span {
  color: var(--orange);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--lighter-grey);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-top-color: var(--orange);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--medium-grey);
  font-style: italic;
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 15px;
  border-top: 1px solid var(--light-grey);
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-grey);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-link:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}
.gallery-link:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
}
.gallery-zoom {
  font-size: 1.4rem;
  opacity: 0.7;
}

/* ============ GALLERY LIGHTBOX ============ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  max-width: 80%;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 8px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
}
.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.announcement-link {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-link:hover {
  opacity: 0.85;
}
.announcement-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
}
.announcement-close:hover { opacity: 1; }

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--bg-primary);
  border-top: 1px solid var(--light-grey);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 18px 30px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.visible {
  transform: translateY(0);
}
.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.cookie-consent-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--medium-grey);
  line-height: 1.6;
}
.cookie-consent-inner a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-accept:hover { background: var(--orange-dark); }
.cookie-decline {
  background: none;
  border: 1px solid var(--light-grey);
  color: var(--grey);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-decline:hover { border-color: var(--medium-grey); color: var(--medium-grey); }

/* ============ QUICK CONTACT FAB ============ */
.quick-contact-fab {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.quick-contact-fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.qc-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(232,114,28,0.35);
  transition: background 0.3s, transform 0.3s;
}
.qc-toggle:hover { background: var(--orange-dark); transform: scale(1.08); }
.qc-icon-close { display: none; }
.quick-contact-fab.is-open .qc-icon-chat { display: none; }
.quick-contact-fab.is-open .qc-icon-close { display: block; }
.qc-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.qc-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.qc-option:hover { transform: scale(1.12); }
.qc-whatsapp { background: #25D366; }
.qc-messenger { background: #0084FF; }
.qc-phone { background: var(--orange); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding: 60px 20px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer p {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.7;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--orange);
  padding-left: 5px;
}
.footer-col-icon { display: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* WordPress footer menu */
.footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .menu li { margin-bottom: 12px; }
.footer .menu a {
  font-size: 0.88rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer .menu a:hover {
  opacity: 1;
  color: var(--orange);
  padding-left: 5px;
}

/* ============ FLOATING PHONE BTN ============ */
.floating-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 16px 26px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(232,114,28,0.4);
  transition: all 0.3s ease;
  animation: phonePulse 3s ease-in-out infinite;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}
.floating-phone.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(232,114,28,0.4); }
  50% { box-shadow: 0 8px 45px rgba(232,114,28,0.6); }
}
.floating-phone:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

/* ============ EQUIPMENT CARDS ============ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.equipment-item {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.equipment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.equipment-item .eq-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.equipment-item strong {
  font-size: 0.82rem;
  color: var(--dark-grey);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-grey);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  transform: translateY(100px);
  opacity: 0;
  border: none;
  pointer-events: none;
}
.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ============ MOBILE NAV OVERLAY ============ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}
body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
}

/* ============ WORDPRESS SPECIFIC ============ */
.wp-block-image img { border-radius: var(--radius); }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .fp-wm { font-size: min(20vw, 200px); }
  .hero-inner { gap: 40px; }
  .hero h1 { font-size: 2.6rem; }
  .section-header h2 { font-size: 2rem; }
  .about-content h2 { font-size: 1.8rem; }
  .cta-strip h2 { font-size: 1.7rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 35px; }
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    left: 15px;
    right: 15px;
    top: calc(var(--header-h, 80px) + 10px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1001;
  }
  .nav .menu {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  body.nav-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav a,
  .nav .menu li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    min-height: 44px;
  }
  .nav a::after,
  .nav .menu li a::after { display: none; }
  .nav-cta,
  .nav .menu-item-cta a { width: 100%; justify-content: center !important; }
  /* Mega menu mobile */
  .mega-menu-wrap { position: static; width: 100%; }
  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
    overflow: hidden;
  }
  .mega-menu::before { display: none; }
  .mega-menu-inner {
    overflow: hidden;
  }
  .mega-menu-wrap.is-open .mega-menu {
    grid-template-rows: 1fr;
    padding: 8px 0;
  }
  .mega-menu-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .mega-item {
    width: auto;
    flex-direction: row;
    padding: 8px 10px;
    gap: 10px;
  }
  .mega-item-img {
    width: 50px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .mega-item-text {
    text-align: left;
    gap: 2px;
  }
  .mega-item-title {
    font-size: 0.65rem;
    text-align: left;
  }
  .mega-item-desc {
    font-size: 0.6rem;
    -webkit-line-clamp: 1;
  }
  .has-megamenu { justify-content: space-between !important; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 60px 20px; }
  .hero::before { animation: none; }
  .hero-particle { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-btns { justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .hero-image-wrap {
    display: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
  }
  .service-row { grid-template-columns: 1fr; }
  .service-row-img { min-height: 280px; }
  .service-row.reverse .service-row-img { order: 0; }
  .service-row.reverse .service-row-content { order: 0; }
  .service-row-content { padding: 40px 25px; }
  .service-row-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-content h2 { font-size: 1.6rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 25px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-categories { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0; }
  .footer-col h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 16px 0;
    -webkit-user-select: none;
    user-select: none;
  }
  .footer-col-icon {
    display: inline;
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
  }
  .footer-col.active .footer-col-icon {
    transform: rotate(180deg);
  }
  .footer-col .footer-links,
  .footer-col .menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
  }
  .footer-col.active .footer-links,
  .footer-col.active .menu {
    max-height: 300px;
    padding-bottom: 16px;
  }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-number { font-size: 2rem; }
  .floating-phone span.phone-text { display: none; }
  .equipment-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 20px; }
  .section-header h2 { font-size: 1.7rem; }
  .section-header { margin-bottom: 45px; }
  .cta-strip h2 { font-size: 1.5rem; }
  .cta-strip { padding: 50px 20px; }
  .section-divider { height: 50px; }
  /* Disable fullpage lock on mobile */
  .fp-s {
    height: auto;
    min-height: unset;
  }
  .fp-s .service-row { height: auto; }
  .fp-s .service-row-content { max-height: none; overflow-y: visible; }
  .fp-dots,
  .fp-counter { display: none !important; }
  .fp-wm { font-size: min(30vw, 150px); }
  .fp-clip {
    position: relative;
    inset: auto;
    clip-path: none !important;
    min-height: 280px;
  }
  .fp-fade {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .fp-clip img,
  .fp-clip .placeholder {
    transform: none;
    filter: none;
    transition: none;
  }
  .fp-wm {
    transform: none;
    transition: none;
  }
  .fp-glow { display: none; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 0.9rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; justify-content: center; }
  .section-header h2 { font-size: 1.4rem; }
  .cta-strip h2 { font-size: 1.25rem; }
  .about-content h2 { font-size: 1.35rem; }
  .faq-question { font-size: 0.9rem; padding: 16px 18px; }
  .announcement-bar { font-size: 0.72rem; padding: 6px 10px; }
  .announcement-inner { gap: 8px; flex-wrap: wrap; }
  .header-top-inner { font-size: 0.7rem; gap: 8px; }
  .header-top-inner span { display: none; }
  .header-top-inner a { white-space: nowrap; margin: 0 auto; }
  .floating-phone { right: 16px; bottom: 20px; padding: 12px 16px; font-size: 0.85rem; z-index: 998; }
  .back-to-top { left: 16px; bottom: 20px; width: 40px; height: 40px; font-size: 1rem; z-index: 998; }
  .contact-form-wrap { padding: 20px 15px; }
  .service-row-content { padding: 30px 20px; }
  .service-row-content h2 { font-size: 1.4rem; }
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--lighter-grey) 100%);
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  border: none;
  background: var(--bg-primary);
  color: var(--dark-grey);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover,
.faq-question.is-open {
  color: var(--orange);
  background: rgba(232,114,28,0.06);
}
.faq-question:focus-visible {
  outline: 3px solid rgba(232,114,28,0.35);
  outline-offset: -3px;
}
.faq-toggle {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,114,28,0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--medium-grey);
  line-height: 1.8;
  font-size: 0.95rem;
}
.faq-answer[hidden] {
  display: none !important;
}
.faq-answer p + p {
  margin-top: 0.8em;
}

@media (max-width: 768px) {
  .faq-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  .faq-answer {
    padding: 0 18px 16px;
  }
}

/* ============ PAGINATION ============ */
.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--medium-grey);
  background: var(--bg-primary);
  border: 1px solid var(--light-grey);
  transition: all 0.3s ease;
}
.pagination-wrap .page-numbers:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(232,114,28,0.04);
}
.pagination-wrap .page-numbers.current {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(232,114,28,0.3);
}
.pagination-wrap .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: 30px;
  padding: 0;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 10px 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--orange-dark);
  outline-offset: 2px;
}

/* ============ FOCUS STYLES ============ */
:focus-visible {
  outline: 3px solid rgba(232,114,28,0.5);
  outline-offset: 2px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-submit:focus-visible,
.btn-white:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
}

/* ============ PAGE CONTENT STYLES ============ */
.page-main {
  margin-top: var(--header-h, 120px);
  min-height: 60vh;
  padding: 60px 20px;
}
.page-main--centered {
  text-align: center;
}
.page-main--404 {
  padding: 0;
}
.page-main--404.page-main {
  padding: 0;
}
/* Generic page template */
.page-generic.page-main {
  padding-top: 0;
}
.page-header {
  margin: 0 -20px;
  padding-bottom: 0;
}
.page-header-inner {
  background: #1a1a1a;
  padding: 50px 20px 40px;
  position: relative;
  overflow: hidden;
}
.page-header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(232,114,28,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 40%, rgba(232,114,28,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-header .section-header {
  position: relative;
  z-index: 1;
}
.page-header .section-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}
.page-header .section-line {
  background: var(--orange);
}
.page-header .single-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.page-content-wrap {
  max-width: 900px;
  padding-top: 50px;
}
.page-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 25px;
}
.page-title--archive {
  font-size: 2rem;
}
.page-content {
  color: var(--medium-grey);
  line-height: 1.8;
  font-size: 1rem;
}
/* Page article typography (shared with single) */
.page-article .page-content {
  font-size: 1.02rem;
  line-height: 1.85;
}
.page-article .page-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 36px 0 14px;
  color: var(--dark-grey);
}
.page-article .page-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--dark-grey);
}
.page-article .page-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--dark-grey);
}
.page-article .page-content p {
  margin-bottom: 18px;
}
.page-article .page-content img {
  border-radius: var(--radius);
  margin: 20px 0;
}
.page-article .page-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  margin: 24px 0;
  background: var(--lighter-grey);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--medium-grey);
}
.page-article .page-content ul,
.page-article .page-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.page-article .page-content li {
  margin-bottom: 6px;
}
.page-article .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-grey);
}
.page-article .page-content th {
  background: var(--lighter-grey);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--light-grey);
}
.page-article .page-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.92rem;
}
.page-article .page-content tr:last-child td {
  border-bottom: none;
}
.page-article .page-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(232,114,28,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.page-article .page-content a:hover {
  text-decoration-color: var(--orange);
}
.page-article .page-content hr {
  border: none;
  height: 1px;
  background: var(--light-grey);
  margin: 36px 0;
}
.page-article .page-content figure {
  margin: 28px 0;
}
.page-article .page-content figure img {
  border-radius: var(--radius);
  margin: 0;
}
.page-article .page-content figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 10px;
  font-style: italic;
}
.page-article .page-content pre {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 18px 22px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 24px 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.page-article .page-content code {
  background: var(--lighter-grey);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.88em;
  color: var(--orange-dark);
}
.page-article .page-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}
.post-article {
  margin-bottom: 40px;
}
.post-article--bordered {
  padding-bottom: 35px;
  border-bottom: 1px solid var(--light-grey);
}
.post-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.post-title a {
  color: var(--dark-grey);
}
.post-title a:hover {
  color: var(--orange);
}
.post-title--single {
  font-size: 2.2rem;
  font-weight: 900;
}
.post-title--archive {
  font-size: 1.4rem;
}
.post-meta {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.post-excerpt {
  color: var(--medium-grey);
  line-height: 1.8;
}
.post-thumbnail {
  margin-bottom: 30px;
  border-radius: var(--radius);
  overflow: hidden;
}
.post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.post-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--light-grey);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.post-navigation a {
  color: var(--orange);
  font-weight: 600;
}
.post-navigation a:hover {
  color: var(--orange-dark);
}
.pagination-wrap {
  margin-top: 40px;
}
.error-404-hero {
  min-height: 80vh;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}
.error-404-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(232,114,28,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.error-404-inner {
  position: relative;
  z-index: 1;
  max-width: 550px;
}
.error-404-code {
  font-size: 8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 80px rgba(232,114,28,0.3);
}
.error-404-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 20px 0 15px;
  color: #fff;
}
.error-404-text {
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  line-height: 1.7;
}
.error-404-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-404-search {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.error-404-search-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.error-404-search .search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.error-404-search .search-field {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 50px 0 0 50px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.error-404-search .search-field:focus {
  border-color: var(--orange);
}
.error-404-search .search-field::placeholder {
  color: rgba(255,255,255,0.35);
}
.error-404-search .search-submit {
  padding: 14px 24px;
  border: 2px solid var(--orange);
  border-radius: 0 50px 50px 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.error-404-search .search-submit:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.search-title {
  font-size: 2rem;
  font-weight: 900;
}
.search-highlight {
  color: var(--orange);
}
.search-count {
  color: var(--grey);
  margin-bottom: 40px;
  text-align: center;
}
.no-results {
  text-align: center;
  padding: 60px 0;
}
.no-results-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--grey);
}
.no-results-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.no-results-text {
  color: var(--grey);
  margin-bottom: 30px;
}

/* ============ COMMENTS ============ */
.comments-area {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--light-grey);
}
.comments-header {
  margin-bottom: 30px;
}
.comments-title {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comments-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .comment {
  margin-bottom: 20px;
  padding: 24px;
  background: var(--lighter-grey);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  transition: border-color 0.3s ease;
}
.comment-list .comment:hover {
  border-color: rgba(232,114,28,0.12);
}
.comment-list .children {
  list-style: none;
  padding-left: 30px;
  margin-top: 16px;
  border-left: 2px solid var(--light-grey);
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-meta .avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 2px solid var(--light-grey);
}
.comment-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.comment-date {
  font-size: 0.78rem;
  color: var(--grey);
}
.comment-content {
  color: var(--medium-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}
.comment-content p {
  margin-bottom: 10px;
}
.comment-reply-link {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.comment-reply-link:hover {
  color: var(--orange-dark);
  gap: 8px;
}
.comment-form-note {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 20px;
}
.comment-respond {
  margin-top: 30px;
  padding: 30px;
  background: var(--lighter-grey);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
}
.comment-respond .comment-reply-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-respond .comment-reply-title i {
  color: var(--orange);
}
.comment-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--medium-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--lighter-grey);
  margin-bottom: 16px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--orange);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(232,114,28,0.08);
}
.comment-form .submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(232,114,28,0.3);
}
.comment-form .submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ============ BLOG SECTION ============ */
.blog-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--lighter-grey) 100%);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--light-grey);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}
.blog-card-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #444, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.6s ease;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.blog-card:hover .blog-card-img::after {
  opacity: 1;
}
.blog-card:hover .blog-card-img .placeholder {
  transform: scale(1.08);
}
.blog-card-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 3px 10px rgba(232,114,28,0.3);
}
.blog-card-day {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
}
.blog-card-month {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body {
  padding: 24px 28px;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-cat {
  background: rgba(232,114,28,0.08);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h3 a {
  color: var(--dark-grey);
}
.blog-card-body h3 a:hover {
  color: var(--orange);
}
.blog-card-body p {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.blog-card-link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 180px; }
}
.blog-card-img-link {
  display: block;
}

/* ============ BLOG LISTING PAGE ============ */
.blog-listing-page {
  background: var(--bg-primary);
}
.blog-listing-page.page-main {
  padding-top: 0;
}
.blog-page-header {
  padding-bottom: 0;
  margin: 0 -20px;
}
.blog-page-header-inner {
  background: #1a1a1a;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
}
.blog-page-header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(232,114,28,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 40%, rgba(232,114,28,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.blog-page-header .section-header {
  position: relative;
  z-index: 1;
}
.blog-page-header .section-header h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
}
.blog-page-header .section-header h1 span {
  color: var(--orange);
}
.blog-page-header .section-header p {
  color: rgba(255,255,255,0.7);
}
.blog-page-header .section-line {
  background: var(--orange);
}
.blog-card-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--grey);
}
.blog-grid-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.blog-grid-divider::before,
.blog-grid-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-grey);
}
.blog-grid-divider span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  white-space: nowrap;
}

/* Featured (first) post card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 40px;
  transition: var(--transition);
}
.blog-featured-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.blog-featured-img {
  display: block;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--light-grey);
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-featured-card:hover .blog-featured-img img {
  transform: scale(1.05);
}
.blog-featured-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #444, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.blog-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.35;
}
.blog-featured-body h2 a {
  color: var(--dark-grey);
  transition: color 0.3s ease;
}
.blog-featured-body h2 a:hover {
  color: var(--orange);
}
.blog-featured-body > p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
  align-self: flex-start;
}
.blog-featured-badge i {
  font-size: 0.6rem;
}
.blog-featured-body .btn-primary {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-img {
    min-height: 220px;
    height: 220px;
  }
  .blog-featured-body {
    padding: 24px;
  }
  .blog-featured-body h2 {
    font-size: 1.25rem;
  }
  .blog-page-header .section-header h1 {
    font-size: 1.6rem;
  }
  .blog-page-header-inner {
    padding: 40px 20px 35px;
  }
}

/* ============ SINGLE POST PAGE ============ */
.single-post-page {
  padding: 0 0 60px;
}
.single-post-page.page-main {
  padding-top: 0;
}
.single-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.single-hero-img {
  position: absolute;
  inset: 0;
}
.single-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.single-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 50px;
  color: var(--white);
}
/* Breadcrumb */
.single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
}
.single-breadcrumb a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color 0.2s ease;
}
.single-breadcrumb a:hover {
  color: var(--white);
}
.single-breadcrumb-sep {
  font-size: 0.55rem;
  opacity: 0.5;
}
.single-breadcrumb-current {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.single-breadcrumb--light a {
  color: var(--grey);
}
.single-breadcrumb--light a:hover {
  color: var(--orange);
}
.single-breadcrumb--light .single-breadcrumb-sep {
  color: var(--grey);
}
.single-breadcrumb--light .single-breadcrumb-current {
  color: var(--medium-grey);
}
.single-hero-cat {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.single-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  max-width: 800px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.single-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  opacity: 0.9;
}
.single-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.single-header-simple {
  padding: 40px 20px 30px;
  text-align: center;
}
.single-header-simple .blog-card-cat {
  display: inline-block;
  margin-bottom: 16px;
}
.single-header-simple .single-hero-meta {
  justify-content: center;
  color: var(--grey);
  margin-top: 16px;
}
.single-header-simple .section-inner {
  max-width: 800px;
}
.single-content-wrap {
  max-width: 800px;
  padding: 50px 20px 0;
}
.single-article .page-content {
  font-size: 1.05rem;
  line-height: 1.85;
}
.single-article .page-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 40px 0 16px;
}
.single-article .page-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.single-article .page-content p {
  margin-bottom: 20px;
}
.single-article .page-content img {
  border-radius: var(--radius);
  margin: 24px 0;
}
.single-article .page-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--lighter-grey);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--medium-grey);
}
.single-article .page-content ul,
.single-article .page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.single-article .page-content li {
  margin-bottom: 8px;
}
.single-article .page-content > p:first-child::first-letter {
  float: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--orange);
}
.single-article .page-content figure {
  margin: 32px 0;
}
.single-article .page-content figure img {
  border-radius: var(--radius);
  margin: 0;
}
.single-article .page-content figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 10px;
  font-style: italic;
}
.single-article .page-content pre {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 20px 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 28px 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.single-article .page-content code {
  background: var(--lighter-grey);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.88em;
  color: var(--orange-dark);
}
.single-article .page-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}
.single-article .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-grey);
}
.single-article .page-content th {
  background: var(--lighter-grey);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--light-grey);
}
.single-article .page-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--light-grey);
  font-size: 0.92rem;
}
.single-article .page-content tr:last-child td {
  border-bottom: none;
}
.single-article .page-content hr {
  border: none;
  height: 1px;
  background: var(--light-grey);
  margin: 40px 0;
}
.single-article .page-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(232,114,28,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.single-article .page-content a:hover {
  text-decoration-color: var(--orange);
}
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--light-grey);
}
.single-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--lighter-grey);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  transition: all 0.3s ease;
}
.single-tag:hover {
  background: rgba(232,114,28,0.1);
  color: var(--orange);
}
.single-share-bar {
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.single-share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-share-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}
.single-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-grey);
  background: transparent;
  color: var(--grey);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.single-share-btn:hover {
  transform: translateY(-2px);
}
.single-share-btn--fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.single-share-btn--copy:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.single-share-btn--copy.copied {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.single-back-link:hover {
  gap: 12px;
  color: var(--orange-dark);
}
/* Author box */
.author-box {
  display: flex;
  gap: 24px;
  padding: 28px;
  margin-top: 40px;
  background: var(--lighter-grey);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  border-left: 4px solid var(--orange);
}
.author-box-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author-box-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
}
.author-box-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 4px 0 8px;
}
.author-box-bio {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
/* Related posts */
.related-posts {
  margin-top: 60px;
  padding: 60px 20px;
  background: var(--lighter-grey);
}
.related-posts .section-header h2 span {
  color: var(--orange);
}
.post-nav-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--light-grey);
}
.post-nav-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--lighter-grey);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  text-decoration: none;
}
.post-nav-card:hover {
  background: rgba(232,114,28,0.04);
  border-color: rgba(232,114,28,0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.post-nav-card--next {
  text-align: right;
}
.post-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav-card--next .post-nav-label {
  justify-content: flex-end;
}
.post-nav-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}
.post-nav-card--next .post-nav-thumb {
  align-self: flex-end;
}
.post-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark-grey);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .single-hero {
    height: 320px;
  }
  .single-hero-title {
    font-size: 1.6rem;
  }
  .single-hero-content {
    padding-bottom: 30px;
  }
  .single-hero-meta {
    gap: 12px;
    font-size: 0.8rem;
  }
  .single-content-wrap {
    padding-top: 30px;
  }
  .post-nav-enhanced {
    grid-template-columns: 1fr;
  }
  .post-nav-card--next {
    text-align: left;
  }
  .post-nav-card--next .post-nav-label {
    justify-content: flex-start;
  }
  .post-nav-card--next .post-nav-thumb {
    align-self: flex-start;
  }
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .single-share-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .related-posts {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .single-article .page-content > p:first-child::first-letter {
    font-size: 2.8rem;
  }
  .single-breadcrumb {
    font-size: 0.7rem;
    gap: 6px;
    margin-bottom: 14px;
  }
  .error-404-code {
    font-size: 5rem;
  }
  .error-404-title {
    font-size: 1.4rem;
  }
  .error-404-btns {
    flex-direction: column;
    align-items: center;
  }
  .comment-list .children {
    padding-left: 16px;
  }
  .comment-respond {
    padding: 20px;
  }
  .page-header .section-header h1 {
    font-size: 1.5rem;
  }
  .page-header-inner {
    padding: 35px 20px 30px;
  }
  .page-content-wrap {
    padding-top: 30px;
  }
}

/* ============ DARK MODE TOGGLE ============ */
.theme-toggle {
  background: transparent;
  border: 2px solid var(--light-grey);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 8px;
  flex-shrink: 0;
  color: var(--medium-grey);
}
.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,114,28,0.05);
}
.theme-toggle i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.theme-toggle:hover i {
  transform: rotate(15deg);
}
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }

/* ============ DARK MODE ============ */
/* Prevent flash of light theme */
html.dark-mode-init body {
  background: #161616;
  color: #f0f0f0;
}
html.dark-mode-init .header {
  background: rgba(22,22,22,0.95);
}

body.dark-mode {
  --dark-grey: #f0f0f0;
  --medium-grey: #d0d0d0;
  --grey: #a0a0a0;
  --light-grey: #2a2a2a;
  --lighter-grey: #1e1e1e;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.5);
  --bg-primary: #161616;
  --bg-alt: #1e1e1e;
  color-scheme: dark;
  background: #161616;
  color: #f0f0f0;
}
body.dark-mode .theme-toggle .icon-moon { display: none; }
body.dark-mode .theme-toggle .icon-sun { display: block; }
body.dark-mode .header {
  background: rgba(22,22,22,0.95);
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-mode .header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
body.dark-mode .header-top {
  background: #0e0e0e;
}
body.dark-mode .logo {
  color: #f0f0f0;
}
body.dark-mode .nav a {
  color: #c0c0c0;
}
body.dark-mode .nav a:hover,
body.dark-mode .nav a.active {
  color: var(--orange);
}
body.dark-mode .mega-menu {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
}
body.dark-mode .mega-item:hover {
  background: rgba(232,114,28,0.1);
}
body.dark-mode .mega-item-title {
  color: #c0c0c0;
}
body.dark-mode .mega-item:hover .mega-item-title {
  color: var(--orange);
}
body.dark-mode .mega-item-img {
  background: #2a2a2a;
}
body.dark-mode .mega-item-placeholder {
  background: linear-gradient(135deg, #2a2a2a, #333);
}
body.dark-mode .mega-item-desc {
  color: #888;
}
body.dark-mode .mega-item:hover .mega-item-desc {
  color: #b0b0b0;
}
body.dark-mode .hero {
  background: #0e0e0e;
}
body.dark-mode .hero::before {
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232,114,28,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(232,114,28,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 30%, #141414 70%, #0e0e0e 100%);
}
body.dark-mode .stats-bar {
  background: #161616;
}
body.dark-mode .stat-item {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.06);
}
body.dark-mode .stat-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
body.dark-mode .service-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
body.dark-mode .service-card-body h3 {
  color: #f0f0f0;
}
body.dark-mode .service-card-footer {
  border-top-color: rgba(255,255,255,0.08);
}
body.dark-mode .service-row-content.bg-white {
  background: #161616;
}
body.dark-mode .service-row-content.bg-grey {
  background: #1e1e1e;
}
body.dark-mode .service-row-content h2 {
  color: #f0f0f0;
}
body.dark-mode .highlight-box {
  background: #1e1e1e;
}
body.dark-mode .service-row-content.bg-grey .highlight-box {
  background: #161616;
}
body.dark-mode .service-row-copy a {
  color: var(--orange-light);
}
body.dark-mode .service-row-copy a:hover {
  color: var(--orange);
}
body.dark-mode .service-row-secondary {
  color: var(--orange-light);
  border-color: var(--orange);
}
body.dark-mode .service-row-secondary:hover {
  color: var(--white);
}
body.dark-mode .fp-dot {
  border-color: rgba(232, 114, 28, 0.3);
}
body.dark-mode .fp-counter {
  color: rgba(255,255,255,0.4);
}
body.dark-mode .product-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
body.dark-mode .product-card-body h4 {
  color: #f0f0f0;
}
body.dark-mode .product-cat {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .product-cat:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
body.dark-mode .product-cat ul li {
  border-bottom-color: rgba(255,255,255,0.06);
  color: #c0c0c0;
}
body.dark-mode .section-alt {
  background: #1e1e1e;
}
body.dark-mode .about-section {
  background: #0e0e0e;
}
body.dark-mode .contact-section {
  background: #1e1e1e;
}
body.dark-mode .contact-form-wrap {
  background: #161616;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .contact-form-wrap h3 {
  color: #f0f0f0;
}
body.dark-mode .form-group label {
  color: #c0c0c0;
}
body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
  background: #1e1e1e;
  border-color: #333;
  color: #f0f0f0;
}
body.dark-mode .form-group select option {
  color: #f0f0f0;
  background: #1e1e1e;
}
body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus,
body.dark-mode .form-group select:focus {
  background: #222;
  border-color: var(--orange);
}
body.dark-mode .opening-hours {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
}
body.dark-mode .opening-hours h4 {
  color: #f0f0f0;
}
body.dark-mode .opening-hours .day {
  color: #f0f0f0;
}
body.dark-mode .opening-hours td {
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-mode .social-links a {
  background: #2a2a2a;
  color: #c0c0c0;
}
body.dark-mode .social-links a:hover {
  background: var(--orange);
  color: var(--white);
}
body.dark-mode .contact-success {
  background: rgba(76,175,80,0.16);
  border-color: rgba(129,199,132,0.45);
  color: #d7f2da;
}
body.dark-mode .contact-error {
  background: rgba(244,67,54,0.14);
  border-color: rgba(239,154,154,0.4);
  color: #ffd5d0;
}
body.dark-mode .map-container .placeholder {
  background: #2a2a2a;
  color: #888;
}
body.dark-mode .supplier-logo {
  background: #2a2a2a;
  border-color: rgba(255,255,255,0.06);
  color: #888;
}
body.dark-mode .supplier-logo:hover {
  background: #333;
  color: var(--orange);
}
body.dark-mode .equipment-item {
  background: #161616;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .equipment-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
body.dark-mode .equipment-item strong {
  color: #f0f0f0;
}
body.dark-mode .footer {
  background: #0e0e0e;
}
body.dark-mode .back-to-top {
  background: #2a2a2a;
}
body.dark-mode .faq-section {
  background: linear-gradient(180deg, #161616 0%, #1e1e1e 100%);
}
body.dark-mode .faq-item {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.08);
}
body.dark-mode .faq-question {
  background: #1e1e1e;
  color: #f0f0f0;
}
body.dark-mode .faq-question:hover,
body.dark-mode .faq-question.is-open {
  background: rgba(232,114,28,0.1);
}
body.dark-mode .blog-section {
  background: linear-gradient(180deg, #161616 0%, #1e1e1e 100%);
}
body.dark-mode .blog-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .blog-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
body.dark-mode .blog-card-body h3 a {
  color: #f0f0f0;
}
body.dark-mode .blog-card-body h3 a:hover {
  color: var(--orange);
}
/* Dark mode – Blog listing page */
body.dark-mode .blog-listing-page {
  background: #161616;
}
body.dark-mode .blog-featured-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .blog-featured-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
body.dark-mode .blog-featured-body h2 a {
  color: #f0f0f0;
}
body.dark-mode .blog-featured-body h2 a:hover {
  color: var(--orange);
}
/* Dark mode – Single post page */
body.dark-mode .single-post-page {
  background: #161616;
}
body.dark-mode .single-header-simple .post-title {
  color: #f0f0f0;
}
body.dark-mode .single-article .page-content {
  color: #d0d0d0;
}
body.dark-mode .single-article .page-content blockquote {
  background: #1e1e1e;
  color: #ccc;
}
body.dark-mode .single-tags {
  border-color: #333;
}
body.dark-mode .single-tag {
  background: #1e1e1e;
  color: #aaa;
}
body.dark-mode .single-tag:hover {
  background: rgba(232,114,28,0.15);
  color: var(--orange);
}
body.dark-mode .post-nav-enhanced {
  border-color: #333;
}
body.dark-mode .post-nav-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .post-nav-card:hover {
  background: rgba(232,114,28,0.08);
  border-color: rgba(232,114,28,0.2);
}
body.dark-mode .post-nav-title {
  color: #f0f0f0;
}
/* Dark mode – Blog page header */
body.dark-mode .blog-page-header-inner {
  background: #111;
}
/* Dark mode – Page header */
body.dark-mode .page-header-inner {
  background: #111;
}
body.dark-mode .page-article .page-content {
  color: #d0d0d0;
}
body.dark-mode .page-article .page-content blockquote {
  background: #1e1e1e;
  color: #ccc;
}
body.dark-mode .page-article .page-content pre {
  background: #111;
  border-color: rgba(255,255,255,0.08);
}
body.dark-mode .page-article .page-content code {
  background: #1e1e1e;
  color: var(--orange-light);
}
body.dark-mode .page-article .page-content table {
  border-color: #333;
}
body.dark-mode .page-article .page-content th {
  background: #1e1e1e;
  border-color: #333;
}
body.dark-mode .page-article .page-content td {
  border-color: #2a2a2a;
}
body.dark-mode .page-article .page-content hr {
  background: #333;
}
body.dark-mode .page-article .page-content h2,
body.dark-mode .page-article .page-content h3,
body.dark-mode .page-article .page-content h4 {
  color: #f0f0f0;
}
/* Dark mode – Author box */
body.dark-mode .author-box {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
  border-left-color: var(--orange);
}
/* Dark mode – Share buttons */
body.dark-mode .single-share-btn {
  border-color: #333;
  color: #aaa;
}
/* Dark mode – Related posts */
body.dark-mode .related-posts {
  background: #1a1a1a;
}
/* Dark mode – Content elements */
body.dark-mode .single-article .page-content pre {
  background: #111;
  border-color: rgba(255,255,255,0.08);
}
body.dark-mode .single-article .page-content code {
  background: #1e1e1e;
  color: var(--orange-light);
}
body.dark-mode .single-article .page-content table {
  border-color: #333;
}
body.dark-mode .single-article .page-content th {
  background: #1e1e1e;
  border-color: #333;
}
body.dark-mode .single-article .page-content td {
  border-color: #2a2a2a;
}
body.dark-mode .single-article .page-content hr {
  background: #333;
}
/* Dark mode – Blog grid divider */
body.dark-mode .blog-grid-divider::before,
body.dark-mode .blog-grid-divider::after {
  background: #333;
}
/* Dark mode – Comment enhancements */
body.dark-mode .comment-respond {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .comment-list .children {
  border-color: #333;
}
body.dark-mode .comment-meta .avatar {
  border-color: #333;
}
/* Dark mode – Breadcrumb light variant */
body.dark-mode .single-breadcrumb--light a {
  color: #aaa;
}
body.dark-mode .single-breadcrumb--light a:hover {
  color: var(--orange);
}
body.dark-mode .single-breadcrumb--light .single-breadcrumb-current {
  color: #888;
}
/* Section divider fills handled by --bg-primary and --bg-alt CSS variables */
body.dark-mode .page-main {
  background: #161616;
}
body.dark-mode .post-title a {
  color: #f0f0f0;
}
body.dark-mode .post-title a:hover {
  color: var(--orange);
}
body.dark-mode .comment-list .comment {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .comment-form input[type="text"],
body.dark-mode .comment-form input[type="email"],
body.dark-mode .comment-form input[type="url"],
body.dark-mode .comment-form textarea {
  background: #1e1e1e;
  border-color: #333;
  color: #f0f0f0;
}
body.dark-mode .comment-form input:focus,
body.dark-mode .comment-form textarea:focus {
  background: #222;
  border-color: var(--orange);
}
body.dark-mode .wpcf7 input.wpcf7-form-control,
body.dark-mode .wpcf7 textarea.wpcf7-form-control,
body.dark-mode .wpcf7 select.wpcf7-form-control {
  background: #1e1e1e;
  border-color: #333;
  color: #f0f0f0;
}
body.dark-mode .wpcf7 input.wpcf7-form-control:focus,
body.dark-mode .wpcf7 textarea.wpcf7-form-control:focus,
body.dark-mode .wpcf7 select.wpcf7-form-control:focus {
  background: #222;
  border-color: var(--orange);
}
body.dark-mode .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(22,163,74,0.12);
}
body.dark-mode .wpcf7-response-output.wpcf7-validation-errors,
body.dark-mode .wpcf7-response-output.wpcf7-spam-blocked,
body.dark-mode .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: rgba(220,38,38,0.1);
}
body.dark-mode .wpcf7 .wpcf7-not-valid {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}
body.dark-mode .pagination-wrap .page-numbers {
  background: #1e1e1e;
  border-color: #333;
}
body.dark-mode .post-navigation {
  border-color: #333;
}
body.dark-mode .no-results-icon {
  opacity: 0.6;
}
body.dark-mode .hamburger span {
  background: #f0f0f0;
}
body.dark-mode .theme-toggle {
  border-color: #333;
  color: #c0c0c0;
}
body.dark-mode .theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
/* Mobile nav dark mode */
@media (max-width: 768px) {
  body.dark-mode .nav {
    background: rgba(22,22,22,0.98);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
}
/* Partners dark mode */
body.dark-mode .partners-bar { background: #1a1a1a; }
body.dark-mode .partner-logo { filter: grayscale(100%) brightness(0.7) invert(1); opacity: 0.4; }
body.dark-mode .partner-logo:hover { filter: none; opacity: 0.9; }
body.dark-mode .partner-text {
  filter: none;
  opacity: 1;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 114, 28, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
body.dark-mode .partner-text span { color: #f3f3f3; }
body.dark-mode .partner-text:hover {
  opacity: 1;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(232, 114, 28, 0.35);
}
body.dark-mode .partner-text:hover span { color: var(--orange); }
/* Testimonials dark mode */
body.dark-mode .testimonial-card { background: #1e1e1e; border-top-color: transparent; }
body.dark-mode .testimonial-card:hover { border-top-color: var(--orange); }
body.dark-mode .testimonial-author { border-top-color: #333; }
/* Gallery dark mode */
body.dark-mode .gallery-item { border: 1px solid #2a2a2a; }
/* Cookie consent dark mode */
body.dark-mode .cookie-consent { background: #1e1e1e; border-top-color: #333; }
body.dark-mode .cookie-decline { border-color: #444; color: #999; }
body.dark-mode .cookie-decline:hover { border-color: #888; color: #ccc; }
/* Announcement dark mode */
body.dark-mode .announcement-bar { filter: brightness(0.9); }
/* Quick contact FAB dark mode */
body.dark-mode .qc-toggle { box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
body.dark-mode .qc-option { box-shadow: 0 3px 12px rgba(0,0,0,0.4); }
body.dark-mode .qc-phone { background: var(--orange-dark); }
/* Floating phone dark mode */
body.dark-mode .floating-phone { box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
body.dark-mode .back-to-top { background: #2a2a2a; border: 1px solid rgba(255,255,255,0.08); }

/* ============ NEW SECTIONS RESPONSIVE ============ */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 25px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item { border-radius: 10px; }
  .cookie-consent-inner { flex-direction: column; text-align: center; gap: 15px; }
  .cookie-consent-inner p { font-size: 0.82rem; }
  .cookie-consent-btns { width: 100%; justify-content: center; }
  .quick-contact-fab { bottom: 85px; right: 16px; }
  .qc-toggle { width: 46px; height: 46px; }
  .qc-option { width: 40px; height: 40px; }
  .announcement-bar { font-size: 0.78rem; padding: 8px 15px; }
  .partners-slide { gap: 28px; }
  .partner-logo, .partner-logo img { max-height: 35px; }
  .partner-text { height: 44px; max-height: 44px; padding: 0 18px; }
  .partner-text span { font-size: 1rem; letter-spacing: 0.4px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============ PREFERS REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-text {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-image-wrap {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .floating-phone {
    animation: none !important;
  }
  .floating-phone.visible,
  .back-to-top.visible {
    transform: none !important;
  }
}

/* ============ PRINT STYLES ============ */
@media print {
  .header,
  .scroll-progress,
  .floating-phone,
  .back-to-top,
  .mobile-nav-overlay,
  .hero-grid-overlay,
  .hero-particle,
  .hero-float-card,
  .section-divider,
  .cta-strip,
  .map-container,
  .contact-form-wrap,
  .social-links,
  .hamburger,
  .faq-section,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }
  .hero {
    margin-top: 0;
    min-height: auto;
    background: #fff !important;
    color: #000;
    padding: 20px 0;
  }
  .hero h1 { font-size: 24pt; color: #000; }
  .hero h1 span { color: #000; }
  .hero p { color: #333; opacity: 1; }
  .section, .section-alt, .contact-section {
    padding: 20px 0;
    background: #fff !important;
  }
  .footer {
    background: #fff !important;
    color: #000;
    padding: 20px 0;
  }
  .footer p, .footer-links a, .footer-bottom { opacity: 1; color: #333; }
  a { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  .about-section {
    background: #fff !important;
    color: #000;
  }
  .about-content p { opacity: 1; color: #333; }
  .about-content h2 span { color: #000; }
  img { max-width: 100% !important; }
  .service-row { grid-template-columns: 1fr !important; }
  .service-row-content { padding: 20px 0 !important; background: #fff !important; }
  .page-main { margin-top: 0; padding: 10px 0; }
}
