@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

/* ============================================================
   El Nagar — hublink_theme.css
   Dark glassmorphic premium theme, architecturally mirroring
   parent hublinkae.com but rebranded with coral + mocha + gold.
   ============================================================ */

:root {
  --hl-primary:        #D8A06B;   /* pale coral */
  --hl-primary-dark:   #B87333;   /* deep coral (primary CTA) */
  --hl-primary-light:  #E0B084;
  --hl-secondary:      #1a1a1a;
  --hl-mocha:          #3d2e2e;   /* warm charcoal */
  --hl-mocha-light:    #5a4242;
  --hl-mocha-deep:     #261c1c;
  --hl-gold:           #B87333;   /* premium accent — scarce */
  --hl-gold-light:     #E0B084;

  --hl-bg-deep:        #0d0807;
  --hl-bg-panel:       rgba(255,255,255,0.08);
  --hl-bg-panel-strong:rgba(255,255,255,0.12);
  --hl-border-glass:   rgba(255,255,255,0.18);

  --hl-text:           #ffffff;
  --hl-text-muted:     rgba(255,255,255,0.78);
  --hl-text-faint:     rgba(255,255,255,0.55);

  --hl-shadow-soft:    0 18px 40px rgba(0,0,0,0.35);
  --hl-shadow-strong:  0 25px 60px rgba(0,0,0,0.55);

  --hl-radius:         8px;
  --hl-radius-sm:      10px;
  --hl-radius-md:      14px;
  --hl-radius-lg:      20px;

  --hl-transition:     250ms cubic-bezier(0.4,0,0.2,1);

  --hl-container:      1280px;
  --hl-section-py:     110px;

  --hl-font:           'Inter','Cairo',system-ui,-apple-system,sans-serif;
  --hl-font-ar:        'Cairo','Inter',system-ui,sans-serif;
  --hl-font-mono:      'JetBrains Mono','Consolas',monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--hl-font);
  color: var(--hl-text);
  background: var(--hl-bg-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

[lang="ar"] body,
[dir="rtl"] body,
body[lang="ar"] { font-family: var(--hl-font-ar); }

/* Fixed dark backdrop image + gradient overlay (parent pattern) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3;
  background-color: var(--hl-bg-deep);
  background-image: url('/assets/hublink_theme/images/bg_pattern.png');
  background-repeat: repeat;
  background-size: 640px auto;
  background-position: center top;
  background-attachment: fixed;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(13,8,7,0.82) 0%, rgba(20,12,10,0.60) 45%, rgba(13,8,7,0.86) 100%),
    radial-gradient(ellipse at 80% 0%, rgba(232,200,104,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 100%, rgba(184,115,51,0.06) 0%, transparent 55%);
}

/* Floating ambient bg shapes */
.hl-bg-shape {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: -1;
  background: radial-gradient(circle at 30% 30%, rgba(232,200,104,0.05), transparent 70%);
  filter: blur(40px);
  animation: hl-float 22s ease-in-out infinite;
}
.hl-bg-shape.shape-1 { width: 520px; height: 520px; top: -120px; left: -160px; }
.hl-bg-shape.shape-2 { width: 380px; height: 380px; bottom: 10%; right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(184,115,51,0.06), transparent 70%);
  animation-duration: 18s; animation-delay: -6s; }
.hl-bg-shape.shape-3 { width: 280px; height: 280px; top: 40%; left: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184,115,51,0.05), transparent 70%);
  animation-duration: 26s; animation-delay: -10s; }

@keyframes hl-float {
  0%,100% { transform: translate(0,0) rotate(0); }
  25%     { transform: translate(24px,-20px) rotate(5deg); }
  50%     { transform: translate(-14px,24px) rotate(-5deg); }
  75%     { transform: translate(-22px,-12px) rotate(4deg); }
}

/* Scroll progress bar */
.hl-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--hl-primary-dark), var(--hl-gold), var(--hl-primary-dark));
  transition: width 100ms linear;
  z-index: 110;
  box-shadow: 0 0 12px rgba(184,115,51,0.6);
}

/* Hide Frappe defaults on public pages */
body[data-path] > nav.navbar,
body[data-path] .website-top-bar,
body[data-path] > header.web-header,
body[data-path] > footer.web-footer,
body[data-path] .footer.web-footer { display: none !important; }
body[data-path] .page_content > .container,
body[data-path] .page_content { padding: 0 !important; max-width: 100% !important; }

/* ---------- Container ---------- */
.hl-container {
  max-width: var(--hl-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Marquee (top utility bar) ---------- */
.hl-marquee {
  background: linear-gradient(90deg, rgba(0,0,0,0.92), rgba(13,8,7,0.88) 60%, rgba(0,0,0,0.92));
  border-bottom: 1px solid rgba(184,115,51,0.28);
  color: var(--hl-text-muted);
  font-size: 13px;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.hl-marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  padding: 10px 0;
  animation: hl-marq 38s linear infinite;
  width: max-content;
}
.hl-marquee-track span {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.02em;
}
@keyframes hl-marq {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[dir="rtl"] .hl-marquee-track { animation-direction: reverse; }

/* ---------- Navbar (dark glass, sticky) ---------- */
.hl-navbar {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, rgba(13,8,7,0.55) 0%, rgba(13,8,7,0.38) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--hl-transition), padding var(--hl-transition), box-shadow var(--hl-transition);
}
.hl-navbar.is-scrolled {
  background: linear-gradient(180deg, rgba(13,8,7,0.88) 0%, rgba(13,8,7,0.78) 100%);
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
}
.hl-nav-inner {
  max-width: var(--hl-container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.hl-nav-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.hl-nav-brand img { height: 44px; width: auto; display: block; transition: transform var(--hl-transition); }
.hl-nav-brand:hover img { transform: scale(1.04); }

.hl-nav-menu {
  display: flex; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.hl-nav-menu a {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border-radius: var(--hl-radius-sm);
  color: rgba(255,255,255,0.82);
  font-weight: 500; font-size: 14.5px;
  text-decoration: none;
  transition: color var(--hl-transition), background var(--hl-transition);
}
.hl-nav-menu a:hover,
.hl-nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.hl-nav-menu a.active {
  box-shadow: inset 0 -2px 0 var(--hl-gold);
}

.hl-nav-actions {
  margin-inline-start: auto;
  display: flex; align-items: center; gap: 8px;
}
.hl-nav-lang,
.hl-nav-portal {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--hl-bg-panel);
  border: 1px solid var(--hl-border-glass);
  color: var(--hl-text);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: var(--hl-transition);
  backdrop-filter: blur(10px);
}
.hl-nav-lang:hover,
.hl-nav-portal:hover {
  background: var(--hl-bg-panel-strong);
  border-color: rgba(184,115,51,0.4);
  color: var(--hl-gold-light);
}
.hl-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hl-primary-dark), #8B4513);
  color: #fff;
  font-weight: 700; font-size: 13.5px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(184,115,51,0.4);
  transition: var(--hl-transition);
}
.hl-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(184,115,51,0.55); color: #fff; }

.hl-nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--hl-border-glass);
  color: #fff; padding: 8px 10px; border-radius: var(--hl-radius-sm); cursor: pointer;
}

