*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #005a79;
  --brand-light: #007a9e;
  --brand-dark: #003d52;
  --brand-pale: #e6f3f8;
  --text: #111827;
  --muted: #667085;
  --line: rgba(0,90,121,0.14);
  --soft: #f7fafb;
  --shadow: 0 18px 60px rgba(0,45,60,0.12);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}
a { color: inherit; }
header, .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 66px;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 236px minmax(0,1fr) auto auto;
  align-items: center;
  gap: 18px;
}
.logo img { width: 228px; height: 46px; object-fit: contain; display: block; }
nav, .main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(22px,2.4vw,46px); min-width: 0; }
nav a, .main-nav a, .nav-trigger {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(14px,0.95vw,17px);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  cursor: default;
}
.main-nav a:hover, .main-nav a.active, nav a:hover, .nav-item:hover .nav-trigger, .nav-item:focus-within .nav-trigger { color: var(--brand); }
.nav-item { position: static; }
.simple-menu { position: relative; display: flex; align-items: center; height: 100%; }
.simple-menu .nav-trigger::after {
  content: '▾';
  font-size: 10px;
  margin-left: 6px;
  color: var(--brand);
}
.simple-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1100;
  min-width: 260px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.simple-menu:hover .dropdown-menu, .simple-menu:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.service-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.service-dropdown a:hover { background: var(--brand-pale); color: var(--brand); }
.mega-menu {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  padding: 24px 40px 28px;
  background: #fff;
  border-top: 1px solid rgba(0,90,121,0.08);
  border-bottom: 1px solid rgba(0,90,121,0.12);
  box-shadow: 0 24px 70px rgba(0,45,60,0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: minmax(210px,0.75fr) repeat(3,minmax(220px,1fr));
  gap: clamp(28px,4vw,70px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}
.mega-intro h3, .mega-col h4 {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: clamp(16px,1.05vw,21px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.mega-intro p {
  font-size: clamp(15px,1.1vw,20px);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.mega-intro strong { display: block; font-size: 13px; color: var(--text); margin-top: 12px; }
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mega-col a {
  display: block;
  padding: 0;
  color: var(--text);
  font-size: clamp(12px,0.78vw,15px);
  font-weight: 400;
  line-height: 1.35;
  white-space: normal;
  text-decoration: none;
}
.mega-col a:hover { color: var(--brand); }
.mega-img { width: 100%; height: 92px; object-fit: cover; display: block; margin-top: 14px; }
.lang, .lang-current {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
  background: white;
}
.lang-switch { position: relative; align-self: center; }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 82px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: block; padding: 7px 9px; border-radius: 8px; color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; }
.lang-menu a:hover { background: var(--brand-pale); color: var(--brand); }
.header-cta {
  align-self: center;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.quote, .header-cta {
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(0,90,121,0.25);
}

/* Header style matched to hayyak.html */
header, .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,90,121,0.07);
}
header.scrolled, .site-header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 12px rgba(0,90,121,0.08);
}
header > .logo, .site-header > .logo {
  display: flex;
  width: 118px;
  flex: 0 0 118px;
  align-items: center;
  white-space: nowrap;
}
header > .logo img, .site-header > .logo img {
  width: 112px;
  height: 58px;
  object-fit: contain;
}
nav, .main-nav {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 26px);
}
nav a, .main-nav a, .nav-trigger {
  height: auto;
  padding: 10px 12px;
  border-radius: 100px;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  letter-spacing: -0.1px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, .main-nav a:hover, .main-nav a.active, .nav-item:hover .nav-trigger, .nav-item:focus-within .nav-trigger {
  background: var(--brand-pale);
  color: var(--brand);
}
.simple-menu {
  height: auto;
  position: relative;
}
.simple-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.simple-menu .dropdown-menu {
  top: calc(100% + 14px);
  left: 0;
  transform: translateY(8px);
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0,90,121,0.16);
}
.simple-menu:hover .dropdown-menu, .simple-menu:focus-within .dropdown-menu {
  transform: translateY(0);
}
.service-dropdown a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
}
.lang-current {
  padding: 7px 11px;
  box-shadow: none;
}
.header-cta {
  padding: 9px 18px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0,90,121,0.3);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.header-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,90,121,0.4);
}
.ai-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(0,90,121,0.22);
  border-radius: 0;
  background: rgba(255,255,255,0.72);
  color: var(--brand);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,90,121,0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ai-cta:hover {
  background: var(--brand-pale);
  border-color: rgba(0,90,121,0.34);
  transform: translateY(-1px);
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 38px;
  width: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255,255,255,0.64);
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.menu-toggle:hover {
  background: var(--brand-pale);
  border-color: rgba(0,90,121,0.24);
  color: var(--brand);
}
.menu-toggle-lines {
  display: inline-grid;
  gap: 4px;
}
.menu-toggle-lines span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0,24,34,0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s, visibility 0.24s;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 28px;
  background: #ffffff;
  box-shadow: -24px 0 70px rgba(0,45,60,0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}
