/*
Theme Name: 3K Statik Pro
Theme URI: https://www.3kstatik.com
Author: 3K Statik Mühendislik & Yüzey Teknolojileri
Author URI: https://www.3kstatik.com
Description: 3K Statik Toz Boya San. ve Tic. Ltd. Şti. kurumsal web teması. Yüksek mobil uyumluluk, endüstriyel standartlar, RAL kartelası ve fason imalat çözümleri.
Version: 3.0.0
Text Domain: 3kstatik
*/

/* ========================================================
 * 1. DESIGN TOKENS & RESET
 * ======================================================== */
:root {
  /* Brand Industrial Color Palette */
  --c-brand-dark: #0a0f1d;
  --c-brand-navy: #0f172a;
  --c-brand-slate: #1e293b;
  --c-brand-surface: #111a2e;
  
  --c-accent-orange: #ea580c;
  --c-accent-amber: #f59e0b;
  --c-accent-orange-dark: #c2410c;
  --c-accent-glow: rgba(234, 88, 12, 0.22);
  --c-accent-soft: rgba(245, 158, 11, 0.12);
  
  --c-text-primary: #0f172a;
  --c-text-secondary: #334155;
  --c-text-muted: #64748b;
  --c-text-light: #94a3b8;
  --c-text-white: #ffffff;
  
  --c-bg-page: #ffffff;
  --c-bg-subtle: #f8fafc;
  --c-bg-muted: #f1f5f9;
  
  --c-border-light: #e2e8f0;
  --c-border-subtle: #edf2f7;
  --c-border-dark: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  --shadow-brand: 0 10px 25px -5px rgba(234, 88, 12, 0.35);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.18s ease;
  --trans-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: var(--c-text-primary);
  background-color: var(--c-bg-page);
  scroll-padding-top: 86px;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text-secondary);
  background-color: var(--c-bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  color: var(--c-text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast), background-color var(--trans-fast), border-color var(--trans-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center { text-align: center; }
.font-mono { font-family: var(--font-mono); }
.text-white { color: #ffffff !important; }
.text-slate-300 { color: #cbd5e1 !important; }

/* ========================================================
 * 2. BUTTONS & BADGES
 * ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--trans-normal);
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-accent-orange) 0%, var(--c-accent-orange-dark) 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, var(--c-accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Section Header Tags */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-orange);
  background: var(--c-accent-soft);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.section-tag-light {
  color: var(--c-accent-amber);
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.section-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--c-brand-navy);
}

.section-subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: var(--c-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.section {
  padding: 85px 0;
}

/* ========================================================
 * 3. TOPBAR COMPONENT
 * ======================================================== */
.topbar {
  background: var(--c-brand-dark);
  color: #94a3b8;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 0;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent-amber);
  flex-shrink: 0;
}

.topbar-item a {
  color: #cbd5e1;
}

.topbar-item a:hover {
  color: #ffffff;
}

.topbar-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366 !important;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  transition: all var(--trans-fast);
}

.topbar-wa-link:hover {
  background: rgba(37, 211, 102, 0.28);
}

.topbar-wa-link svg {
  width: 13px;
  height: 13px;
  color: #25d366 !important;
}

/* ========================================================
 * 4. HEADER & DESKTOP NAVIGATION
 * ======================================================== */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--c-border-light);
  transition: box-shadow var(--trans-normal), background-color var(--trans-normal);
}

.header-nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-menu-desktop {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-brand-slate);
  padding: 8px 2px;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent-orange);
  transition: width var(--trans-normal);
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-phone-compact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-brand-navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border-light);
  transition: all var(--trans-fast);
}

.btn-phone-compact svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent-orange);
}

.btn-phone-compact:hover {
  background: var(--c-accent-soft);
  border-color: rgba(234, 88, 12, 0.3);
  color: var(--c-accent-orange);
}

.nav-btn-quote {
  font-size: 0.88rem;
  padding: 9px 18px;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--trans-fast);
}

.mobile-toggle:hover {
  background-color: var(--c-bg-subtle);
}

.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2.2px;
  background-color: var(--c-brand-navy);
  border-radius: 2px;
  transition: all var(--trans-normal);
}