/* ---------- Buttons ---------- */
.hl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--hl-transition);
  white-space: nowrap;
}
.hl-btn-primary {
  background: linear-gradient(135deg, var(--hl-primary-dark), #8B4513);
  color: #fff;
  box-shadow: 0 10px 26px rgba(184,115,51,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(184,115,51,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff;
}
.hl-btn-secondary {
  background: var(--hl-bg-panel);
  color: #fff;
  border-color: var(--hl-border-glass);
  backdrop-filter: blur(12px);
}
.hl-btn-secondary:hover {
  background: var(--hl-bg-panel-strong);
  border-color: var(--hl-gold);
  color: var(--hl-gold-light);
  transform: translateY(-2px);
}
.hl-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.hl-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--hl-gold);
  color: var(--hl-gold-light);
}

/* ---------- Hero ---------- */
.hl-hero {
  position: relative;
  min-height: calc(100vh - 100px);
  padding: 100px 24px 80px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--hl-container);
  margin: 0 auto;
}
.hl-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(184,115,51,0.16);
  border: 1px solid rgba(184,115,51,0.4);
  color: var(--hl-primary);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hl-hero-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hl-primary-dark);
  box-shadow: 0 0 12px rgba(184,115,51,0.8);
  animation: hl-pulse 2.2s ease-in-out infinite;
}
@keyframes hl-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.55; transform: scale(1.5); }
}
.hl-hero-title {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hl-hero-title .accent {
  background: linear-gradient(90deg, var(--hl-primary), var(--hl-gold-light) 50%, var(--hl-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
}
.hl-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.86);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hl-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hl-hero-visual {
  position: relative;
  border-radius: var(--hl-radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.hl-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--hl-radius-lg);
  border: 1px solid var(--hl-border-glass);
  box-shadow: var(--hl-shadow-strong);
}
.hl-hero-card {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  padding: 16px 20px;
  border-radius: var(--hl-radius-md);
  background: linear-gradient(135deg, rgba(13,8,7,0.85), rgba(13,8,7,0.7));
  border: 1px solid rgba(184,115,51,0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  animation: hl-float-card 6s ease-in-out infinite;
}
@keyframes hl-float-card {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ---------- KPI strip ---------- */
.hl-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.hl-kpi {
  position: relative;
  padding: 26px 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid var(--hl-border-glass);
  border-top: 3px solid var(--hl-gold);
  border-radius: var(--hl-radius-md);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 28px rgba(0,0,0,0.3);
  transition: var(--hl-transition);
}
.hl-kpi:hover { transform: translateY(-4px); border-color: rgba(184,115,51,0.5); }
.hl-kpi .num {
  font-family: var(--hl-font-mono);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, var(--hl-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hl-kpi .label {
  color: var(--hl-text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Section base ---------- */
.hl-section {
  position: relative;
  padding: var(--hl-section-py) 24px;
}
.hl-section > .hl-section-head,
.hl-section > .hl-services-grid,
.hl-section > .hl-brands-grid,
.hl-section > .hl-industries-grid,
.hl-section > .hl-why-grid,
.hl-section > .hl-testimonials-grid,
.hl-section > .hl-cta-inner,
.hl-section > * {
  max-width: var(--hl-container);
  margin-left: auto; margin-right: auto;
}
.hl-section.hl-bg-soft {
  background:
    linear-gradient(180deg, rgba(20,14,12,0.55) 0%, rgba(20,14,12,0.35) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hl-section.hl-bg-mocha {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(184,115,51,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(38,28,28,0.85) 0%, rgba(13,8,7,0.92) 100%);
  border-top: 1px solid rgba(184,115,51,0.25);
  border-bottom: 1px solid rgba(184,115,51,0.25);
}
.hl-section.hl-bg-mocha::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--hl-gold), transparent);
}

/* Section head */
.hl-section-head {
  text-align: center;
  max-width: 780px !important;
  margin: 0 auto 60px;
}
.hl-section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(184,115,51,0.14);
  border: 1px solid rgba(184,115,51,0.35);
  color: var(--hl-primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hl-section-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hl-primary-dark);
  box-shadow: 0 0 10px rgba(184,115,51,0.7);
}
.hl-section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.hl-section-lede {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Premium glass card enhancement ---------- */
.hl-service, .hl-brand, .hl-industry, .hl-testimonial, .hl-why-item {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 12px 32px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hl-service::after, .hl-brand::after, .hl-industry::after,
.hl-testimonial::after, .hl-why-item::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.06) 38%,
    rgba(184,115,51,0) 62%,
    rgba(184,115,51,0.42) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  transition: background var(--hl-transition);
}
.hl-service:hover::after, .hl-brand:hover::after,
.hl-industry:hover::after, .hl-testimonial:hover::after,
.hl-why-item:hover::after {
  background: linear-gradient(135deg,
    rgba(184,115,51,0.65) 0%,
    rgba(255,255,255,0.12) 40%,
    rgba(184,115,51,0.70) 100%);
}

/* ---------- Services grid ---------- */
.hl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hl-service {
  display: flex; flex-direction: column;
  border-radius: var(--hl-radius-lg);
  overflow: hidden;
  transition: transform var(--hl-transition), box-shadow var(--hl-transition);
}
.hl-service:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 26px 52px rgba(0,0,0,0.5);
}
.hl-service-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.hl-service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2,0.7,0.2,1);
}
.hl-service-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,8,7,0) 0%, rgba(13,8,7,0.55) 100%);
}
.hl-service:hover .hl-service-media img { transform: scale(1.08); }
.hl-service-body {
  position: relative;
  padding: 0 26px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.hl-service-icon {
  width: 56px; height: 56px;
  margin-top: -28px; margin-bottom: 18px;
  border-radius: var(--hl-radius-md);
  background: linear-gradient(135deg, var(--hl-primary-dark), var(--hl-mocha));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 26px rgba(184,115,51,0.4);
  position: relative; z-index: 3;
}
.hl-service-icon svg { width: 26px; height: 26px; fill: #fff; }
.hl-service h3 {
  margin: 0 0 10px;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  letter-spacing: -0.01em;
}
.hl-service p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.hl-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--hl-primary);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--hl-transition);
}
.hl-service-link::after {
  content: "→"; transition: transform var(--hl-transition);
}
[dir="rtl"] .hl-service-link::after { content: "←"; }
.hl-service-link:hover { color: var(--hl-gold-light); }
.hl-service-link:hover::after { transform: translateX(4px); }
[dir="rtl"] .hl-service-link:hover::after { transform: translateX(-4px); }