.side-drawer.open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.drawer-head img {
  width: 156px;
  height: 42px;
  object-fit: contain;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.drawer-links {
  display: grid;
  gap: 4px;
}
.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,90,121,0.1);
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}
.drawer-links a::after {
  content: '›';
  color: var(--brand);
  font-size: 24px;
}
.drawer-links a:hover {
  color: var(--brand);
}
header > .lang-switch,
header > .header-cta,
header > .ai-cta,
header > .menu-toggle,
.site-header > .lang-switch,
.site-header > .header-cta,
.site-header > .ai-cta,
.site-header > .menu-toggle {
  flex: 0 0 auto;
  align-self: center;
}
.lang-switch {
  display: flex;
  align-items: center;
}
.lang-current,
.header-cta,
.ai-cta,
.menu-toggle {
  height: 46px;
  border-radius: 0;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  padding: 0;
  border: 1px solid rgba(0,90,121,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}
.lang-menu {
  display: none;
}
.header-cta,
.ai-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  width: 46px;
  line-height: 0;
}
.menu-toggle-lines {
  place-items: center;
}
.hero {
  min-height: 440px;
  padding: 120px 32px 70px;
  display: grid;
  align-items: end;
  background: linear-gradient(120deg, rgba(0,45,60,0.78), rgba(0,90,121,0.48)), var(--hero-image) center/cover;
  color: white;
}
.hero-inner, .section-inner { max-width: 1180px; width: 100%; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7de8f0;
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h1 { max-width: 820px; font-size: clamp(42px,6vw,76px); margin-bottom: 18px; }
.hero p { max-width: 680px; font-size: 18px; color: rgba(255,255,255,0.86); }
section { padding: 82px 32px; }
.section-title { max-width: 780px; margin-bottom: 36px; }
.section-title h2 { font-size: clamp(32px,4vw,52px); margin-bottom: 14px; }
.section-title p { color: var(--muted); font-size: 17px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,45,60,0.06);
}
.card h3 { font-size: 24px; margin-bottom: 12px; color: var(--brand-dark); }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card ul { list-style: none; display: grid; gap: 8px; margin-top: 14px; }
.card li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-right: 8px; vertical-align: middle; }
.feature-img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.band { background: var(--soft); }
.stat { text-align: center; padding: 24px; border-top: 3px solid var(--brand); background: white; }
.stat strong { display: block; font-size: 34px; color: var(--brand); font-family: 'Playfair Display', Georgia, serif; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.media-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--brand-dark);
  color: white;
  box-shadow: var(--shadow);
}
.media-tile.tall { min-height: 420px; grid-row: span 2; }
.media-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.media-tile:hover img { transform: scale(1.04); opacity: 0.68; }
.media-tile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,31,42,0.92));
}
.media-tile h3 { font-size: 24px; margin-bottom: 6px; }
.media-tile p { color: rgba(255,255,255,0.78); font-size: 14.5px; }
.project-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
}
.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-row span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--brand-pale);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.steps {
  counter-reset: step;
}
.step-card {
  position: relative;
  padding-top: 54px;
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}
.cta {
  background: var(--brand-dark);
  color: white;
  text-align: center;
}
.cta h2 { font-size: clamp(32px,4vw,52px); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.74); margin-bottom: 28px; }
.btn {
  display: inline-flex;
  background: white;
  color: var(--brand);
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
}
footer {
  padding: 80px 24px 0;
  background: #011f2a;
  color: white;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 28px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--brand-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14.5px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col ul li a:hover { color: white; }
.eco-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,200,100,0.12); border: 1px solid rgba(0,200,100,0.2); color: #4ade80; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 8px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 12px 20px; color: white; font-family: inherit; font-size: 14px; outline: none; }
.newsletter-form button { background: var(--brand); color: white; border: none; border-radius: 100px; padding: 12px 22px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p, .footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
footer img { width: 132px; height: 42px; object-fit: contain; }
@media (max-width: 1100px) {
  .site-header, header { grid-template-columns: auto auto auto; }
  .main-nav, nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 780px) {
  .grid-2, .grid-3, .grid-4, .media-grid, .project-card { grid-template-columns: 1fr; }
  .media-tile, .media-tile.tall { min-height: 280px; grid-row: auto; }
  section { padding: 62px 22px; }
  .hero { padding: 110px 22px 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* NSBA-style clean white header */
header#site-header, .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 58px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,90,121,0.1);
  box-shadow: 0 1px 0 rgba(0,90,121,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
header#site-header.scrolled, .site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,90,121,0.08);
}
header#site-header > .logo, .site-header > .logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 126px;
  flex: 0 0 126px;
  height: 58px;
}
header#site-header > .logo img, .site-header > .logo img {
  width: auto;
  height: 44px;
  max-width: 126px;
  object-fit: contain;
}
header#site-header nav, .site-header nav {
  height: 58px;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
header#site-header nav a, .site-header nav a {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 0.15s, border-color 0.15s;
}
header#site-header nav a:hover, .site-header nav a:hover {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
header#site-header > .lang-switch,
header#site-header > .header-cta,
header#site-header > .ai-cta,
header#site-header > .menu-toggle,
.site-header > .lang-switch,
.site-header > .header-cta,
.site-header > .ai-cta,
.site-header > .menu-toggle {
  align-self: center;
  flex: 0 0 auto;
  margin: 0;
}
header#site-header .lang-current,
header#site-header .header-cta,
header#site-header .ai-cta,
header#site-header .menu-toggle,
.site-header .lang-current,
.site-header .header-cta,
.site-header .ai-cta,
.site-header .menu-toggle {
  height: 38px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header#site-header .lang-current, .site-header .lang-current {
  width: 38px;
  padding: 0;
  border: 1px solid rgba(0,90,121,0.16);
  background: #f7fafb;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
header#site-header .header-cta, .site-header .header-cta {
  min-width: 132px;
  padding: 0 22px;
  background: var(--brand);
  color: #ffffff;
  border: 1px solid var(--brand);
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
}
header#site-header .ai-cta, .site-header .ai-cta {
  min-width: 130px;
  padding: 0 20px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  animation: hayyakAiBorderPulse 4s ease-in-out infinite;
}
header#site-header .ai-cta:hover, .site-header .ai-cta:hover {
  background: rgba(0,90,121,0.06);
  color: var(--brand-dark);
  box-shadow: 0 0 0 1px rgba(0,90,121,0.08);
}
header#site-header .menu-toggle, .site-header .menu-toggle {
  width: 38px;
  padding: 0;
  border: 1px solid rgba(0,90,121,0.18);
  background: #f7fafb;
  color: var(--text);
  box-shadow: none;
  line-height: 0;
}
header#site-header .menu-toggle-lines, .site-header .menu-toggle-lines {
  display: inline-grid;
  gap: 4px;
  place-items: center;
}
header#site-header .menu-toggle-lines span, .site-header .menu-toggle-lines span {
  width: 18px;
  height: 2px;
  background: currentColor;
}
header#site-header .lang-menu, .site-header .lang-menu {
  display: none;
}
.side-drawer {
  width: min(410px, 90vw);
  height: 100dvh;
  padding: 22px 28px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer-head {
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,90,121,0.1);
}
.drawer-head img {
  width: 178px;
  height: 50px;
  object-fit: contain;
}
.drawer-close {
  width: 40px;
  height: 40px;
  border-color: rgba(0,90,121,0.14);
  color: var(--brand);
  font-size: 26px;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.drawer-close:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}