/* ========================================================
 * 5. MOBILE DRAWER MENU & BACKDROP
 * ======================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 29, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-normal), visibility var(--trans-normal);
}

.drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 360px;
  background: #ffffff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--trans-normal);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border-light);
  background: var(--c-bg-subtle);
}

.drawer-logo img {
  height: 38px;
  width: auto;
}

.drawer-close {
  background: none;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.drawer-close:hover {
  background: #e2e8f0;
  color: var(--c-brand-navy);
}

.drawer-close svg {
  width: 22px;
  height: 22px;
}

.drawer-quick-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--c-border-light);
}

.drawer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.drawer-btn svg {
  width: 16px;
  height: 16px;
}

.drawer-btn-call {
  background: var(--c-brand-navy);
  color: #ffffff !important;
}

.drawer-btn-wa {
  background: #25d366;
  color: #ffffff !important;
}

.drawer-nav {
  padding: 12px 0;
  flex: 1;
}

.drawer-links li {
  border-bottom: 1px solid var(--c-border-subtle);
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: var(--c-brand-navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--trans-fast);
}

.drawer-link:hover, .drawer-link:active {
  background-color: var(--c-bg-subtle);
  color: var(--c-accent-orange);
}

.drawer-link svg {
  width: 16px;
  height: 16px;
  color: var(--c-text-muted);
}

.drawer-link-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
  padding: 2px 8px;
  border-radius: 4px;
}

.drawer-footer {
  padding: 18px 20px;
  background: var(--c-bg-subtle);
  border-top: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
}

.drawer-info-row svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.drawer-info-row strong {
  display: block;
  color: var(--c-brand-navy);
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.drawer-info-row p {
  color: var(--c-text-muted);
  line-height: 1.4;
}

/* ========================================================
 * 6. HERO SECTION
 * ======================================================== */
.hero-section {
  position: relative;
  background-color: var(--c-brand-dark);
  color: #ffffff;
  padding: 85px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: contrast(1.15) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 15, 29, 0.98) 0%,
    rgba(10, 15, 29, 0.92) 50%,
    rgba(10, 15, 29, 0.7) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

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

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--c-accent-amber);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--c-accent-amber);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-accent-amber);
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-lead strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
}

.hero-spec-item .spec-val {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-accent-amber);
  line-height: 1.1;
}

.hero-spec-item .spec-label {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-spec-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
}

/* Hero Right Workshop Card */
.hero-facility-card {
  background: var(--c-brand-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  transition: transform var(--trans-normal);
}

.hero-facility-card:hover {
  transform: translateY(-4px);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.hero-facility-card:hover .card-image-wrap img {
  transform: scale(1.04);
}

.card-status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.facility-card-footer {
  padding: 22px 24px;
}

.facility-spec-meta h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.facility-spec-meta p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 14px;
}

.facility-quick-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.facility-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
}

/* ========================================================
 * 7. STATS STRIP
 * ======================================================== */
.stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border-light);
  padding: 28px 0;
  box-shadow: var(--shadow-xs);
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(234, 88, 12, 0.15);
}

.stat-icon-circle svg {
  width: 22px;
  height: 22px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-brand-navy);
  line-height: 1.2;
}

.stat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin-top: 2px;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* ========================================================
 * 8. SERVICES SECTION
 * ======================================================== */
.section-services {
  background-color: var(--c-bg-subtle);
  border-bottom: 1px solid var(--c-border-light);
}

.section-title-wrap {
  margin-bottom: 50px;
}

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

.service-item-card {
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--trans-normal);
}

.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.service-image-box {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.service-item-card:hover .service-image-box img {
  transform: scale(1.05);
}

.service-category-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent-orange);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-brand-navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.94rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-text-primary);
}

.service-feature-list li svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-footer-action {
  padding-top: 18px;
  border-top: 1px solid var(--c-border-light);
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-accent-orange);
  transition: gap var(--trans-fast);
}

.service-link-btn:hover {
  color: var(--c-accent-orange-dark);
  gap: 10px;
}

.service-link-btn svg {
  width: 16px;
  height: 16px;
}

/* ========================================================
 * 9. TECHNICAL STANDARDS & QUALITY SECTION
 * ======================================================== */
.section-tech-specs {
  background-color: var(--c-brand-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-tech-specs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
}

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

.tech-spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-normal);
}

.tech-spec-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.spec-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.spec-card-icon svg {
  width: 24px;
  height: 24px;
}

.tech-spec-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.tech-spec-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.spec-tag-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-accent-amber);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  align-self: flex-start;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* ========================================================
 * 10. REAL WORKSHOP GALLERY
 * ======================================================== */
.section-gallery {
  background-color: #ffffff;
  border-bottom: 1px solid var(--c-border-light);
}

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border-light);
  color: var(--c-brand-slate);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.gallery-tab-btn:hover {
  background: var(--c-border-subtle);
  color: var(--c-brand-navy);
}

.gallery-tab-btn.active {
  background: var(--c-brand-navy);
  color: #ffffff;
  border-color: var(--c-brand-navy);
}

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

.gallery-card-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--c-brand-dark);
}

.gallery-card-item.span-col-2 {
  grid-column: span 2;
}

.gallery-img-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-card-item.span-col-2 .gallery-img-container {
  height: 320px;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0.9;
  transition: opacity var(--trans-normal);
}

.gallery-card-item:hover .gallery-img-container img {
  transform: scale(1.06);
}

