/*
Theme Name: Computerhouse
Theme URI: https://computerhouse.lu
Author: Computerhouse S.à r.l.
Author URI: https://computerhouse.lu
Description: Custom, modern IT-company theme for Computerhouse S.à r.l. – bold & technical, with glow accents, gradient CTAs and a responsive layout.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: computerhouse
*/

/* -------------------------------------------------
   0. DESIGN TOKENS
------------------------------------------------- */
:root{
  --bg:            #070b12;
  --bg-alt:        #0c1220;
  --bg-elevated:   #10182a;
  --bg-elevated-2: #141d33;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --text:          #eef1f8;
  --text-muted:    #9aa5bd;
  --text-faint:    #626e88;

  --accent:        #00e5ff;
  --accent-2:      #7b5bff;
  --accent-3:      #ff2ea6;
  --accent-gradient: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  --accent-gradient-soft: linear-gradient(120deg, rgba(0,229,255,0.15) 0%, rgba(123,91,255,0.15) 55%, rgba(255,46,166,0.15) 100%);

  --success: #2be08e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-glow: 0 0 0 1px rgba(0,229,255,0.15), 0 0 40px rgba(0,229,255,0.12);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.35);

  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --container: 1240px;
}

/* -------------------------------------------------
   1. RESET & BASE
------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight:600; line-height:1.15; margin:0 0 .5em; letter-spacing:-0.01em; }
p{ margin:0 0 1em; color: var(--text-muted); }
button{ font-family: inherit; }

.ch-container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 20px; height: 1px;
  background: var(--accent-gradient);
}

/* background grid / glow texture used behind sections */
.bg-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events:none;
}
.glow-orb{
  position:absolute; border-radius:50%;
  filter: blur(90px);
  opacity:.35;
  pointer-events:none;
}

/* -------------------------------------------------
   2. BUTTONS
------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight:600; font-size:15px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent-gradient);
  color:#04070c;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,0.06); }
.btn-sm{ padding:10px 18px; font-size:14px; }

/* -------------------------------------------------
   3. HEADER / NAV
------------------------------------------------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(7,11,18,0.7);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, border-color .3s ease;
}
/* Blur lives on a pseudo-element, not on .site-header itself — backdrop-filter on
   the header would otherwise turn it into a containing block for its position:fixed
   mobile-nav descendant, trapping the menu inside the header's own (tiny) height. */
.site-header::before{
  content:"";
  position:absolute; inset:0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events:none;
}
.site-header.is-scrolled{ background: rgba(7,11,18,0.92); border-color: var(--border-strong); }
.header-inner{
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 24px;
}
.site-logo{ display:flex; align-items:center; gap:10px; font-family: var(--font-head); font-size:20px; font-weight:700; color:var(--text); }
.site-logo .mark{
  width:34px; height:34px; border-radius:9px;
  background: var(--accent-gradient);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-weight:700; color:#04070c; font-size:15px;
  box-shadow: 0 0 24px rgba(0,229,255,0.35);
}
.site-logo span.dim{ color: var(--text-muted); font-weight:500; }
.site-logo-icon{ max-height:68px; width:auto; display:block; }