.drawer-links {
  gap: 0 !important;
  row-gap: 0 !important;
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.drawer-links::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.drawer-group {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(0,90,121,0.1);
}
.drawer-group.open {
  padding-bottom: 6px !important;
}
.drawer-main {
  width: 100%;
  min-height: 0 !important;
  height: 44px !important;
  padding: 0 2px !important;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  line-height: 1.1;
  transition: color 0.16s;
}
.drawer-main::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--brand);
  transform: rotate(45deg);
  transition: transform 0.18s, color 0.16s;
}
.drawer-group.open .drawer-main::after {
  transform: rotate(225deg);
}
.drawer-submenu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.18s ease, padding 0.18s ease;
}
.drawer-group.open .drawer-submenu {
  max-height: 720px;
  padding: 0 0 6px;
  opacity: 1;
}
.drawer-section {
  display: grid;
  gap: 5px;
}
.drawer-section-title {
  padding: 6px 8px 0;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.drawer-submenu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(0,90,121,0.1);
  background: #f7fafb;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.16s, border-color 0.16s, color 0.16s;
}
.drawer-submenu a::after {
  content: none;
}
.drawer-submenu a:hover,
.drawer-main:hover {
  color: var(--brand);
}
.drawer-submenu a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}
@keyframes hayyakAiBorderPulse {
  0%, 100% { border-color: var(--brand); }
  33% { border-color: #1f9cb7; }
  66% { border-color: #f5a623; }
}
@media (prefers-reduced-motion: reduce) {
  header#site-header .ai-cta, .site-header .ai-cta {
    animation: none;
    border-color: var(--brand);
  }
}
@media (max-width: 1200px) {
  header#site-header, .site-header {
    padding: 0 20px;
    gap: 10px;
  }
  header#site-header > .logo, .site-header > .logo {
    width: 108px;
    flex-basis: 108px;
  }
  header#site-header > .logo img, .site-header > .logo img {
    height: 40px;
    max-width: 108px;
  }
  header#site-header nav a, .site-header nav a {
    padding: 0 12px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  header#site-header nav, .site-header nav {
    display: none;
  }
}