.gallery-card-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--trans-normal);
}

.gallery-card-item:hover .gallery-zoom-icon {
  transform: translateY(0);
  opacity: 1;
}

.gallery-zoom-icon svg {
  width: 18px;
  height: 18px;
}

.gallery-item-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.gallery-item-sub {
  color: #94a3b8;
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ========================================================
 * 11. RAL COLOR EXPLORER
 * ======================================================== */
.section-ral {
  background-color: var(--c-bg-subtle);
  border-bottom: 1px solid var(--c-border-light);
}

.ral-explorer-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.ral-swatches-col {
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.ral-swatch-tabs {
  margin-bottom: 18px;
}

.swatch-tab-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-brand-slate);
}

.ral-swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ral-chip {
  background: #ffffff;
  border: 2px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.ral-chip .chip-color {
  width: 100%;
  height: 38px;
  border-radius: var(--radius-xs);
  background-color: var(--chip-bg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  transition: transform var(--trans-fast);
}

.ral-chip:hover .chip-color {
  transform: scale(1.04);
}

.ral-chip .chip-code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-brand-navy);
}

.ral-chip .chip-title {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.ral-chip:hover {
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.ral-chip.active {
  border-color: var(--c-accent-orange);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
  transform: translateY(-2px);
}

/* Right Display Panel */
.ral-preview-col {
  position: sticky;
  top: 96px;
}

.ral-preview-card {
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ral-canvas-wrap {
  padding: 24px 24px 0;
}

.ral-preview-plate {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.3), 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: background-color var(--trans-normal);
}

.plate-code-badge {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  z-index: 2;
  letter-spacing: 0.05em;
  transition: all var(--trans-fast);
}

.plate-metal-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.ral-details-box {
  padding: 24px;
}

.ral-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-border-light);
}

.ral-detail-header h3 {
  font-size: 1.25rem;
  color: var(--c-brand-navy);
}

.ral-badge-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.ral-meta-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.ral-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.ral-meta-row.full-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px dashed var(--c-border-light);
}

.meta-label {
  color: var(--c-text-muted);
  font-weight: 600;
}

.meta-val {
  font-weight: 700;
  color: var(--c-brand-navy);
}

.meta-desc {
  font-size: 0.84rem;
  color: var(--c-text-secondary);
  line-height: 1.5;
}

/* ========================================================
 * 12. SECTORS SECTION
 * ======================================================== */
.section-sectors {
  background-color: #ffffff;
  border-bottom: 1px solid var(--c-border-light);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--trans-normal);
}

.sector-card:hover {
  background: #ffffff;
  border-color: var(--c-accent-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sector-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sector-icon svg {
  width: 22px;
  height: 22px;
}

.sector-card h4 {
  font-size: 1.15rem;
  color: var(--c-brand-navy);
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ========================================================
 * 13. WORKFLOW STEPS
 * ======================================================== */
.section-workflow {
  background-color: var(--c-brand-dark);
  color: #ffffff;
  position: relative;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.workflow-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: all var(--trans-normal);
}

.workflow-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-3px);
}

.step-badge-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-accent-amber);
  margin-bottom: 12px;
  opacity: 0.9;
}

.workflow-step-card h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.workflow-step-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ========================================================
 * 14. FAQ ACCORDION
 * ======================================================== */
.section-faq {
  background-color: var(--c-bg-subtle);
  border-bottom: 1px solid var(--c-border-light);
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--trans-fast);
}

.faq-item.is-open {
  border-color: var(--c-accent-orange);
}

.faq-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-brand-navy);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform var(--trans-normal), background-color var(--trans-fast);
}

.faq-toggle-icon svg {
  width: 14px;
  height: 14px;
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-normal);
  padding: 0 22px;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
}

/* ========================================================
 * 15. CONTACT & FAST QUOTE SECTION
 * ======================================================== */
.section-contact {
  background-color: #ffffff;
  padding: 90px 0;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-col-title {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--c-brand-navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.contact-col-lead {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--trans-fast);
}

.contact-info-card:hover {
  border-color: #cbd5e1;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--c-accent-soft);
  color: var(--c-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
}

.info-card-details h4 {
  font-size: 0.98rem;
  color: var(--c-brand-navy);
  margin-bottom: 4px;
}

.info-card-details p {
  font-size: 0.88rem;
  color: var(--c-text-secondary);
  line-height: 1.5;
}

.card-action-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-accent-orange);
  margin-top: 6px;
}

.card-action-link:hover {
  text-decoration: underline;
}

.phone-links-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-link-main {
  font-size: 1.05rem;
  color: var(--c-brand-navy);
}

.phone-link-main:hover {
  color: var(--c-accent-orange);
}

.phone-link-sub {
  font-size: 0.86rem;
  color: var(--c-text-muted);
}

.phone-link-sub:hover {
  color: var(--c-brand-navy);
}

