/* ==========================================================================
   New Lines Technologies — Premium Burgundy design system
   Based on the Stitch AI design: Modern Luxury Minimalism + Editorial Glass.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #fdf9f3;
  --surface: #fdf9f3;
  --surface-low: #f7f3ed;
  --surface-high: #ebe8e2;
  --surface-highest: #e6e2dc;
  --card: #ffffff;
  --primary: #580824;
  --primary-2: #730e33;
  --primary-dark: #380315;
  --primary-soft: #ffd9df;
  --secondary: #8a113e;
  --secondary-2: #9e1647;
  --surface-tint: #9c3f56;
  --text: #1a1a24;
  --text-muted: #544245;
  --outline: #877275;
  --gold: #e69500;
  --gold-2: #f59e0b;
  --wa: #1faa57;
  --wa-2: #25d366;
  --error: #ba1a1a;
  --error-bg: #ffdad6;
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  --shadow-1: 0 4px 20px -2px rgba(88, 8, 36, 0.04), 0 2px 6px -1px rgba(26, 26, 36, 0.03);
  --shadow-2: 0 12px 36px -4px rgba(88, 8, 36, 0.08), 0 4px 12px -2px rgba(26, 26, 36, 0.04);
  --shadow-3: 0 24px 60px -8px rgba(88, 8, 36, 0.16);
  --shadow-wine: 0 8px 24px rgba(88, 8, 36, 0.25);
  --shadow-gold: 0 8px 24px rgba(230, 149, 0, 0.28);
  --container: 1320px;
  --gutter: 1.5rem;
  --gutter-mobile: 1rem;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', 'Cairo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

html[lang="ar"] body {
  font-family: 'Cairo', 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.35; color: var(--primary); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 { line-height: 1.5; }

:focus-visible { outline: 3px solid rgba(230, 149, 0, 0.55); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter-mobile); }
.container--narrow { max-width: 880px; }
@media (min-width: 768px) { .container { padding-inline: var(--gutter); } }

.section { padding-block: 3.5rem; }
.section-tight { padding-block: 2.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

.bg-surface-low { background: var(--surface-low); }
.bg-surface { background: var(--surface); }

/* ---------- Typography utilities ---------- */
.display-hero { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
.h-xl { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.h-lg { font-size: clamp(1.3rem, 2.6vw, 1.85rem); font-weight: 700; }
.h-md { font-size: 1.3rem; font-weight: 700; }
.h-sm { font-size: 1.1rem; font-weight: 700; }
.sub-lg { font-size: 1.05rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Badge / chip ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700; background: var(--primary-soft); color: var(--primary);
  white-space: nowrap;
}
.badge--gold { background: rgba(230, 149, 0, 0.12); color: var(--gold); }
.badge--glass { background: rgba(255, 255, 255, 0.14); color: #ffd9df; backdrop-filter: blur(12px); }
.badge--link { text-decoration: none; cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.badge--link:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-1px); }

.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); flex: none; }
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold-2); animation: pulse 1.6s var(--ease) infinite;
}
.pulse-dot--pink { background: #ffb1c0; }
.pulse-dot--pink::after { background: #ffb1c0; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.6); opacity: 0; } }

/* ---------- Section head ---------- */
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.section-head p { max-width: 560px; }
.section-head--start { align-items: flex-start; text-align: start; }
.section-head .badge { align-self: center; }
.section-head--start .badge { align-self: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.6rem; border-radius: var(--radius-lg); border: 0;
  font-size: 1rem; font-weight: 700; line-height: 1.2; text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-wine); }
.btn--primary:hover { background: var(--secondary); transform: translateY(-2px); }

.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #2a1a00; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn--light { background: #fff; color: var(--primary); box-shadow: var(--shadow-2); }
.btn--light:hover { background: var(--surface-high); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 1.5px var(--secondary); }
.btn--ghost:hover { background: rgba(88, 8, 36, 0.05); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 24px rgba(31, 170, 87, 0.32); }
.btn--wa:hover { background: var(--wa-2); transform: translateY(-2px); }
.btn--em { background: linear-gradient(135deg, #D62828, #A10614); color: #fff; box-shadow: 0 8px 24px rgba(214, 40, 40, 0.34); }
.btn--em:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn--glass-light { background: rgba(255, 255, 255, 0.12); color: #fff; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.25); }
.btn--glass-light:hover { background: rgba(255, 255, 255, 0.22); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn--block { width: 100%; }
.btn .mi { font-size: 1.35rem; }

/* ---------- Header / Nav ---------- */
/* Utility bar: hours + primary numbers + WhatsApp (hidden on mobile, where the call bar lives in the footer). */
.site-topbar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-2) 70%, var(--primary));
  color: #efd9e0; font-size: 0.84rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}
.site-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 0.6rem; }
.site-topbar-item { display: inline-flex; align-items: center; gap: 0.85rem; font-weight: 600; }
.site-topbar-item .material-symbols-outlined { color: var(--gold-2); font-size: 1.1rem; }
.site-topbar-item a { color: #fff; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: color 0.2s ease; }
.site-topbar-item a:hover { color: var(--gold-2); }
.site-topbar-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-2); display: inline-block; opacity: 0.7; }
@media (max-width: 767px) { .site-topbar { display: none; } }

/* Main sticky nav bar. */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(88, 8, 36, 0.08);
  transition: box-shadow 0.35s var(--ease), background 0.35s ease;
}
.site-header::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.0) 8%, rgba(245, 158, 11, 0.75) 45%, rgba(245, 158, 11, 0.75) 55%, rgba(245, 158, 11, 0.0) 92%, transparent);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px -8px rgba(88, 8, 36, 0.14), 0 4px 14px -2px rgba(26, 26, 36, 0.06);
}
.site-header.is-scrolled::after { opacity: 1; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: var(--header-h); transition: height 0.35s var(--ease);
}
.site-header.is-scrolled .header-inner { height: 64px; }