.main-nav ul{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding:10px 16px; border-radius:999px; font-size:14.5px; font-weight:500;
  color: var(--text-muted);
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover, .main-nav .current-menu-item a{ color: var(--text); background: rgba(255,255,255,0.05); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .phone{ font-family: var(--font-mono); font-size:14px; color: var(--text-muted); display:flex; align-items:center; gap:8px; }
.header-actions .phone strong{ color: var(--text); }

/* Language switcher (Polylang) */
.lang-switch{ position:relative; flex:none; }
.lang-switch-toggle{
  display:flex; align-items:center; gap:7px;
  height:36px; padding:0 10px; border-radius:10px; border:1px solid var(--border-strong);
  background: rgba(255,255,255,0.03); color: var(--text-muted); cursor:pointer;
  font-family: var(--font-mono); font-size:12.5px; letter-spacing:.03em;
  transition: all .2s ease;
}
.lang-switch-toggle:hover, .lang-switch.is-open .lang-switch-toggle{ color: var(--text); border-color: var(--accent); }
.lang-switch-toggle img{ display:block; width:18px; height:13px; border-radius:2px; object-fit:cover; }
.lang-switch-toggle svg{ width:14px; height:14px; transition: transform .2s ease; }
.lang-switch.is-open .lang-switch-toggle svg{ transform: rotate(180deg); }
.lang-switch-menu{
  position:absolute; top: calc(100% + 8px); right:0; z-index:150;
  min-width:130px; padding:6px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border:1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  opacity:0; transform: translateY(-6px) scale(.98); pointer-events:none;
  transition: all .18s ease;
}
.lang-switch.is-open .lang-switch-menu{ opacity:1; transform:none; pointer-events:auto; }
.lang-switch-menu a{
  display:flex; align-items:center; gap:9px; padding:9px 10px; border-radius:8px;
  color: var(--text-muted); font-size:13.5px; transition: all .15s ease;
}
.lang-switch-menu a:hover{ color: var(--text); background: rgba(255,255,255,0.05); }
.lang-switch-menu a img{ display:block; width:18px; height:13px; border-radius:2px; object-fit:cover; }

.nav-toggle{
  display:none; width:42px; height:42px; border-radius:10px;
  border:1px solid var(--border-strong); background: rgba(255,255,255,0.03);
  align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background: var(--text); position:relative; transition: all .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

@media (max-width: 900px){
  .main-nav{ position:fixed; inset: 68px 0 0 0; background: var(--bg-alt); padding: 24px; transform: translateY(-12px); opacity:0; pointer-events:none; transition: all .25s ease; border-top:1px solid var(--border); z-index:99; }
  .main-nav.is-open{ transform:none; opacity:1; pointer-events:auto; }
  .main-nav ul{ flex-direction:column; align-items:stretch; gap:4px; }
  .main-nav a{ display:block; padding:14px 16px; }
  .header-actions .phone{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 560px){
  .header-inner{ padding: 14px 16px; }
  .header-actions{ gap:10px; }
  .header-actions .btn{ display:none; }
  .lang-switch-toggle{ padding:0 8px; }
  .lang-switch-toggle span{ display:none; }
  .site-logo{ font-size:17px; gap:8px; }
  .site-logo .mark{ width:30px; height:30px; font-size:13px; }
  .site-logo-icon{ max-height:52px; }
}

/* -------------------------------------------------
   4. HERO
------------------------------------------------- */
.hero{ position:relative; padding: 110px 0 90px; overflow:hidden; }
.hero .glow-orb.one{ width:520px; height:520px; background:var(--accent); top:-220px; left:-160px; }
.hero .glow-orb.two{ width:420px; height:420px; background:var(--accent-2); top:-100px; right:-140px; }
.hero-inner{ position:relative; z-index:2; max-width: 780px; }
.hero h1{ font-size: clamp(36px, 5.4vw, 62px); }
.hero h1 .grad{ background: var(--accent-gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero .lead{ font-size:18px; max-width:560px; margin-bottom: 34px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 56px; }
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; border-top:1px solid var(--border); padding-top: 28px; }
.hero-stats .stat b{ display:block; font-family: var(--font-head); font-size: 30px; background: var(--accent-gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-stats .stat span{ font-size:13px; color: var(--text-muted); }

/* -------------------------------------------------
   5. SECTIONS / GENERIC
------------------------------------------------- */
.section{ position:relative; padding: 90px 0; }
.section-alt{ background: var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 40px); }
.section-head p{ font-size:16.5px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* Cards grid (services) */
.grid{ display:grid; gap: 22px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{
  position:relative;
  background: var(--bg-elevated);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover{ transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.card .icon{
  width:48px; height:48px; border-radius: 12px;
  background: var(--accent-gradient-soft);
  border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  color: var(--accent);
}
.card .icon svg{ width:22px; height:22px; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ font-size:14.5px; margin-bottom:0; }
.card .num{ font-family: var(--font-mono); font-size:12px; color: var(--text-faint); position:absolute; top:24px; right:26px; }

/* Why-us split */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns:1fr; gap:36px; } }
.split-photo{
  display:block; width:100%; aspect-ratio: 4 / 3; object-fit:cover;
  border-radius: var(--radius-lg); border:1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.check-list li{ display:flex; gap:14px; padding: 14px 0; border-bottom:1px solid var(--border); }
.check-list li:last-child{ border-bottom:none; }
.check-list .tick{
  flex:none; width:26px; height:26px; border-radius:8px;
  background: rgba(43,224,142,0.12); color: var(--success);
  display:flex; align-items:center; justify-content:center; font-size:14px; margin-top:2px;
  border:1px solid rgba(43,224,142,0.35);
}
.check-list h4{ font-size:16px; margin-bottom:4px; }
.check-list p{ font-size:14px; margin-bottom:0; }

.panel{
  background: var(--bg-elevated);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:""; position:absolute; inset:0;
  background: var(--accent-gradient-soft);
  opacity:.5; mix-blend-mode: screen;
}
.panel-content{ position:relative; z-index:2; }

/* Partners strip */
.partners{ display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.partners .p-logo{
  display:flex; align-items:center; justify-content:center;
  height:110px; padding:18px 22px;
  background:#fff; border-radius: var(--radius-md);
  border:1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.partners .p-logo:hover{ transform:translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.partners .p-logo img{ max-width:100%; max-height:100%; object-fit:contain; }
@media (max-width: 480px){
  .partners .p-logo{ height:96px; }
}

/* Partners strip — text-only variant (Products / About pages) */
.partners-text{ display:flex; flex-wrap:wrap; gap: 14px; align-items:center; justify-content:space-between; }
.partners-text .pt-item{
  flex:1 1 150px; text-align:center; padding: 18px 14px;
  border:1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-mono); font-size:13px; color: var(--text-muted);
  background: var(--bg-elevated);
  transition: color .2s ease, border-color .2s ease;
}
.partners-text .pt-item:hover{ color: var(--accent); border-color: var(--border-strong); }

/* Shop gallery */
.gallery-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.gallery-item{
  position:relative; overflow:hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card);
}
.gallery-item:first-child{ grid-column: span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .6s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item::after{
  content:""; position:absolute; inset:0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events:none;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item:first-child{ grid-column: span 1; }
}

/* CTA band */
.cta-band{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  padding: 64px 48px; text-align:center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
}
.cta-band .bg-grid{ opacity:.6; }
.cta-band h2{ font-size: clamp(26px,3.4vw,38px); position:relative; z-index:2; }
.cta-band p{ position:relative; z-index:2; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-band .hero-cta{ justify-content:center; position:relative; z-index:2; margin-bottom:0; }

/* -------------------------------------------------
   6. PAGE HEADER (inner pages)
------------------------------------------------- */
.page-hero{ position:relative; padding: 74px 0 60px; overflow:hidden; border-bottom:1px solid var(--border); }
.page-hero h1{ font-size: clamp(30px,4.4vw,48px); margin-bottom:14px; }
.page-hero p{ max-width:600px; font-size:16.5px; }
.breadcrumb{ font-family: var(--font-mono); font-size:12.5px; color: var(--text-faint); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--accent); }

/* Product categories */
.prod-card{ text-align:left; }
.prod-card .tag{
  display:inline-block; font-family: var(--font-mono); font-size:11px; letter-spacing:.08em;
  color: var(--accent); background: rgba(0,229,255,0.08); border:1px solid rgba(0,229,255,0.25);
  padding: 4px 10px; border-radius: 999px; margin-bottom:14px; text-transform:uppercase;
}
.catalog-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; font-family: var(--font-mono); font-size:12.5px; font-weight:500;
  color: var(--accent); border-bottom:1px solid rgba(0,229,255,0.35); padding-bottom:2px;
}
.catalog-link:hover{ border-color: var(--accent); }
.catalog-link svg{ width:13px; height:13px; flex:none; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field label{ display:block; font-size:13px; color: var(--text-muted); margin-bottom:8px; font-family: var(--font-mono); }
.field input, .field select, .field textarea{
  width:100%; background: var(--bg); border:1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 13px 14px; color: var(--text); font-family: var(--font-body); font-size:14.5px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}
.field textarea{ resize: vertical; min-height:120px; }

.form-alert{
  padding:14px 18px; border-radius: var(--radius-sm); font-size:14px; margin-bottom:20px;
  border:1px solid transparent;
}
.form-alert.success{ background: rgba(43,224,142,0.10); border-color: rgba(43,224,142,0.35); color: var(--success); }
.form-alert.error{ background: rgba(255,77,109,0.10); border-color: rgba(255,77,109,0.35); color: #ff8095; }

.info-list{ display:flex; flex-direction:column; gap:22px; }
.info-list .item{ display:flex; gap:16px; }
.info-list .icon{
  flex:none; width:44px; height:44px; border-radius:12px;
  background: var(--accent-gradient-soft); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color: var(--accent);
}
.info-list .icon svg{ width:20px; height:20px; }
.info-list h4{ font-size:15px; margin-bottom:4px; }
.info-list p{ font-size:14.5px; margin-bottom:0; }

.map-embed{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); filter: grayscale(1) invert(0.92) contrast(0.9); }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }

/* -------------------------------------------------
   7. FOOTER
------------------------------------------------- */
.site-footer{ background: var(--bg-alt); border-top:1px solid var(--border); padding: 64px 0 28px; margin-top: 40px; }
.site-footer .site-logo-icon{ max-height:44px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h5{ font-family: var(--font-mono); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--text-faint); margin-bottom:18px; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color: var(--text-muted); font-size:14.5px; transition: color .2s ease; }
.footer-links a:hover{ color: var(--accent); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top: 24px; border-top:1px solid var(--border); font-size:13px; color: var(--text-faint); }
.footer-bottom a{ color: var(--text-faint); }
.footer-bottom a:hover{ color: var(--accent); }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px; border-radius:10px; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color: var(--text-muted);
  transition: all .2s ease;
}
.social-row a:hover{ color: var(--accent); border-color: var(--accent); }
.social-row a.fb, .header-social.fb{ color:#1877F2; }
.social-row a.fb:hover, .header-social.fb:hover{ color:#1877F2; border-color:#1877F2; background: rgba(24,119,242,0.10); }

.header-social{
  flex:none; width:36px; height:36px; border-radius:10px; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color: var(--text-muted);
  transition: all .2s ease;
}
.header-social:hover{ color: var(--accent); border-color: var(--accent); }
@media (max-width: 560px){
  .header-social{ width:34px; height:34px; }
}

/* -------------------------------------------------
   8. SCROLL REVEAL
------------------------------------------------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* -------------------------------------------------
   9. GENERIC CONTENT PAGES (page.php / single.php)
------------------------------------------------- */
.content-wrap{ max-width: 760px; }
.entry-content h2{ font-size: 28px; margin-top: 1.6em; }
.entry-content h3{ font-size: 22px; margin-top: 1.4em; }
.entry-content p{ font-size: 16px; color: var(--text-muted); }
.entry-content a{ color: var(--accent); text-decoration: underline; text-decoration-color: rgba(0,229,255,0.35); text-underline-offset: 3px; }
.entry-content a:hover{ text-decoration-color: var(--accent); }
.entry-content ul, .entry-content ol{ margin: 0 0 1.2em; padding-left: 1.4em; color: var(--text-muted); }
.entry-content ul{ list-style: disc; }
.entry-content ol{ list-style: decimal; }
.entry-content li{ margin-bottom: .5em; }
.entry-content blockquote{
  margin: 1.6em 0; padding: 18px 22px; border-left: 3px solid var(--accent);
  background: var(--bg-elevated); border-radius: 0 var(--radius-md) var(--radius-md) 0; color: var(--text);
}
.entry-content img{ border-radius: var(--radius-md); margin: 1.6em 0; }
.entry-content table{ width:100%; border-collapse: collapse; margin: 1.6em 0; font-size: 14.5px; }
.entry-content th, .entry-content td{ padding: 10px 14px; border-bottom: 1px solid var(--border); text-align:left; }
.entry-content hr{ border: none; border-top: 1px solid var(--border); margin: 2.4em 0; }
.entry-meta{ font-family: var(--font-mono); font-size: 12.5px; color: var(--text-faint); margin-bottom: 8px; }

/* -------------------------------------------------
   10. UTILITIES
------------------------------------------------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.mb-0{ margin-bottom:0; }

/* -------------------------------------------------
   11. HELPDESK / REMOTE SUPPORT
------------------------------------------------- */

/* Hero support card (sits beside the hero headline on desktop, stacks below it on smaller screens) */
.hero .ch-container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns: 1fr 360px; gap:48px; align-items:center; }
.hero-inner{ max-width:none; }
.hero-support-card{
  position:relative; overflow:hidden;
  background-image: linear-gradient(var(--bg-elevated), var(--bg-elevated)), var(--accent-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 0 50px rgba(0,229,255,0.12), var(--shadow-card);
}
.hero-support-card .top-row{ display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.hero-support-card .icon{
  position:relative; flex:none;
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--accent-gradient);
  color:#04070c;
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
}
.hero-support-card .icon svg{ width:24px; height:24px; }
.hero-support-card .icon::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--accent);
  animation: hsc-radar 2.6s ease-out infinite;
}
@keyframes hsc-radar{
  0%{ transform:scale(1); opacity:.65; }
  100%{ transform:scale(1.8); opacity:0; }
}
.hero-support-card h3{ font-size:18px; margin:0; }
.hero-support-card p{ font-size:13.5px; color: var(--text-muted); margin-bottom:18px; }
.hero-support-card .btn{ width:100%; text-align:center; padding:12px 18px; font-size:14px; }
.hero-support-card .fine{ display:block; font-size:11px; color: var(--text-faint); margin-top:10px; text-align:center; }
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-support-card{ max-width:420px; }
}

/* Opening hours strip (front page, right below the hero) */
.hours-strip{
  position:relative; display:flex; align-items:center; gap:26px; flex-wrap:wrap;
  background-image: linear-gradient(var(--bg-elevated), var(--bg-elevated)), var(--accent-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  box-shadow: 0 0 50px rgba(0,229,255,0.10), var(--shadow-card);
}
.hours-strip .hours-icon{
  position:relative; flex:none;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--accent-gradient);
  color:#04070c;
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
}
.hours-strip .hours-icon svg{ width:26px; height:26px; }
.hours-strip .hours-icon::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--accent);
  animation: hsc-radar 2.6s ease-out infinite;
}
.hours-strip .hours-text{ flex:none; }
.hours-strip .hours-text .eyebrow{ margin-bottom:4px; }
.hours-strip .hours-text h3{ font-size:19px; margin:0; white-space:nowrap; }
.hours-strip .hours-rows{ display:flex; gap:34px; flex-wrap:wrap; margin-left:auto; }
.hours-strip .hours-row{ display:flex; flex-direction:column; }
.hours-strip .hours-row span{ font-size:11.5px; text-transform:uppercase; letter-spacing:.07em; color: var(--text-faint); font-family: var(--font-mono); margin-bottom:4px; }
.hours-strip .hours-row strong{ font-size:15.5px; font-family: var(--font-head); font-weight:600; color: var(--text); }
.hours-strip .hours-note{ flex-basis:100%; font-size:12px; color: var(--text-faint); }
@media (max-width: 900px){
  .hours-strip{ padding:24px; }
  .hours-strip .hours-rows{ margin-left:0; gap:24px; }
}
@media (max-width: 560px){
  .hours-strip{ flex-direction:column; align-items:flex-start; text-align:left; }
  .hours-strip .btn{ width:100%; text-align:center; }
}

/* Floating support button + popover panel (site-wide, via footer.php) */
.helpdesk-widget{ position:fixed; right:24px; bottom:24px; z-index:200; }
.helpdesk-toggle{
  display:flex; align-items:center; gap:10px;
  padding:14px 22px 14px 16px; border-radius:999px; border:none; cursor:pointer;
  background: var(--accent-gradient); color:#04070c;
  font-family: var(--font-head); font-weight:700; font-size:14.5px;
  box-shadow: 0 8px 28px rgba(0,229,255,0.28), 0 0 0 0 rgba(0,229,255,0.5);
  animation: helpdesk-pulse 2.6s ease-in-out infinite;
}
.helpdesk-toggle svg{ width:20px; height:20px; flex:none; }
@keyframes helpdesk-pulse{
  0%, 100%{ box-shadow: 0 8px 28px rgba(0,229,255,0.28), 0 0 0 0 rgba(0,229,255,0.35); }
  50%{ box-shadow: 0 8px 28px rgba(0,229,255,0.28), 0 0 0 10px rgba(0,229,255,0); }
}
.helpdesk-panel{
  position:absolute; right:0; bottom: calc(100% + 14px);
  width: min(320px, calc(100vw - 48px));
  background: var(--bg-elevated);
  border:1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding:22px;
  opacity:0; transform: translateY(10px) scale(.97); pointer-events:none;
  transition: all .2s ease;
}
.helpdesk-widget.is-open .helpdesk-panel{ opacity:1; transform:none; pointer-events:auto; }
.helpdesk-widget.is-open .helpdesk-toggle{ animation:none; }
.helpdesk-panel-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.helpdesk-panel-head strong{ font-family: var(--font-head); font-size:16px; }
.helpdesk-close{
  width:26px; height:26px; border-radius:8px; border:1px solid var(--border-strong);
  background:transparent; color: var(--text-muted); cursor:pointer; font-size:16px; line-height:1;
}
.helpdesk-close:hover{ color: var(--text); border-color: var(--accent); }
.helpdesk-panel p{ font-size:14px; color: var(--text-muted); margin-bottom:18px; }
.helpdesk-panel .btn{ width:100%; text-align:center; margin-bottom:12px; }
.helpdesk-panel .helpdesk-note{ display:block; font-size:12px; color: var(--text-faint); }
@media (max-width:560px){
  .helpdesk-widget{ right:16px; bottom:16px; }
  .helpdesk-toggle .helpdesk-label{ display:none; }
  .helpdesk-toggle{ padding:14px; }
}