/* ---------- Brands grid ---------- */
.hl-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hl-brand {
  display: flex; align-items: center; gap: 20px;
  padding: 22px;
  border-radius: var(--hl-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--hl-transition), box-shadow var(--hl-transition);
}
.hl-brand:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 20px 44px rgba(0,0,0,0.45);
}
.hl-brand-thumb {
  flex: 0 0 100px;
  width: 100px; height: 100px;
  border-radius: var(--hl-radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #fff8e1, var(--hl-primary));
  border: 1px solid rgba(184,115,51,0.4);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  box-shadow: inset 0 -8px 18px rgba(184,115,51,0.08);
}
.hl-brand-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 600ms ease;
}
.hl-brand:hover .hl-brand-thumb img { transform: scale(1.06); }
.hl-brand-meta { flex: 1; min-width: 0; }
.hl-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hl-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.74);
  margin: 0 0 10px;
  line-height: 1.5;
}
.hl-brand-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hl-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(184,115,51,0.18);
  border: 1px solid rgba(184,115,51,0.4);
  color: var(--hl-primary);
  letter-spacing: 0.03em;
}
.hl-tag.gold {
  background: rgba(184,115,51,0.16);
  border-color: rgba(184,115,51,0.42);
  color: var(--hl-gold-light);
}

/* ---------- Industries grid ---------- */
.hl-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hl-industry {
  padding: 28px 20px;
  border-radius: var(--hl-radius-lg);
  text-align: center;
  transition: transform var(--hl-transition);
}
.hl-industry:hover { transform: translateY(-6px); }
.hl-industry .ico {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--hl-radius-md);
  background: linear-gradient(135deg, var(--hl-primary-dark), var(--hl-mocha));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(184,115,51,0.35);
}
.hl-industry .ico svg { width: 26px; height: 26px; fill: #fff; }
.hl-industry h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.hl-industry p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
}

/* ---------- Why us grid ---------- */
.hl-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.hl-why-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--hl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hl-border-glass);
  box-shadow: var(--hl-shadow-strong);
}
.hl-why-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hl-why-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,46,46,0.18), rgba(184,115,51,0.14));
}
.hl-why-list {
  display: flex; flex-direction: column; gap: 18px;
}
.hl-why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--hl-radius-md);
  align-items: flex-start;
  transition: transform var(--hl-transition);
}
.hl-why-item:hover { transform: translateX(6px); }
[dir="rtl"] .hl-why-item:hover { transform: translateX(-6px); }
.hl-why-item .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hl-primary-dark), var(--hl-mocha));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(184,115,51,0.4);
}
.hl-why-item .ico svg { width: 24px; height: 24px; fill: #fff; }
.hl-why-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.hl-why-item p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ---------- Testimonials grid ---------- */
.hl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hl-testimonial {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--hl-radius-lg);
  transition: transform var(--hl-transition);
}
.hl-testimonial:hover { transform: translateY(-4px); }
.hl-testimonial::before {
  content: "“";
  position: absolute;
  top: 14px;
  inset-inline-end: 22px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(184,115,51,0.28);
  z-index: 2;
  pointer-events: none;
}
.hl-testimonial .stars {
  display: inline-flex; gap: 2px;
  color: var(--hl-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hl-testimonial p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.86);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  position: relative; z-index: 3;
}
.hl-testimonial .author {
  display: flex; align-items: center; gap: 12px;
}
.hl-testimonial .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hl-primary-dark), var(--hl-gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(184,115,51,0.4);
}
.hl-testimonial .author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.hl-testimonial .author span {
  font-size: 12px;
  color: rgba(255,255,255,0.62);
}