.link-bold {
  font-weight: 700;
  color: var(--c-accent-orange);
}

.hours-text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.map-embed-container {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-sm);
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Fast Quote Form Card */
.quote-form-card {
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-card-header h3 {
  font-size: 1.45rem;
  color: var(--c-brand-navy);
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-brand-slate);
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 17px;
  color: var(--c-text-muted);
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select,
.statik-form textarea {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: var(--c-bg-subtle);
  font-size: 0.92rem;
  color: var(--c-brand-navy);
  transition: all var(--trans-fast);
}

.statik-form textarea {
  padding: 12px 14px;
  min-height: 90px;
  resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.statik-form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--c-accent-orange);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}

.input-highlight {
  animation: fieldHighlight 1.5s ease;
}

@keyframes fieldHighlight {
  0% { border-color: var(--c-accent-orange); box-shadow: 0 0 0 4px var(--c-accent-soft); background: #fffbeb; }
  100% { border-color: #cbd5e1; box-shadow: none; background: var(--c-bg-subtle); }
}

.form-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--c-text-muted);
  margin-top: 14px;
  text-align: center;
}

.form-privacy-note svg {
  width: 13px;
  height: 13px;
  color: var(--c-text-muted);
}

/* ========================================================
 * 16. FULLSCREEN LIGHTBOX MODAL
 * ======================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-normal), visibility var(--trans-normal);
  padding: 20px;
}

.lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 29, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 940px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--trans-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-media {
  max-height: 80vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-media img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-top: 14px;
  text-align: center;
}

/* ========================================================
 * 17. CORPORATE FOOTER
 * ======================================================== */
.site-footer {
  background-color: var(--c-brand-dark);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand-logo img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-cert-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-pill {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 2px 8px;
  border-radius: 4px;
}

.footer-heading {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color var(--trans-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent-amber);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list strong {
  display: block;
  color: #ffffff;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.footer-contact-list a {
  color: #cbd5e1;
}

.footer-contact-list a:hover {
  color: var(--c-accent-amber);
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text strong {
  color: #ffffff;
}

.footer-city-tag {
  color: #64748b;
}

/* ========================================================
 * 18. FLOATING WHATSAPP & MOBILE ACTION BAR
 * ======================================================== */
/* Desktop Floating WhatsApp */
.desktop-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--trans-normal), box-shadow var(--trans-normal);
}

.desktop-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.desktop-wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--c-brand-navy);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--trans-fast);
  pointer-events: none;
}

.desktop-wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Fixed Bottom Bar (Visible only <= 768px) */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.mobile-action-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 500px;
  margin: 0 auto;
}

.m-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  transition: all var(--trans-fast);
  min-height: 52px;
}

.m-action-item:hover, .m-action-item:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.m-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}

.m-action-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.m-action-wa .m-action-icon svg {
  fill: #25d366;
  stroke: none;
}

.m-action-wa {
  color: #25d366 !important;
}

.m-action-quote .m-action-icon svg {
  stroke: var(--c-accent-amber);
}

.m-action-quote {
  color: var(--c-accent-amber) !important;
}

.m-action-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ========================================================
 * 19. RESPONSIVE BREAKPOINTS (MOBILE & TABLET EXCELLENCE)
 * ======================================================== */
@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.86rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .tech-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  /* Hide Desktop Nav, show mobile toggle */
  .nav-menu-desktop {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .btn-phone-compact .phone-text {
    display: none;
  }
  .btn-phone-compact {
    padding: 10px;
  }
  .nav-btn-quote {
    display: none;
  }

  /* Hero Section */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-specs-row {
    justify-content: center;
  }

  /* Services & Sectors */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* RAL Explorer */
  .ral-explorer-box {
    grid-template-columns: 1fr;
  }
  .ral-preview-col {
    position: static;
  }

  /* Contact */
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Show Mobile Bottom Bar, Hide Desktop Floating Button */
  .desktop-wa-float {
    display: none;
  }
  .mobile-action-bar {
    display: block;
  }
  body {
    padding-bottom: 68px; /* space for bottom bar */
  }

  /* Topbar simplification on mobile */
  .topbar-loc, .topbar-hours, .topbar-tel-alt {
    display: none;
  }
  .topbar-container {
    justify-content: center;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Gallery */
  .gallery-grid-modern {
    grid-template-columns: 1fr;
  }
  .gallery-card-item.span-col-2 {
    grid-column: span 1;
  }
  .gallery-card-item.span-col-2 .gallery-img-container,
  .gallery-img-container {
    height: 240px;
  }

  /* Workflow */
  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Quote Form */
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .quote-form-card {
    padding: 24px 18px;
  }
}

@media (max-width: 540px) {
  .hero-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-spec-divider {
    display: none;
  }
  .ral-swatches-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .tech-specs-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