/* Logo + company branding (right side in RTL). */
.brand { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.brand img {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  box-shadow: 0 10px 24px rgba(88, 8, 36, 0.26);
  transition: transform 0.3s var(--ease);
}
.brand:hover img { transform: translateY(-2px); }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.brand-text strong {
  font-size: 1.06rem; font-weight: 800; color: var(--primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-text span {
  font-size: 0.74rem; font-weight: 600; color: var(--secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Desktop navigation (middle). */
.nav-desktop { display: none; }
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  position: relative; display: inline-flex; align-items: center;
  padding: 0.55rem 0.95rem; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700; color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0.28rem; left: 50%; right: 50%;
  height: 2px; background: var(--gold-2); border-radius: var(--radius-full);
  transition: left 0.25s var(--ease), right 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(88, 8, 36, 0.05); color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.is-active::after { left: 16px; right: 16px; }
.nav-links a.is-active { background: rgba(88, 8, 36, 0.09); color: var(--primary); }

/* Right cluster: language switch + call CTA + hamburger. */
.header-actions { display: flex; align-items: center; gap: 0.7rem; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.7rem; border-radius: var(--radius-full);
  background: var(--surface-low); font-size: 0.82rem; font-weight: 700;
  border: 1px solid rgba(88, 8, 36, 0.12);
}
.lang-switch a { color: var(--text-muted); padding: 0.08rem 0.42rem; border-radius: var(--radius-full); transition: all 0.2s ease; }
.lang-switch a.is-active { background: var(--primary); color: #fff; }
.lang-switch a:not(.is-active):hover { color: var(--primary); background: rgba(88, 8, 36, 0.06); }
.lang-switch .sep { color: var(--outline); opacity: 0.55; }

/* Header call button (single CTA linking to the contact page). */
.btn--nav { padding: 0.7rem 1.2rem; font-size: 0.94rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid rgba(88, 8, 36, 0.14);
  background: var(--card); color: var(--primary); border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-toggle:hover { background: var(--surface-low); }
.nav-toggle .material-symbols-outlined { font-size: 1.6rem; }

@media (min-width: 1200px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}
@media (min-width: 1200px) and (max-width: 1379px) {
  .nav-links a { padding: 0.5rem 0.7rem; font-size: 0.88rem; }
  .header-actions { gap: 0.5rem; }
  .header-btn-label { font-size: 0.9rem; }
}

/* Mobile header: tighter, logo + name + language + hamburger. */
@media (max-width: 1199.98px) {
  .header-inner { height: 68px; }
  .site-header.is-scrolled .header-inner { height: 62px; }
  .brand img { width: 42px; height: 42px; border-radius: 12px; }
  .brand-text strong { font-size: 0.98rem; }
  .brand-text span { display: none; }
  .header-actions { gap: 0.5rem; }
  .lang-switch { padding: 0.32rem 0.6rem; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  background: rgba(88, 8, 36, 0.5); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  margin-inline-start: auto; width: min(86vw, 340px); height: 100%;
  background: var(--card); box-shadow: var(--shadow-3);
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem;
  transform: translateX(105%); transition: transform 0.35s var(--ease);
}
[dir="ltr"] .mobile-nav-panel { margin-inline-start: auto; margin-inline-end: 0; transform: translateX(-105%); }
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.85rem; }
.mobile-nav-head .brand-text strong { font-size: 1rem; }
.mobile-nav-lang {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.45rem; border-radius: var(--radius-full);
  background: var(--surface-low); font-weight: 700; font-size: 0.85rem; margin-bottom: 0.9rem;
}
.mobile-nav-lang a { color: var(--text-muted); padding: 0.1rem 0.55rem; border-radius: var(--radius-full); transition: all 0.2s ease; }
.mobile-nav-lang a.is-active { background: var(--primary); color: #fff; }
.mobile-nav-lang .sep { color: var(--outline); opacity: 0.55; }
.mobile-nav a.m-nav-link {
  padding: 0.85rem 1rem; border-radius: var(--radius-lg); font-size: 1.1rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 0.75rem; transition: background 0.2s ease;
}
.mobile-nav a.m-nav-link .material-symbols-outlined { color: var(--secondary); }
.mobile-nav a.m-nav-link.is-active { background: var(--primary); color: #fff; }
.mobile-nav a.m-nav-link.is-active .material-symbols-outlined { color: #ffe0e8; }
.mobile-nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-2) 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transform: scale(1.02); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(56, 3, 21, 0.92) 0%, rgba(88, 8, 36, 0.72) 45%, rgba(56, 3, 21, 0.35) 100%);
}
[dir="ltr"] .hero-bg::after {
  background: linear-gradient(to top, rgba(56, 3, 21, 0.92) 0%, rgba(88, 8, 36, 0.72) 45%, rgba(56, 3, 21, 0.3) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 2.25rem;
  padding-block: 4rem 5rem;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.hero h1 { color: #fff; }
.hero .hero-sub { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 700; color: #ffb1c0; line-height: 1.5; }
.hero .hero-desc { max-width: 600px; color: #f3e3e7; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; }
.hero-eta {
  display: flex; align-items: center; gap: 0.9rem; padding-top: 0.5rem;
  color: rgba(255, 255, 255, 0.9); font-size: 0.95rem;
}
.hero-eta-box { width: 48px; height: 48px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.14); display: grid; place-items: center; flex: none; }
.hero-eta-box .mi { font-size: 1.5rem; color: #ffd9df; }
.hero-eta strong { color: #ffd9df; font-size: 1.1rem; }

.hero-card {
  border-radius: var(--radius-3xl); overflow: hidden;
  background: rgba(115, 14, 51, 0.65); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-3); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.hero-card-title { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.95rem; color: #fff; }
.hero-card-status { font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: var(--radius-full); background: var(--secondary); color: #fff; }
.hero-card-media { position: relative; height: 230px; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1rem; }
.hero-card-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(56, 3, 21, 0.9), transparent 55%); }
.hero-card-media-caption { position: absolute; inset-inline: 1rem; bottom: 0.9rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; z-index: 2; }
.hero-card-media-caption span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: #fff; }
.hero-card-media-caption .pill { font-size: 0.72rem; background: rgba(115, 14, 51, 0.9); border-radius: var(--radius-full); padding: 0.15rem 0.6rem; color: #ffd9df; }
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hero-card-stat { background: rgba(56, 3, 21, 0.5); border-radius: var(--radius-lg); padding: 0.8rem; text-align: center; }
.hero-card-stat strong { display: block; font-size: 1.25rem; color: #ffd9df; }
.hero-card-stat span { font-size: 0.8rem; color: #ead9dd; }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 7fr 5fr; align-items: center; padding-block: 5.5rem 7rem; }
  .hero-card-media { height: 240px; }
}

/* Benefits bar */
.benefits-strip { position: relative; z-index: 5; margin-top: -3rem; padding-bottom: 0.25rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.benefit-card {
  background: var(--card); border-radius: var(--radius-xl); padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-2);
  border: 1px solid rgba(88, 8, 36, 0.06); transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.benefit-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: none; }
.benefit-icon .mi { font-size: 1.8rem; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card); border-radius: var(--radius-3xl); padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--surface-high); color: var(--secondary);
  display: grid; place-items: center; flex: none; transition: background 0.3s ease, color 0.3s ease;
}
.service-icon .mi { font-size: 1.9rem; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-tag { font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: var(--radius-full); background: var(--surface-low); color: var(--text-muted); white-space: nowrap; }
.service-tag--hot { background: var(--error-bg); color: var(--secondary); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); }
.service-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding-top: 0.25rem; border-top: 1px solid rgba(88, 8, 36, 0.06); padding-top: 1.15rem; }
.link-request { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--secondary); font-weight: 700; font-size: 0.95rem; transition: color 0.2s ease, gap 0.2s ease; }
.link-request:hover { color: var(--primary); gap: 0.7rem; }
.link-request .mi { font-size: 1.15rem; }
[dir="rtl"] .link-request:hover .mi { transform: translateX(-3px); }
[dir="ltr"] .link-request:hover .mi { transform: translateX(3px); }
.service-hint { font-size: 0.78rem; color: var(--outline); font-weight: 700; }
a.service-hint:hover { color: var(--primary); text-decoration: underline; }

/* Service detail card (services page) */
.service-x-card {
  background: var(--card); border-radius: var(--radius-3xl); overflow: hidden;
  box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.06);
  display: grid; grid-template-columns: 1fr; transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.service-x-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.service-x-media { position: relative; height: 220px; overflow: hidden; }
.service-x-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-x-card:hover .service-x-media img { transform: scale(1.05); }
.service-x-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(56, 3, 21, 0.75), transparent 60%); }
.service-x-media .service-icon {
  position: absolute; bottom: 0.9rem; inset-inline-start: 1.1rem; z-index: 2;
  background: #fff; color: var(--secondary); width: 52px; height: 52px;
}
.service-x-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.service-x-body h3 { font-size: 1.3rem; }
.service-x-body p { font-size: 0.95rem; color: var(--text-muted); }
.service-x-foot { margin-top: auto; display: flex; gap: 0.7rem; padding-top: 1rem; flex-wrap: wrap; }
@media (min-width: 768px) {
  .service-x-media { height: 240px; }
}

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-media { position: relative; }
.why-media-img { border-radius: var(--radius-3xl); overflow: hidden; box-shadow: var(--shadow-3); }
.why-media-img img { width: 100%; height: 420px; object-fit: cover; }
.why-badge-card {
  position: absolute; bottom: 1.25rem; inset-inline: 1.25rem;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(14px);
  border-radius: var(--radius-xl); padding: 1rem 1.1rem;
  display: flex; align-items: center; gap: 0.9rem; box-shadow: var(--shadow-2);
}
.why-badge-card div:first-child { width: 48px; height: 48px; border-radius: var(--radius-lg); background: var(--primary); color: #fff; display: grid; place-items: center; flex: none; }
.why-badge-card strong { color: var(--primary); display: block; font-size: 1.05rem; }
.why-badge-card span { color: var(--text-muted); font-size: 0.88rem; }

.why-points { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin-top: 1.5rem; }
@media (min-width: 480px) { .why-points { grid-template-columns: 1fr 1fr; } }
.why-point { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--card); padding: 1rem 1.1rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-1); }
.why-point-icon { width: 42px; height: 42px; border-radius: 0.75rem; background: var(--primary-2); color: #ffd9df; display: grid; place-items: center; flex: none; }
.why-point-icon .mi { font-size: 1.35rem; }
.why-point h4 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.why-point p { font-size: 0.88rem; color: var(--text-muted); }

.hotline-banner {
  margin-top: 1.75rem; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-2));
  color: #fff; padding: 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-wine);
}
@media (min-width: 640px) { .hotline-banner { flex-direction: row; align-items: center; justify-content: space-between; } }
.hotline-banner .inner { display: flex; align-items: center; gap: 0.9rem; }
.hotline-banner .mi { font-size: 2.2rem; color: #ffb1c0; }
.hotline-banner strong { font-size: 1.15rem; display: block; }
.hotline-banner span { color: #ead9dd; font-size: 0.85rem; }

/* ---------- Area cards ---------- */
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-card {
  background: var(--card); border-radius: var(--radius-3xl); padding: 1.4rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.area-card-head { display: flex; align-items: center; gap: 0.7rem; }
.area-icon { width: 46px; height: 46px; border-radius: 0.9rem; background: var(--primary-2); color: #ffd9df; display: grid; place-items: center; flex: none; }
.area-icon .mi { font-size: 1.5rem; }
.area-card h3 { font-size: 1.1rem; margin-bottom: 0; }
.area-card p { font-size: 0.86rem; color: var(--text-muted); flex: 1; }
.area-card .btn { width: 100%; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.g-item { position: relative; border-radius: var(--radius-3xl); overflow: hidden; box-shadow: var(--shadow-1); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(56, 3, 21, 0.85), transparent 45%); opacity: 0.85; transition: opacity 0.3s ease; }
.g-item:hover::after { opacity: 1; }
.g-cap { position: absolute; inset-inline: 1.1rem; bottom: 1rem; z-index: 2; color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; transform: translateY(4px); opacity: 0.95; transition: transform 0.3s var(--ease); }
.g-item:hover .g-cap { transform: translateY(0); }
.g-cap .mi { color: var(--gold-2); font-size: 1.3rem; }
.g-tall { grid-row: span 2; }

@media (min-width: 1024px) {
  .g-item { height: 300px; }
  .g-sm { height: 260px; }
  .g-tall { height: auto; }
  .g-wide { grid-column: span 2; }
}


/* ---------- CTA dispatch ---------- */
.dispatch-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: stretch; }
@media (min-width: 1024px) { .dispatch-grid { grid-template-columns: 1fr 1fr; } }

.dispatch-panel {
  border-radius: var(--radius-3xl); background: linear-gradient(135deg, var(--primary-dark), var(--primary-2));
  color: #fff; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; box-shadow: var(--shadow-3);
}
.dispatch-panel h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1rem; }
.dispatch-panel > div > p { color: #ead9dd; max-width: 480px; }
.dispatch-rows { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.5rem; }
.dispatch-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 1.05rem 1.2rem; border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px);
  color: #fff; transition: background 0.25s ease, transform 0.25s ease;
}
.dispatch-row:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.dispatch-row .mi { font-size: 1.7rem; color: #ffb1c0; }
.dispatch-row strong { font-size: 1.2rem; color: #fff; }
.dispatch-row span { font-size: 0.82rem; color: #ead9dd; }
.dispatch-row .go { font-size: 1.5rem; color: #fff; opacity: 0.8; }
[dir="rtl"] .dispatch-row .go { transform: rotate(180deg); }
.dispatch-note { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: #ead9dd; }
.dispatch-note .mi { color: var(--gold-2); }

/* ---------- Forms ---------- */
.form-card { background: var(--card); border-radius: var(--radius-3xl); padding: 2rem; box-shadow: var(--shadow-2); border: 1px solid rgba(88, 8, 36, 0.05); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form-card > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.field { margin-bottom: 1.05rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--text); margin-bottom: 0.4rem; }
.field-inner { position: relative; }
.field-inner .mi { position: absolute; inset-inline-start: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1.25rem; pointer-events: none; }
.input, .select, .textarea {
  width: 100%; height: 52px; padding: 0.6rem 1rem;
  border-radius: var(--radius-lg); border: 1.5px solid #e5dfd7;
  background: #fffdf9; color: var(--text); font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field-inner .input, .field-inner .select { padding-inline-start: 3rem; }
.textarea { height: auto; min-height: 110px; resize: vertical; line-height: 1.6; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(88, 8, 36, 0.12); background: #fff; }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23580824' d='M4.5 6l3.5 3.5L11.5 6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: inset-inline-end 1rem center; }
[dir="ltr"] .select { background-position: right 1rem center; }
[dir="rtl"] .select { background-position: left 1rem center; cursor: pointer; }
.form-row2 { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 640px) { .form-row2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.78rem; color: var(--outline); margin-top: 0.6rem; }

/* honeypot - hidden from humans */
.hp-field { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.form-alert { display: none; border-radius: var(--radius-lg); padding: 0.95rem 1.2rem; font-weight: 600; font-size: 0.95rem; margin-bottom: 1.2rem; }
.form-alert.show { display: block; }
.form-alert--ok { background: #e6f7ee; color: #11622e; border: 1px solid #b7e7cb; }
.form-alert--err { background: var(--error-bg); color: #93000a; border: 1px solid #f5b3b3; }
.field.has-error .input, .field.has-error .select { border-color: var(--error); }
.field-err { display: none; color: var(--error); font-size: 0.8rem; font-weight: 600; margin-top: 0.25rem; }
.field.has-error .field-err { display: block; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--card); border-radius: var(--radius-3xl); padding: 1.6rem;
  box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.06);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.contact-card-icon { width: 54px; height: 54px; border-radius: var(--radius-lg); display: grid; place-items: center; font-size: 1.8rem; }
.contact-card-icon--primary { background: var(--primary); color: #fff; }
.contact-card-icon--gold { background: rgba(230, 149, 0, 0.14); color: var(--gold); }
.contact-card-icon--pink { background: var(--primary-soft); color: var(--primary); }
.contact-card-icon--green { background: rgba(31, 170, 87, 0.12); color: var(--wa); }
.contact-card h3 { font-size: 1.1rem; }
.contact-card p, .contact-card a.tel { font-size: 1.05rem; font-weight: 700; color: var(--primary); direction: ltr; unicode-bidi: isolate; }
.contact-card p.muted { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; direction: inherit; }
.contact-card .btn { width: 100%; margin-top: 0.35rem; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--primary-dark), var(--primary-2)); padding-block: 3.5rem; text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.page-hero p { color: #ead9dd; max-width: 620px; margin-inline: auto; font-size: 1.05rem; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.14;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.25'%3E%3Ccircle cx='40' cy='40' r='38' stroke-dasharray='3 3'/%3E%3Ccircle cx='40' cy='40' r='26' stroke-dasharray='2 5'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero.has-img { padding-block: 0; text-align: start; }
.page-hero.has-img .page-hero-media { position: absolute; inset: 0; }
.page-hero.has-img .page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero.has-img .page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(56, 3, 21, 0.82), rgba(88, 8, 36, 0.88)); }
.page-hero.has-img .container { padding-block: 5rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: #ffb1c0; font-weight: 600; }
.page-hero.has-img .breadcrumb { justify-content: flex-start; }
.breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Coverage network panel ---------- */
.coverage-panel {
  border-radius: var(--radius-3xl); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-2));
  color: #fff; min-height: 340px; display: grid; place-items: center; isolation: isolate;
}
.coverage-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.coverage-inner { text-align: center; padding: 3rem 1.5rem; max-width: 560px; }
.coverage-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.coverage-inner p { color: #ead9dd; }
.coverage-inner .badge--glass { margin-bottom: 1rem; }

/* ---------- Stats band ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 1.6rem 1rem; background: var(--card); border-radius: var(--radius-3xl); box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.05); }
.stat-card strong { display: block; font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--primary); font-weight: 800; }
.stat-card span { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Values chips ---------- */
.value-chip { display: flex; align-items: center; gap: 0.7rem; background: var(--card); padding: 1rem 1.2rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-1); font-weight: 700; color: var(--primary); }
.value-chip .mi { color: var(--secondary); font-size: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(160deg, var(--primary-dark), var(--primary-2) 60%, var(--primary)); color: #fff; padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand img { width: 58px; height: 58px; border-radius: 16px; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3); }
.footer-brand h3 { color: #fff; font-size: 1.05rem; margin: 0.85rem 0 0.25rem; line-height: 1.45; max-width: 320px; }
.footer-brand .footer-tag { color: var(--gold-2); font-size: 0.85rem; font-weight: 700; }
.footer-col h4 { color: #ffd9df; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: #e2ccd3; font-size: 0.93rem; transition: color 0.2s ease, padding 0.2s ease; }
.footer-col ul a:hover { color: #fff; }
[dir="rtl"] .footer-col ul a:hover { padding-inline-end: 0.3rem; }
[dir="ltr"] .footer-col ul a:hover { padding-inline-start: 0.3rem; }
.footer-col .footer-more {
  display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.8rem;
  color: var(--gold-2); font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: color 0.2s ease;
}
.footer-col .footer-more:hover { color: #fff; }
.footer-col .footer-more .material-symbols-outlined { font-size: 1.1rem; }
[dir="rtl"] .footer-col .footer-more .material-symbols-outlined { transform: scaleX(-1); }

.footer-contact-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.8rem;
  margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2ccd3; font-size: 0.93rem;
}
.footer-contact-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: #fff; font-weight: 700; text-decoration: none; transition: color 0.2s ease;
}
a.footer-contact-item:hover { color: var(--gold-2); }
.footer-contact-item .material-symbols-outlined { color: var(--gold-2); font-size: 1.2rem; }
.footer-contact-item[href] { direction: ltr; unicode-bidi: isolate; }

.footer-hours-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.1); padding: 0.4rem 0.9rem; border-radius: var(--radius-full); font-weight: 700; font-size: 0.88rem; margin-top: 0.55rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.14); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; }
.footer-bottom p { font-size: 0.86rem; color: #dcc3cc; }
.footer-bottom .mini-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem; }
.footer-bottom .mini-nav a { font-size: 0.85rem; color: #ffd9df; }
.footer-bottom .mini-nav a:hover { color: #fff; }

/* ---------- Floating buttons ---------- */
.emergency-float {
  position: fixed; bottom: 5.5rem; inset-inline-start: 1.1rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(135deg, #D62828, #A10614); color: #fff; padding: 0.85rem 1.25rem; border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(214, 40, 40, 0.42); font-weight: 700; font-size: 0.92rem;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.emergency-float:hover { transform: translateY(-3px); filter: brightness(1.08); }
.emergency-float .material-symbols-outlined { font-size: 1.5rem; }
@media (max-width: 767px) { .emergency-float { display: none; } }

.mobile-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  position: fixed; bottom: 0; inset-inline: 0; z-index: 80;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
  padding: 0.7rem; border-top: 1px solid rgba(88, 8, 36, 0.1);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.1);
}
.mobile-bar .btn { height: 50px; font-size: 1rem; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* Bottom padding so fixed bar never covers content */
body.has-mobile-bar { padding-bottom: 74px; }
@media (min-width: 768px) { body.has-mobile-bar { padding-bottom: 0; } }

/* ---------- Reveal animation (only when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } .g-item img, .hero-bg img, .slider-track { transition: none; } }

/* ---------- Slideshow carousel (real work photos) ---------- */
.slider { position: relative; max-width: 1080px; margin-inline: auto; }
.slider-viewport {
  position: relative; overflow: hidden; border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-3);
}
.slider-track { display: flex; will-change: transform; transition: transform 0.6s var(--ease); }
.slider-slide { flex: 0 0 100%; min-width: 0; position: relative; height: clamp(300px, 44vw, 520px); margin: 0; }
.slider-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 46px; height: 46px; border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35); background: rgba(56, 3, 21, 0.55);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(6px); transition: background 0.2s ease, transform 0.2s var(--ease);
}
.slider-nav:hover { background: rgba(56, 3, 21, 0.85); }
.slider-nav .material-symbols-outlined { font-size: 1.6rem; }
.slider-prev { inset-inline-start: 1rem; }
.slider-next { inset-inline-end: 1rem; }
[dir="rtl"] .slider-prev .material-symbols-outlined,
[dir="rtl"] .slider-next .material-symbols-outlined { transform: scaleX(-1); }
.slider-dots { display: flex; justify-content: center; align-items: center; gap: 0.6rem; margin-top: 1.1rem; }
.slider-dot {
  width: 10px; height: 10px; border-radius: var(--radius-full); border: 0; padding: 0;
  background: rgba(88, 8, 36, 0.18); cursor: pointer; transition: width 0.25s var(--ease), background 0.25s ease;
}
.slider-dot:hover { background: rgba(88, 8, 36, 0.4); }
.slider-dot.is-active { width: 26px; background: var(--primary); }
.no-js .slider-track { flex-direction: column; transform: none !important; }
.no-js .slider-nav, .no-js .slider-dots { display: none; }
.no-js .slider-slide { height: auto; }
.no-js .slider-slide img { height: auto; object-fit: contain; }
.no-js .slider-slide + .slider-slide { margin-top: 0.75rem; }
@media (max-width: 767px) {
  .slider-slide { height: clamp(240px, 62vw, 340px); }
  .slider-nav { width: 40px; height: 40px; }
  .slider-prev { inset-inline-start: 0.6rem; }
  .slider-next { inset-inline-end: 0.6rem; }
}

/* ---------- Misc helpers ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.flex-c { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.grid-12 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-12 { grid-template-columns: 5fr 7fr; align-items: start; } .grid-12--rev { grid-template-columns: 7fr 5fr; } }

.card { background: var(--card); border-radius: var(--radius-3xl); padding: 1.75rem; box-shadow: var(--shadow-1); border: 1px solid rgba(88, 8, 36, 0.05); }

.dark-block { background: linear-gradient(135deg, var(--primary-dark), var(--primary-2)); color: #fff; }
.dark-block h2 { color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