/* ---------- CTA banner ---------- */
.hl-cta-inner {
  position: relative;
  margin: 0 auto;
  padding: 70px 50px;
  max-width: 1240px !important;
  border-radius: var(--hl-radius-lg);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(61,46,46,0.92) 0%, rgba(184,115,51,0.65) 100%),
    url('/assets/hublink_theme/images/bg_pattern.png') center/cover;
  border: 1px solid rgba(184,115,51,0.35);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
}
.hl-cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 320px at 100% 0%, rgba(184,115,51,0.22), transparent 65%);
  pointer-events: none;
}
.hl-cta-inner * { position: relative; z-index: 2; }
.hl-cta-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.hl-cta-inner p {
  color: rgba(255,255,255,0.92);
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hl-cta-contact {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
.hl-footer {
  position: relative;
  padding: 70px 24px 24px;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(184,115,51,0.22);
  color: rgba(255,255,255,0.78);
  margin-top: 60px;
}
.hl-footer-grid {
  max-width: var(--hl-container);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.hl-footer h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.hl-footer ul { list-style: none; margin: 0; padding: 0; }
.hl-footer li { margin-bottom: 10px; }
.hl-footer a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--hl-transition);
}
.hl-footer a:hover { color: var(--hl-gold-light); }
.hl-footer .footer-brand img { height: 52px; margin-bottom: 16px; display: block; }
.hl-footer p.about {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 380px;
  line-height: 1.7;
}
.hl-footer .contact-row {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  margin-bottom: 8px;
}
.hl-footer .contact-row i,
.hl-footer .contact-row svg { color: var(--hl-gold-light); fill: var(--hl-gold-light); }
.hl-social {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.hl-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--hl-bg-panel);
  border: 1px solid var(--hl-border-glass);
  color: #fff;
  transition: var(--hl-transition);
}
.hl-social a:hover {
  transform: translateY(-3px);
  background: rgba(184,115,51,0.25);
  border-color: var(--hl-primary-dark);
  color: var(--hl-primary);
}
.hl-footer-bottom {
  max-width: var(--hl-container);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* ---------- WhatsApp FAB ---------- */
.hl-whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  z-index: 100;
  transition: transform var(--hl-transition);
  animation: hl-pulse-wa 2.4s ease-in-out infinite;
}
.hl-whatsapp-fab:hover { transform: scale(1.08); color: #fff; }
.hl-whatsapp-fab svg { width: 30px; height: 30px; fill: currentColor; }
[dir="rtl"] .hl-whatsapp-fab { right: auto; left: 24px; }
@keyframes hl-pulse-wa {
  0%,100% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  50%     { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.hl-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.hl-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Generic links inside content ---------- */
.hl-section a:not(.hl-btn):not(.hl-service-link):not(.hl-brand):not(.hl-cta-contact a) {
  color: var(--hl-gold-light);
  text-decoration: none;
  transition: color var(--hl-transition);
}
.hl-section a:not(.hl-btn):not(.hl-service-link):hover {
  color: var(--hl-gold);
}

/* ============================================================
   LOGIN PAGE — match dark-glass premium look
   Frappe login is at /login (body has data-path="login")
   ============================================================ */
body[data-path="login"],
body.login-page {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
body[data-path="login"] .page_content,
body[data-path="login"] .for-login,
body[data-path="login"] .login-content {
  max-width: 100% !important;
}
body[data-path="login"] .for-login,
body[data-path="login"] .login-content,
body[data-path="login"] #page-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
body[data-path="login"] .page-card,
body[data-path="login"] .login-content > .container,
body[data-path="login"] .for-login > .container,
.login-box,
.for-login form,
form.for-login {
  width: 100%;
  max-width: 440px;
  padding: 40px 36px;
  border-radius: var(--hl-radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid var(--hl-border-glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 28px 60px rgba(0,0,0,0.55);
  color: #fff;
}
body[data-path="login"] .page-card-head h4,
body[data-path="login"] h1,
body[data-path="login"] h4,
body[data-path="login"] .login-content h4 {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
body[data-path="login"] .form-control,
body[data-path="login"] input[type="text"],
body[data-path="login"] input[type="email"],
body[data-path="login"] input[type="password"] {
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #fff !important;
  border-radius: var(--hl-radius-sm);
  padding: 12px 14px;
  height: auto;
  transition: var(--hl-transition);
}
body[data-path="login"] .form-control::placeholder { color: rgba(255,255,255,0.5); }
body[data-path="login"] .form-control:focus,
body[data-path="login"] input:focus {
  border-color: var(--hl-primary-dark) !important;
  box-shadow: 0 0 0 3px rgba(184,115,51,0.25);
  outline: none;
}
body[data-path="login"] label,
body[data-path="login"] .control-label,
body[data-path="login"] .text-muted,
body[data-path="login"] a {
  color: rgba(255,255,255,0.82) !important;
}
body[data-path="login"] a:hover { color: var(--hl-gold-light) !important; }
body[data-path="login"] .btn-primary,
body[data-path="login"] .btn-login,
body[data-path="login"] button[type="submit"] {
  background: linear-gradient(135deg, var(--hl-primary-dark), #8B4513) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 999px;
  width: 100%;
  box-shadow: 0 12px 28px rgba(184,115,51,0.4);
  transition: var(--hl-transition);
}
body[data-path="login"] .btn-primary:hover,
body[data-path="login"] .btn-login:hover,
body[data-path="login"] button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184,115,51,0.55);
}
body[data-path="login"] .btn-default,
body[data-path="login"] .btn-secondary {
  background: var(--hl-bg-panel) !important;
  border: 1px solid var(--hl-border-glass) !important;
  color: #fff !important;
  border-radius: 999px;
}
body[data-path="login"] .btn-default:hover {
  background: var(--hl-bg-panel-strong) !important;
  border-color: var(--hl-gold) !important;
  color: var(--hl-gold-light) !important;
}
body[data-path="login"] .login-content .login-with,
body[data-path="login"] .login-with,
body[data-path="login"] .or-section,
body[data-path="login"] .divider {
  color: rgba(255,255,255,0.55) !important;
}
body[data-path="login"] .text-muted, body[data-path="login"] small {
  color: rgba(255,255,255,0.62) !important;
}
body[data-path="login"] .indicator-pill {
  background: rgba(184,115,51,0.16) !important;
  color: var(--hl-primary) !important;
}
body[data-path="login"] .logo-section img,
body[data-path="login"] .login-logo {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5));
  max-height: 60px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hl-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hl-hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .hl-services-grid,
  .hl-brands-grid,
  .hl-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-footer-grid { grid-template-columns: 1fr 1fr; }
  .hl-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hl-why-visual { max-width: 520px; aspect-ratio: 16/10; margin: 0 auto; }
  .hl-nav-menu { display: none; }
  .hl-nav-toggle { display: inline-flex; }
}

@media (max-width: 768px) {
  :root { --hl-section-py: 70px; }
  body::before { background-attachment: scroll; }
  .hl-marquee { font-size: 12px; }
  .hl-nav-inner { padding: 10px 16px; gap: 12px; }
  .hl-nav-brand img { height: 38px; }
  .hl-nav-actions { gap: 6px; }
  .hl-nav-lang { display: none; }
  .hl-hero { padding: 60px 16px 50px; min-height: auto; }
  .hl-hero-title { font-size: clamp(28px, 8vw, 44px); }
  .hl-services-grid,
  .hl-brands-grid,
  .hl-industries-grid,
  .hl-testimonials-grid,
  .hl-footer-grid { grid-template-columns: 1fr; }
  .hl-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .hl-section { padding: var(--hl-section-py) 16px; }
  .hl-cta-inner { padding: 48px 24px; }
  .hl-brand { flex-direction: column; text-align: center; }
  .hl-brand-meta { text-align: center; }
  .hl-brand-tags { justify-content: center; }
  .hl-whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  [dir="rtl"] .hl-whatsapp-fab { right: auto; left: 18px; }
}

@media (max-width: 480px) {
  .hl-kpi-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hl-section-title { font-size: 26px; }
  .hl-hero-eyebrow,
  .hl-section-eyebrow { font-size: 11px; padding: 5px 12px; }
}

/* === Flat icons + polish (GPT-4o pass) === */
.hl-service-icon,
.hl-industry .ico,
.hl-why-item .ico {
  position: relative;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hl-industry .ico,
.hl-why-item .ico { margin-top: 0; }
.hl-industry .ico { margin: 0 auto 16px; }

.hl-service-icon svg,
.hl-industry .ico svg,
.hl-why-item .ico svg {
  fill: var(--hl-primary) !important;
  width: 32px !important;
  height: 32px !important;
  position: relative;
  z-index: 2;
  transition: fill var(--hl-transition), transform var(--hl-transition);
  filter: drop-shadow(0 2px 8px rgba(184,115,51,0.35));
}

.hl-service:hover .hl-service-icon svg,
.hl-industry:hover .ico svg,
.hl-why-item:hover .ico svg {
  fill: var(--hl-gold-light) !important;
  transform: scale(1.08);
  filter: drop-shadow(0 2px 10px rgba(240,216,122,0.45));
}

.hl-service-icon::before,
.hl-industry .ico::before,
.hl-why-item .ico::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: radial-gradient(circle, rgba(184,115,51,0.22) 0%, rgba(184,115,51,0.05) 50%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
  transition: background var(--hl-transition);
}
.hl-service:hover .hl-service-icon::before,
.hl-industry:hover .ico::before,
.hl-why-item:hover .ico::before {
  background: radial-gradient(circle, rgba(240,216,122,0.28) 0%, rgba(240,216,122,0.06) 50%, transparent 75%);
}

/* Flat solid avatar � no gradient, no shadow */
.hl-testimonial .avatar {
  background: var(--hl-primary-dark) !important;
  color: #fff;
  box-shadow: none !important;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}

/* Subtler gradient-border on cards so flat icons read clearly */
.hl-service::after, .hl-brand::after, .hl-industry::after,
.hl-testimonial::after, .hl-why-item::after {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.32) 0%,
    rgba(255,255,255,0.04) 38%,
    rgba(184,115,51,0) 62%,
    rgba(184,115,51,0.28) 100%) !important;
}
.hl-service:hover::after, .hl-brand:hover::after,
.hl-industry:hover::after, .hl-testimonial:hover::after,
.hl-why-item:hover::after {
  background: linear-gradient(135deg,
    rgba(184,115,51,0.5) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(184,115,51,0.55) 100%) !important;
}

/* Flat pill tags */
.hl-tag {
  background: rgba(232,200,104,0.10) !important;
  border: 1px solid rgba(232,200,104,0.18) !important;
  color: var(--hl-primary) !important;
  font-weight: 600;
}
.hl-tag.gold {
  background: rgba(240,216,122,0.10) !important;
  border-color: rgba(240,216,122,0.22) !important;
  color: var(--hl-gold-light) !important;
}

/* Flat service-link arrow */
.hl-service-link {
  color: var(--hl-primary) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hl-service-link::after { filter: none; }

/* Footer social pills � flat coral on hover */
.hl-social a:hover {
  background: var(--hl-primary-dark) !important;
  border-color: var(--hl-primary-dark) !important;
  color: #fff !important;
}
.hl-social a svg { fill: currentColor; width: 16px; height: 16px; }

/* WhatsApp FAB flat � kill gradient, single color */
.hl-whatsapp-fab {
  background: #25d366 !important;
}


/* === GPT-4o premium gold polish === */

.hl-hero-title, .hl-section-title {
  letter-spacing: -0.5px;
}

.hl-hero-title .accent {
  background: linear-gradient(45deg, #B87333, #E0B084, #8B4513, #F5DEB3);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 2px rgba(255, 246, 204, 0.5);
}

.hl-service::after, .hl-brand::after {
  background-size: 200% 200%;
  transition: background-position 0.3s ease;
}

.hl-service:hover::after, .hl-brand:hover::after {
  background-position: 100% 0;
}

.hl-btn-primary {
  box-shadow: inset 0 0 5px rgba(184,115,51, 0.5), 0 0 10px rgba(184,115,51, 0.3);
  transition: box-shadow 0.3s ease;
}

.hl-btn-primary:focus-visible {
  animation: focus-glow 0.3s ease-out;
}

@keyframes focus-glow {
  0%, 100% { box-shadow: inset 0 0 5px rgba(184,115,51, 0.5), 0 0 10px rgba(184,115,51, 0.3); }
  50% { box-shadow: inset 0 0 8px rgba(184,115,51, 0.7), 0 0 15px rgba(184,115,51, 0.5); }
}

.hl-kpi .num {
  font-feature-settings: "tnum";
  position: relative;
}

.hl-kpi .num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hl-gold);
}

.hl-hero-eyebrow, .hl-section-eyebrow {
  border-radius: 9999px;
  background-color: var(--hl-gold);
  padding: 0 10px;
  position: relative;
}

.hl-hero-eyebrow::before, .hl-section-eyebrow::before {
  content: '◆';
  position: absolute;
  color: var(--hl-gold);
  top: 50%;
  transform: translateY(-50%);
}

.hl-hero-eyebrow::before {
  left: 5px;
}

.hl-section-eyebrow::before {
  right: 5px;
}

.hl-service-media {
  position: relative;
}

.hl-service-media::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hl-gold);
}

.hl-brand-thumb {
  box-shadow: inset 0 0 5px rgba(184,115,51, 0.5);
  position: relative;
}

.hl-brand-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: linear-gradient(45deg, rgba(240, 216, 122, 0.5), rgba(184,115,51, 0));
}

.hl-cta-inner {
  background: radial-gradient(circle, var(--hl-mocha) 30%, var(--hl-gold) 100%);
  position: relative;
}

.hl-cta-inner::before {
  content: '◆';
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--hl-gold);
}

.hl-footer {
  position: relative;
}

.hl-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hl-gold);
}

.hl-footer a:hover {
  text-decoration: underline;
  text-decoration-color: var(--hl-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.hl-btn:focus-visible, .hl-nav-cta:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--hl-gold);
  box-shadow: 0 0 4px rgba(184,115,51, 0.5);
}

::selection {
  background: var(--hl-gold);
  color: black;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0807;
}

::-webkit-scrollbar-thumb {
  background: var(--hl-gold);
}

@media print {
  .hl-navbar, .hl-footer, .whatsapp-fab {
    display: none;
  }
  body {
    color: black;
    background: white;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hl-float, .hl-pulse {
    animation: none;
  }
}

.hl-service-link::after {
  content: '→';
  margin-inline-start: 5px;
}

.hl-gold-accent {
  color: var(--hl-gold-light);
  font-weight: 700;
}

.hl-divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hl-divider-gold::before, .hl-divider-gold::after {
  content: '◆';
  color: var(--hl-gold);
}

.hl-divider-gold::after {
  content: '◆';
}

.hl-marquee::after {
  content: '◆';
  color: var(--hl-gold);
  margin: 0 10px;
}

.hl-navbar.is-scrolled {
  padding: 8px 0;
}

.hl-navbar.is-scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--hl-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hl-navbar.is-scrolled:hover::after {
  transform: scaleX(1);
}

/* === Logo + FAB sizing fix === */
.hl-nav-brand img {
  height: 36px !important;
  width: auto !important;
  max-width: 140px;
  object-fit: contain;
}
.hl-nav-brand span {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-inline-start: 2px;
}

.hl-footer-brand img {
  height: 56px !important;
  width: auto !important;
  max-width: 220px;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}

.hl-whatsapp-fab {
  width: 52px !important;
  height: 52px !important;
  bottom: 22px !important;
  right: 22px !important;
}
[dir="rtl"] .hl-whatsapp-fab { right: auto !important; left: 22px !important; }
.hl-whatsapp-fab svg { width: 24px !important; height: 24px !important; }

@media (max-width: 768px) {
  .hl-nav-brand img { height: 30px !important; max-width: 110px; }
  .hl-nav-brand span { font-size: 16px; }
  .hl-footer-brand img { height: 46px !important; max-width: 180px; }
  .hl-whatsapp-fab { width: 46px !important; height: 46px !important; bottom: 16px !important; right: 16px !important; }
  [dir="rtl"] .hl-whatsapp-fab { right: auto !important; left: 16px !important; }
  .hl-whatsapp-fab svg { width: 22px !important; height: 22px !important; }
}

/* === v2 layout addendum (Phase C) === */
.hl-accent{color:var(--hl-gold,#B87333)}
.hl-marquee-item{display:inline-block;padding:0 2rem;color:var(--hl-gold,#B87333);font-weight:600;letter-spacing:.02em}

/* Products grid */
.hl-products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem;margin-top:2rem}
.hl-product{background:rgba(255,255,255,.06);border:1px solid rgba(184,115,51,.18);border-radius:18px;overflow:hidden;transition:transform .3s,border-color .3s,box-shadow .3s;display:flex;flex-direction:column}
.hl-product:hover{transform:translateY(-4px);border-color:rgba(184,115,51,.45);box-shadow:0 14px 40px rgba(184,115,51,.12)}
.hl-product-media{aspect-ratio:4/3;overflow:hidden;background:#1a1310}
.hl-product-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.hl-product:hover .hl-product-media img{transform:scale(1.05)}
.hl-product-media.hl-fallback{background:linear-gradient(135deg,#2a1f1a,#1a1310)}
.hl-product-body{padding:1rem 1.1rem 1.25rem;display:flex;flex-direction:column;gap:.6rem;flex:1}
.hl-product-body h3{margin:0;font-size:1.05rem;color:#fff}
.hl-product-body p{margin:0;color:rgba(255,255,255,.65);font-size:.9rem;line-height:1.55}
.hl-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:auto}
.hl-tag{font-size:.72rem;padding:.25rem .6rem;border-radius:99px;background:rgba(184,115,51,.10);color:var(--hl-gold,#B87333);border:1px solid rgba(184,115,51,.22)}
.hl-product-cta{margin-top:.5rem;display:inline-block;color:var(--hl-gold,#B87333);font-weight:600;font-size:.88rem;text-decoration:none}
.hl-product-cta:hover{text-decoration:underline}

/* Industries grid */
.hl-industries-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-top:2rem}
.hl-industry{position:relative;border-radius:22px;overflow:hidden;min-height:340px;background:#1a1310;border:1px solid rgba(184,115,51,.2)}
.hl-industry-media{position:absolute;inset:0}
.hl-industry-media img{width:100%;height:100%;object-fit:cover;opacity:.55;transition:opacity .4s,transform .8s}
.hl-industry:hover .hl-industry-media img{opacity:.7;transform:scale(1.04)}
.hl-industry-media.hl-fallback{background:linear-gradient(135deg,#3a2a20,#1a1310)}
.hl-industry-body{position:relative;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:1.5rem;background:linear-gradient(180deg,rgba(13,8,7,0) 0%,rgba(13,8,7,.7) 55%,rgba(13,8,7,.95) 100%);min-height:340px}
.hl-industry-tagline{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--hl-gold,#B87333);margin-bottom:.5rem}
.hl-industry-body h3{margin:0 0 .6rem;font-size:1.4rem;color:#fff}
.hl-industry-body p{margin:0 0 .8rem;color:rgba(255,255,255,.78);font-size:.92rem;line-height:1.6}

/* Why grid */
.hl-bg-why{background:linear-gradient(180deg,#0d0807 0%,#15100c 100%)}
.hl-why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem;margin-top:2rem}
.hl-why-card{padding:1.5rem 1.25rem;background:rgba(255,255,255,.05);border:1px solid rgba(184,115,51,.2);border-radius:18px;text-align:center;transition:transform .3s,border-color .3s}
.hl-why-card:hover{transform:translateY(-3px);border-color:rgba(184,115,51,.45)}
.hl-why-icon{width:56px;height:56px;border-radius:14px;background:linear-gradient(135deg,rgba(184,115,51,.2),rgba(184,115,51,.05));display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:var(--hl-gold,#B87333)}
.hl-why-icon svg{width:28px;height:28px;fill:currentColor}
.hl-why-card h3{margin:0 0 .5rem;color:#fff;font-size:1.05rem}
.hl-why-card p{margin:0;color:rgba(255,255,255,.65);font-size:.88rem;line-height:1.6}

/* Service icon color fix */
.hl-service-icon{color:var(--hl-gold,#B87333)}
.hl-service-icon svg{fill:currentColor;width:28px;height:28px}
.hl-service-media.hl-fallback{background:linear-gradient(135deg,#3a2a20,#1a1310)}

/* Brand pills */
.hl-brands-pills{display:flex;flex-wrap:wrap;gap:.85rem;justify-content:center;margin-top:2rem}
.hl-brand-pill{display:flex;flex-direction:column;align-items:center;gap:.25rem;padding:.85rem 1.3rem;background:rgba(255,255,255,.06);border:1px solid rgba(184,115,51,.25);border-radius:99px;transition:transform .3s,border-color .3s;min-width:180px;text-align:center}
.hl-brand-pill:hover{transform:translateY(-2px);border-color:rgba(184,115,51,.55)}
.hl-brand-pill-name{color:var(--hl-gold,#B87333);font-weight:700;font-size:.95rem}
.hl-brand-pill-desc{color:rgba(255,255,255,.6);font-size:.75rem}

/* Testimonials */
.hl-testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem;margin-top:2rem}
.hl-testimonial{position:relative;padding:1.75rem 1.5rem 1.5rem;background:rgba(255,255,255,.05);border:1px solid rgba(184,115,51,.2);border-radius:20px}
.hl-testimonial-quote-mark{position:absolute;top:.5rem;right:1rem;font-size:4rem;color:var(--hl-gold,#B87333);opacity:.25;line-height:1;font-family:Georgia,serif}
.hl-testimonial-quote{margin:0 0 1.25rem;color:rgba(255,255,255,.85);font-size:.96rem;line-height:1.8}
.hl-testimonial-author{display:flex;align-items:center;gap:.85rem;padding-top:1rem;border-top:1px solid rgba(184,115,51,.18)}
.hl-testimonial-avatar{width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,#B87333,#6B3410);display:flex;align-items:center;justify-content:center;color:#0d0807;font-weight:800;font-size:.95rem}
.hl-testimonial-name{color:#fff;font-weight:600;font-size:.95rem}
.hl-testimonial-title{color:rgba(255,255,255,.55);font-size:.78rem;margin-top:.15rem}

/* CTA banner v2 polish */
.hl-cta-eyebrow{display:inline-block;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;color:var(--hl-gold,#B87333);margin-bottom:.6rem}
.hl-cta-actions{display:flex;flex-wrap:wrap;gap:.85rem;justify-content:center;margin-top:1.5rem}

/* Contact grid */
.hl-contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem;margin-top:2rem}
.hl-contact-card{padding:1.75rem 1.25rem;background:rgba(255,255,255,.05);border:1px solid rgba(184,115,51,.22);border-radius:18px;text-align:center;text-decoration:none;color:inherit;display:block;transition:transform .3s,border-color .3s}
a.hl-contact-card:hover{transform:translateY(-3px);border-color:rgba(184,115,51,.5)}
.hl-contact-icon{margin-bottom:.85rem;display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:rgba(184,115,51,.10);border:1px solid rgba(184,115,51,.30)}
.hl-contact-icon svg{width:26px;height:26px;fill:var(--hl-gold,#B87333)}
.hl-contact-card h3{margin:0 0 .4rem;color:var(--hl-gold,#B87333);font-size:1.05rem}
.hl-contact-card p{margin:0;color:rgba(255,255,255,.75);font-size:.9rem;line-height:1.6}
.hl-contact-cta{display:inline-block;margin-top:.85rem;color:var(--hl-gold,#B87333);font-weight:600;font-size:.85rem}

/* Eyebrow icon (replaces ★ emoji) */
.hl-eyebrow-icon{display:inline-flex;vertical-align:middle;margin-inline-end:.35rem}
.hl-eyebrow-icon svg{width:14px;height:14px;fill:var(--hl-gold,#B87333)}

/* Brand pill flat diamond icon */
.hl-brand-pill-icon{display:inline-flex;vertical-align:middle;margin-inline-end:.4rem}
.hl-brand-pill-icon svg{width:16px;height:16px;fill:var(--hl-gold,#B87333)}

/* Force all section/why/service icons to flat gold */
.hl-why-icon svg,.hl-service-icon svg,.hl-industry-icon svg,.hl-feature-icon svg{fill:var(--hl-gold,#B87333) !important;color:var(--hl-gold,#B87333)}
.hl-nav-toggle svg,.hl-nav-lang svg,.hl-nav-portal svg,.hl-nav-brand svg{fill:var(--hl-gold,#B87333)}

/* Compact hero variant */
.hl-hero-compact{padding-block:2.5rem 1.5rem}
.hl-hero-compact .hl-hero-title{font-size:clamp(1.8rem,4vw,2.6rem)}
.hl-hero-compact .hl-kpi-row{display:none}

/* Logo size — XL */
.hl-navbar{padding-block:.6rem}
.hl-nav-inner{min-height:140px}
.hl-nav-brand{gap:1rem;display:flex;align-items:center}
.hl-nav-brand img{height:128px !important;width:auto !important;max-width:380px;object-fit:contain;filter:drop-shadow(0 4px 14px rgba(184,115,51,.35))}
.hl-nav-brand-text{display:flex;flex-direction:column;line-height:1.1}
.hl-nav-brand .hl-brand-ar{font-weight:800;font-size:24px;color:#fff;letter-spacing:-0.01em}
.hl-nav-brand .hl-brand-en{font-weight:600;font-size:12px;color:var(--hl-gold,#B87333);letter-spacing:.18em;text-transform:uppercase;margin-top:.2rem}
.hl-nav-brand span:not(.hl-brand-ar):not(.hl-brand-en){display:none}

/* About preview on home */
.hl-about-preview{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center;margin-top:1.5rem}
.hl-about-text p{color:rgba(255,255,255,.78);line-height:1.9;font-size:1rem;margin:0 0 1.25rem}
.hl-about-visual img{width:100%;height:auto;max-height:360px;object-fit:cover;border-radius:18px;border:1px solid rgba(184,115,51,.25)}

@media (max-width:900px){
  .hl-about-preview{grid-template-columns:1fr}
}
@media (max-width:640px){
  .hl-nav-inner{min-height:96px}
  .hl-nav-brand img{height:80px !important;max-width:240px}
  .hl-nav-brand .hl-brand-ar{font-size:16px}
  .hl-nav-brand .hl-brand-en{font-size:9px;letter-spacing:.14em}
  .hl-products-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .hl-product-body{padding:.75rem .8rem 1rem}
  .hl-product-body h3{font-size:.92rem}
  .hl-product-body p{font-size:.8rem}
  .hl-industry{min-height:260px}
  .hl-industry-body{min-height:260px;padding:1.1rem}
}

/* === FAQ accordion === */
.hl-faq-list{max-width:860px;margin:2rem auto 0;display:flex;flex-direction:column;gap:.75rem}
.hl-faq-item{background:rgba(255,255,255,.04);border:1px solid rgba(184,115,51,.18);border-radius:14px;overflow:hidden;transition:border-color .3s}
.hl-faq-item[open]{border-color:rgba(184,115,51,.45);background:rgba(184,115,51,.04)}
.hl-faq-q{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.1rem 1.3rem;cursor:pointer;list-style:none;color:#fff;font-weight:600;font-size:1rem;user-select:none}
.hl-faq-q::-webkit-details-marker{display:none}
.hl-faq-chev{color:var(--hl-gold,#B87333);transition:transform .3s;flex-shrink:0}
.hl-faq-item[open] .hl-faq-chev{transform:rotate(180deg)}
.hl-faq-a{padding:0 1.3rem 1.2rem;color:rgba(255,255,255,.75);line-height:1.85;font-size:.94rem}

/* === Hero trust badges === */
.hl-hero-badges{display:flex;flex-wrap:wrap;gap:.5rem;margin:.85rem 0 1rem}
.hl-hero-badge{display:inline-flex;align-items:center;gap:.3rem;padding:.4rem .85rem;font-size:.78rem;color:var(--hl-gold,#B87333);background:rgba(184,115,51,.08);border:1px solid rgba(184,115,51,.28);border-radius:99px;font-weight:600}

/* === Quote form === */
.hl-quote-form{max-width:760px;margin:2rem auto 0;background:rgba(255,255,255,.04);border:1px solid rgba(184,115,51,.22);border-radius:22px;padding:2rem 1.75rem;display:flex;flex-direction:column;gap:1.1rem}
.hl-qf-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.hl-qf-field{display:flex;flex-direction:column;gap:.4rem}
.hl-qf-field label{color:rgba(255,255,255,.85);font-weight:600;font-size:.92rem}
.hl-req{color:#e57373}
.hl-qf-field input,.hl-qf-field select,.hl-qf-field textarea{background:rgba(13,8,7,.55);border:1px solid rgba(184,115,51,.22);border-radius:10px;padding:.7rem .9rem;color:#fff;font:inherit;font-size:.95rem;transition:border-color .2s,background .2s}
.hl-qf-field input:focus,.hl-qf-field select:focus,.hl-qf-field textarea:focus{outline:none;border-color:rgba(184,115,51,.7);background:rgba(13,8,7,.75)}
.hl-qf-field input::placeholder,.hl-qf-field textarea::placeholder{color:rgba(255,255,255,.35)}
.hl-qf-checks{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:.45rem;background:rgba(13,8,7,.4);border:1px solid rgba(184,115,51,.15);border-radius:10px;padding:.85rem}
.hl-qf-check{display:flex;align-items:center;gap:.5rem;cursor:pointer;color:rgba(255,255,255,.78);font-size:.88rem;padding:.25rem .35rem;border-radius:6px;transition:background .2s,color .2s}
.hl-qf-check:hover{background:rgba(184,115,51,.07);color:#fff}
.hl-qf-check input{accent-color:var(--hl-gold,#B87333);width:16px;height:16px;margin:0}
.hl-qf-submit{justify-content:center;font-size:1.05rem;padding:.95rem 1.5rem;margin-top:.5rem}
.hl-qf-trust{margin:.4rem 0 0;text-align:center;color:rgba(255,255,255,.55);font-size:.85rem}
@media (max-width:640px){
  .hl-qf-row{grid-template-columns:1fr}
  .hl-quote-form{padding:1.5rem 1.1rem}
}

/* === Picture/img unification === */
.hl-product-media picture,.hl-industry-media picture,.hl-hero-card picture,.hl-about-visual picture{display:block;width:100%;height:100%}
.hl-product-media picture img,.hl-industry-media picture img,.hl-hero-card picture img,.hl-about-visual picture img{width:100%;height:100%;object-fit:cover}
