/* =========================================================
   AL TAMAM FIRE & SECURITY — MAIN STYLESHEET
   Palette, layout and components are provisional and can be
   swapped once real brand guidelines are supplied.
   ========================================================= */

:root {
  --navy: #0b1b2b;
  --navy-light: #13293f;
  --navy-lighter: #1c3550;
  --red: #d8232a;
  --red-dark: #a91820;
  --gold: #c9a227;
  --white: #ffffff;
  --light: #f4f6f8;
  --light-2: #eceff2;
  --gray: #6b7280;
  --gray-light: #9aa3af;
  --border: #e5e7eb;
  --text: #16202c;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(11, 27, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 27, 43, 0.16);
  --container: 1200px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--gray); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(216,35,42,0.28); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  font-size: 10.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.6); transition: color var(--transition); white-space: nowrap; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--red); }
.topbar-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(216,35,42,0.15); border: 1px solid rgba(216,35,42,0.3);
  border-radius: 4px; padding: 3px 8px;
  font-size: 10px; font-weight: 700;
  color: rgba(216,35,42,0.9); letter-spacing: 0.5px; text-transform: uppercase;
}
.topbar-badge svg { width: 10px; height: 10px; color: rgba(216,35,42,0.9); }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(11,27,43,0.14), 0 1px 4px rgba(11,27,43,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  overflow: hidden;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; min-width: 0; }
.logo-img { width: 84px; height: 84px; object-fit: contain; display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.logo-text .primary { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.logo-text .secondary { font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; color: var(--navy); text-transform: uppercase; opacity: 0.65; margin-top: 2px; line-height: 1.4; }

.main-nav ul { display: flex; align-items: center; list-style: none; gap: 4px; }
.main-nav a {
  font-size: 14px; font-weight: 600;
  color: var(--navy); text-decoration: none;
  padding: 8px 13px; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.2px; white-space: nowrap;
}
.main-nav a:hover { background: var(--light); color: var(--red); }
.main-nav a.active { color: var(--red); background: rgba(216,35,42,0.06); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-emergency {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--navy);
  font-size: 13px; font-weight: 700; font-family: var(--font-head);
  padding: 9px 15px; border-radius: 7px;
  border: 1.5px solid var(--border); text-decoration: none;
  cursor: pointer; transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-emergency:hover { border-color: var(--navy); }
.btn-emergency svg { width: 14px; height: 14px; color: var(--red); }
.btn-quote {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: var(--white);
  font-size: 13.5px; font-weight: 700; font-family: var(--font-head);
  padding: 10px 20px; border-radius: 7px;
  border: none; text-decoration: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-quote:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-quote svg { width: 15px; height: 15px; }

.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--navy);
  font-size: 13px; font-weight: 700; font-family: var(--font-head);
  padding: 9px 14px; border-radius: 7px;
  border: 1.5px solid var(--border);
  cursor: pointer; transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--navy); }
.lang-toggle-mobile { display: none; }
.mobile-nav .lang-toggle { width: 100%; margin-top: 14px; color: var(--white); border-color: rgba(255,255,255,0.3); font-size: 16px; padding: 12px; }

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] body, [dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .btn, [dir="rtl"] .main-nav a, [dir="rtl"] .logo-text .primary {
  font-family: 'Tajawal', 'Segoe UI', sans-serif;
}
[dir="rtl"] * { letter-spacing: 0 !important; }
[dir="rtl"] .section-head:not(.center) { text-align: right; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-lighter) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(216,35,42,0.35), transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: -25% 0;
  opacity: 0.05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M10.3 -24.9 7.8 -7.8 24.9 -10.3 11.0 -0.0 24.9 10.3 7.8 7.8 10.3 24.9 0.0 11.0 -10.3 24.9 -7.8 7.8 -24.9 10.3 -11.0 0.0 -24.9 -10.3 -7.8 -7.8 -10.3 -24.9 -0.0 -11.0Z M0.0 -27.0 27.0 -0.0 0.0 27.0 -27.0 0.0Z M19.1 -19.1 19.1 19.1 -19.1 19.1 -19.1 -19.1Z M13.8 -33.3 33.3 -13.8 33.3 13.8 13.8 33.3 -13.8 33.3 -33.3 13.8 -33.3 -13.8 -13.8 -33.3Z M0.0 -52.0 15.3 -37.0 36.8 -36.8 37.0 -15.3 52.0 -0.0 37.0 15.3 36.8 36.8 15.3 37.0 0.0 52.0 -15.3 37.0 -36.8 36.8 -37.0 15.3 -52.0 0.0 -37.0 -15.3 -36.8 -36.8 -15.3 -37.0Z M130.3 -24.9 127.8 -7.8 144.9 -10.3 131.0 -0.0 144.9 10.3 127.8 7.8 130.3 24.9 120.0 11.0 109.7 24.9 112.2 7.8 95.1 10.3 109.0 0.0 95.1 -10.3 112.2 -7.8 109.7 -24.9 120.0 -11.0Z M120.0 -27.0 147.0 -0.0 120.0 27.0 93.0 0.0Z M139.1 -19.1 139.1 19.1 100.9 19.1 100.9 -19.1Z M133.8 -33.3 153.3 -13.8 153.3 13.8 133.8 33.3 106.2 33.3 86.7 13.8 86.7 -13.8 106.2 -33.3Z M120.0 -52.0 135.3 -37.0 156.8 -36.8 157.0 -15.3 172.0 -0.0 157.0 15.3 156.8 36.8 135.3 37.0 120.0 52.0 104.7 37.0 83.2 36.8 83.0 15.3 68.0 0.0 83.0 -15.3 83.2 -36.8 104.7 -37.0Z M10.3 95.1 7.8 112.2 24.9 109.7 11.0 120.0 24.9 130.3 7.8 127.8 10.3 144.9 0.0 131.0 -10.3 144.9 -7.8 127.8 -24.9 130.3 -11.0 120.0 -24.9 109.7 -7.8 112.2 -10.3 95.1 -0.0 109.0Z M0.0 93.0 27.0 120.0 0.0 147.0 -27.0 120.0Z M19.1 100.9 19.1 139.1 -19.1 139.1 -19.1 100.9Z M13.8 86.7 33.3 106.2 33.3 133.8 13.8 153.3 -13.8 153.3 -33.3 133.8 -33.3 106.2 -13.8 86.7Z M0.0 68.0 15.3 83.0 36.8 83.2 37.0 104.7 52.0 120.0 37.0 135.3 36.8 156.8 15.3 157.0 0.0 172.0 -15.3 157.0 -36.8 156.8 -37.0 135.3 -52.0 120.0 -37.0 104.7 -36.8 83.2 -15.3 83.0Z M130.3 95.1 127.8 112.2 144.9 109.7 131.0 120.0 144.9 130.3 127.8 127.8 130.3 144.9 120.0 131.0 109.7 144.9 112.2 127.8 95.1 130.3 109.0 120.0 95.1 109.7 112.2 112.2 109.7 95.1 120.0 109.0Z M120.0 93.0 147.0 120.0 120.0 147.0 93.0 120.0Z M139.1 100.9 139.1 139.1 100.9 139.1 100.9 100.9Z M133.8 86.7 153.3 106.2 153.3 133.8 133.8 153.3 106.2 153.3 86.7 133.8 86.7 106.2 106.2 86.7Z M120.0 68.0 135.3 83.0 156.8 83.2 157.0 104.7 172.0 120.0 157.0 135.3 156.8 156.8 135.3 157.0 120.0 172.0 104.7 157.0 83.2 156.8 83.0 135.3 68.0 120.0 83.0 104.7 83.2 83.2 104.7 83.0Z M70.3 35.1 67.8 52.2 84.9 49.7 71.0 60.0 84.9 70.3 67.8 67.8 70.3 84.9 60.0 71.0 49.7 84.9 52.2 67.8 35.1 70.3 49.0 60.0 35.1 49.7 52.2 52.2 49.7 35.1 60.0 49.0Z M60.0 33.0 87.0 60.0 60.0 87.0 33.0 60.0Z M79.1 40.9 79.1 79.1 40.9 79.1 40.9 40.9Z M73.8 26.7 93.3 46.2 93.3 73.8 73.8 93.3 46.2 93.3 26.7 73.8 26.7 46.2 46.2 26.7Z M60.0 8.0 75.3 23.0 96.8 23.2 97.0 44.7 112.0 60.0 97.0 75.3 96.8 96.8 75.3 97.0 60.0 112.0 44.7 97.0 23.2 96.8 23.0 75.3 8.0 60.0 23.0 44.7 23.2 23.2 44.7 23.0Z M60.0 -17.0 66.0 -6.0 77.0 0.0 66.0 6.0 60.0 17.0 54.0 6.0 43.0 0.0 54.0 -6.0Z M64.9 -4.9 64.9 4.9 55.1 4.9 55.1 -4.9Z M0.0 43.0 6.0 54.0 17.0 60.0 6.0 66.0 0.0 77.0 -6.0 66.0 -17.0 60.0 -6.0 54.0Z M4.9 55.1 4.9 64.9 -4.9 64.9 -4.9 55.1Z M120.0 43.0 126.0 54.0 137.0 60.0 126.0 66.0 120.0 77.0 114.0 66.0 103.0 60.0 114.0 54.0Z M124.9 55.1 124.9 64.9 115.1 64.9 115.1 55.1Z M60.0 103.0 66.0 114.0 77.0 120.0 66.0 126.0 60.0 137.0 54.0 126.0 43.0 120.0 54.0 114.0Z M64.9 115.1 64.9 124.9 55.1 124.9 55.1 115.1Z M25.5 25.5L34.5 34.5 M94.5 25.5L85.5 34.5 M25.5 94.5L34.5 85.5 M94.5 94.5L85.5 85.5" fill="none" stroke="white" stroke-width="1.1"/></svg>');
  background-size: 120px 120px;
  transform: translateY(var(--plx, 0px));
  will-change: transform;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 17px; }

/* ---------- Home Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-light) 55%, #1a3350 100%);
  color: var(--white);
  overflow: hidden;
  padding: 130px 0 110px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(216,35,42,0.30), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,162,39,0.18), transparent 40%);
}
.hero-pattern {
  position: absolute; inset: -20% 0;
  opacity: 0.055;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M10.3 -24.9 7.8 -7.8 24.9 -10.3 11.0 -0.0 24.9 10.3 7.8 7.8 10.3 24.9 0.0 11.0 -10.3 24.9 -7.8 7.8 -24.9 10.3 -11.0 0.0 -24.9 -10.3 -7.8 -7.8 -10.3 -24.9 -0.0 -11.0Z M0.0 -27.0 27.0 -0.0 0.0 27.0 -27.0 0.0Z M19.1 -19.1 19.1 19.1 -19.1 19.1 -19.1 -19.1Z M13.8 -33.3 33.3 -13.8 33.3 13.8 13.8 33.3 -13.8 33.3 -33.3 13.8 -33.3 -13.8 -13.8 -33.3Z M0.0 -52.0 15.3 -37.0 36.8 -36.8 37.0 -15.3 52.0 -0.0 37.0 15.3 36.8 36.8 15.3 37.0 0.0 52.0 -15.3 37.0 -36.8 36.8 -37.0 15.3 -52.0 0.0 -37.0 -15.3 -36.8 -36.8 -15.3 -37.0Z M130.3 -24.9 127.8 -7.8 144.9 -10.3 131.0 -0.0 144.9 10.3 127.8 7.8 130.3 24.9 120.0 11.0 109.7 24.9 112.2 7.8 95.1 10.3 109.0 0.0 95.1 -10.3 112.2 -7.8 109.7 -24.9 120.0 -11.0Z M120.0 -27.0 147.0 -0.0 120.0 27.0 93.0 0.0Z M139.1 -19.1 139.1 19.1 100.9 19.1 100.9 -19.1Z M133.8 -33.3 153.3 -13.8 153.3 13.8 133.8 33.3 106.2 33.3 86.7 13.8 86.7 -13.8 106.2 -33.3Z M120.0 -52.0 135.3 -37.0 156.8 -36.8 157.0 -15.3 172.0 -0.0 157.0 15.3 156.8 36.8 135.3 37.0 120.0 52.0 104.7 37.0 83.2 36.8 83.0 15.3 68.0 0.0 83.0 -15.3 83.2 -36.8 104.7 -37.0Z M10.3 95.1 7.8 112.2 24.9 109.7 11.0 120.0 24.9 130.3 7.8 127.8 10.3 144.9 0.0 131.0 -10.3 144.9 -7.8 127.8 -24.9 130.3 -11.0 120.0 -24.9 109.7 -7.8 112.2 -10.3 95.1 -0.0 109.0Z M0.0 93.0 27.0 120.0 0.0 147.0 -27.0 120.0Z M19.1 100.9 19.1 139.1 -19.1 139.1 -19.1 100.9Z M13.8 86.7 33.3 106.2 33.3 133.8 13.8 153.3 -13.8 153.3 -33.3 133.8 -33.3 106.2 -13.8 86.7Z M0.0 68.0 15.3 83.0 36.8 83.2 37.0 104.7 52.0 120.0 37.0 135.3 36.8 156.8 15.3 157.0 0.0 172.0 -15.3 157.0 -36.8 156.8 -37.0 135.3 -52.0 120.0 -37.0 104.7 -36.8 83.2 -15.3 83.0Z M130.3 95.1 127.8 112.2 144.9 109.7 131.0 120.0 144.9 130.3 127.8 127.8 130.3 144.9 120.0 131.0 109.7 144.9 112.2 127.8 95.1 130.3 109.0 120.0 95.1 109.7 112.2 112.2 109.7 95.1 120.0 109.0Z M120.0 93.0 147.0 120.0 120.0 147.0 93.0 120.0Z M139.1 100.9 139.1 139.1 100.9 139.1 100.9 100.9Z M133.8 86.7 153.3 106.2 153.3 133.8 133.8 153.3 106.2 153.3 86.7 133.8 86.7 106.2 106.2 86.7Z M120.0 68.0 135.3 83.0 156.8 83.2 157.0 104.7 172.0 120.0 157.0 135.3 156.8 156.8 135.3 157.0 120.0 172.0 104.7 157.0 83.2 156.8 83.0 135.3 68.0 120.0 83.0 104.7 83.2 83.2 104.7 83.0Z M70.3 35.1 67.8 52.2 84.9 49.7 71.0 60.0 84.9 70.3 67.8 67.8 70.3 84.9 60.0 71.0 49.7 84.9 52.2 67.8 35.1 70.3 49.0 60.0 35.1 49.7 52.2 52.2 49.7 35.1 60.0 49.0Z M60.0 33.0 87.0 60.0 60.0 87.0 33.0 60.0Z M79.1 40.9 79.1 79.1 40.9 79.1 40.9 40.9Z M73.8 26.7 93.3 46.2 93.3 73.8 73.8 93.3 46.2 93.3 26.7 73.8 26.7 46.2 46.2 26.7Z M60.0 8.0 75.3 23.0 96.8 23.2 97.0 44.7 112.0 60.0 97.0 75.3 96.8 96.8 75.3 97.0 60.0 112.0 44.7 97.0 23.2 96.8 23.0 75.3 8.0 60.0 23.0 44.7 23.2 23.2 44.7 23.0Z M60.0 -17.0 66.0 -6.0 77.0 0.0 66.0 6.0 60.0 17.0 54.0 6.0 43.0 0.0 54.0 -6.0Z M64.9 -4.9 64.9 4.9 55.1 4.9 55.1 -4.9Z M0.0 43.0 6.0 54.0 17.0 60.0 6.0 66.0 0.0 77.0 -6.0 66.0 -17.0 60.0 -6.0 54.0Z M4.9 55.1 4.9 64.9 -4.9 64.9 -4.9 55.1Z M120.0 43.0 126.0 54.0 137.0 60.0 126.0 66.0 120.0 77.0 114.0 66.0 103.0 60.0 114.0 54.0Z M124.9 55.1 124.9 64.9 115.1 64.9 115.1 55.1Z M60.0 103.0 66.0 114.0 77.0 120.0 66.0 126.0 60.0 137.0 54.0 126.0 43.0 120.0 54.0 114.0Z M64.9 115.1 64.9 124.9 55.1 124.9 55.1 115.1Z M25.5 25.5L34.5 34.5 M94.5 25.5L85.5 34.5 M25.5 94.5L34.5 85.5 M94.5 94.5L85.5 85.5" fill="none" stroke="white" stroke-width="1.1"/></svg>');
  background-size: 120px 120px;
  will-change: transform;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold); }
.hero h1 { color: var(--white); font-size: clamp(34px, 4.8vw, 54px); margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(6px);
}
.hero-visual .visual-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hero-visual .visual-icon svg { width: 32px; height: 32px; color: #fff; }
.hero-visual h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.hero-visual p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 22px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-stats .stat { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 16px; }
.hero-stats .stat b { display: block; font-size: 26px; color: var(--white); font-family: var(--font-head); }
.hero-stats .stat span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ---------- Marquee / trust strip ---------- */
.trust-strip { background: var(--light); padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.trust-strip p { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badges span { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 14px; opacity: 0.75; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }

.icon-box {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(216,35,42,0.12), rgba(216,35,42,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.icon-box svg { width: 28px; height: 28px; color: var(--red); }

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 15px; margin-bottom: 16px; }
.card .link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--navy); }
.card .link-arrow svg { width: 15px; height: 15px; transition: transform var(--transition); }
.card:hover .link-arrow svg { transform: translateX(4px); }

.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-item {
  text-align: center;
  padding: 30px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.industry-item:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }
.industry-item .icon-box { margin: 0 auto 16px; }
.industry-item h4 { font-size: 15px; font-family: var(--font-head); font-weight: 600; }

/* ---------- Why choose us ---------- */
.feature-row { display: flex; gap: 20px; margin-bottom: 30px; }
.feature-row .icon-box { flex-shrink: 0; margin-bottom: 0; width: 50px; height: 50px; }
.feature-row .icon-box svg { width: 24px; height: 24px; }
.feature-row h4 { font-size: 17px; margin-bottom: 6px; }
.feature-row p { color: var(--gray); font-size: 14.5px; }

/* ---------- Stats ---------- */
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(216,35,42,0.25), transparent 50%);
}
.stats-band .container { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-band .stat b { display: block; font-family: var(--font-head); font-size: 42px; color: var(--white); }
.stats-band .stat span { font-size: 14px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 56px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ---------- Timeline / process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; padding: 30px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.process-step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 18px;
}
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray); }

/* ---------- Certifications strip ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cert-chip {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

/* ---------- Values ---------- */
.value-card { text-align: center; padding: 20px; }

/* ---------- Products ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-thumb {
  height: 160px;
  background: linear-gradient(135deg, #0b1b2b 0%, #13293f 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 35, 42, 0.1);
}
.product-thumb svg {
  width: 72px; height: 72px;
  stroke: #ffffff !important;
  color: #ffffff !important;
  stroke-width: 1.5;
  opacity: 1;
  flex-shrink: 0;
}
.product-thumb::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.product-thumb.has-photo { background: #f0f4f8; }
.product-thumb.has-photo svg { display: none; }
.product-thumb.has-photo::after { display: none; }
.product-body { padding: 24px; }
.product-body h3 { font-size: 17px; margin-bottom: 8px; }
.product-body p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-tags span { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--red); background: rgba(216,35,42,0.08); padding: 4px 10px; border-radius: 20px; }

/* ---------- Projects ---------- */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--navy);
  min-height: 320px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--border);
}
.project-thumb {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-lighter), var(--navy) 70%);
}
.project-thumb::after {
  content: 'Project photo placeholder';
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.project-thumb.has-photo::after { display: none; }
.project-body {
  position: relative; z-index: 2;
  padding: 26px;
  color: var(--white);
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.project-body span.tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.project-body h3 { color: var(--white); font-size: 19px; margin-bottom: 6px; }
.project-body p { color: rgba(255,255,255,0.75); font-size: 13.5px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-bar button {
  padding: 10px 20px; border-radius: 30px; border: 1px solid var(--border);
  background: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  cursor: pointer; transition: all var(--transition); color: var(--navy);
}
.filter-bar button.active, .filter-bar button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Notice / placeholder banner ---------- */
.notice {
  background: #FFF7E6;
  border: 1px solid #F3D98B;
  color: #7a5b00;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }
.contact-line { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-line .icon-box { background: rgba(255,255,255,0.1); flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; }
.contact-line .icon-box svg { color: var(--white); width: 20px; height: 20px; }
.contact-line b { display: block; font-size: 15px; margin-bottom: 3px; }
.contact-line span, .contact-line a { font-size: 14px; color: rgba(255,255,255,0.7); }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.contact-social a:hover { background: var(--red); }
.contact-social svg { width: 16px; height: 16px; }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--gray-light); margin-top: 10px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer { background: #070F18; color: rgba(238,240,242,0.5); font-size: 14px; line-height: 1.6; position: relative; overflow: hidden; }
footer.site-footer::before { content:''; position:absolute; inset:0; opacity:0.025; background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M10.3 -24.9 7.8 -7.8 24.9 -10.3 11.0 -0.0 24.9 10.3 7.8 7.8 10.3 24.9 0.0 11.0 -10.3 24.9 -7.8 7.8 -24.9 10.3 -11.0 0.0 -24.9 -10.3 -7.8 -7.8 -10.3 -24.9 -0.0 -11.0Z M0.0 -27.0 27.0 -0.0 0.0 27.0 -27.0 0.0Z M19.1 -19.1 19.1 19.1 -19.1 19.1 -19.1 -19.1Z M13.8 -33.3 33.3 -13.8 33.3 13.8 13.8 33.3 -13.8 33.3 -33.3 13.8 -33.3 -13.8 -13.8 -33.3Z M0.0 -52.0 15.3 -37.0 36.8 -36.8 37.0 -15.3 52.0 -0.0 37.0 15.3 36.8 36.8 15.3 37.0 0.0 52.0 -15.3 37.0 -36.8 36.8 -37.0 15.3 -52.0 0.0 -37.0 -15.3 -36.8 -36.8 -15.3 -37.0Z M130.3 -24.9 127.8 -7.8 144.9 -10.3 131.0 -0.0 144.9 10.3 127.8 7.8 130.3 24.9 120.0 11.0 109.7 24.9 112.2 7.8 95.1 10.3 109.0 0.0 95.1 -10.3 112.2 -7.8 109.7 -24.9 120.0 -11.0Z M120.0 -27.0 147.0 -0.0 120.0 27.0 93.0 0.0Z M139.1 -19.1 139.1 19.1 100.9 19.1 100.9 -19.1Z M133.8 -33.3 153.3 -13.8 153.3 13.8 133.8 33.3 106.2 33.3 86.7 13.8 86.7 -13.8 106.2 -33.3Z M120.0 -52.0 135.3 -37.0 156.8 -36.8 157.0 -15.3 172.0 -0.0 157.0 15.3 156.8 36.8 135.3 37.0 120.0 52.0 104.7 37.0 83.2 36.8 83.0 15.3 68.0 0.0 83.0 -15.3 83.2 -36.8 104.7 -37.0Z M10.3 95.1 7.8 112.2 24.9 109.7 11.0 120.0 24.9 130.3 7.8 127.8 10.3 144.9 0.0 131.0 -10.3 144.9 -7.8 127.8 -24.9 130.3 -11.0 120.0 -24.9 109.7 -7.8 112.2 -10.3 95.1 -0.0 109.0Z M0.0 93.0 27.0 120.0 0.0 147.0 -27.0 120.0Z M19.1 100.9 19.1 139.1 -19.1 139.1 -19.1 100.9Z M13.8 86.7 33.3 106.2 33.3 133.8 13.8 153.3 -13.8 153.3 -33.3 133.8 -33.3 106.2 -13.8 86.7Z M0.0 68.0 15.3 83.0 36.8 83.2 37.0 104.7 52.0 120.0 37.0 135.3 36.8 156.8 15.3 157.0 0.0 172.0 -15.3 157.0 -36.8 156.8 -37.0 135.3 -52.0 120.0 -37.0 104.7 -36.8 83.2 -15.3 83.0Z M130.3 95.1 127.8 112.2 144.9 109.7 131.0 120.0 144.9 130.3 127.8 127.8 130.3 144.9 120.0 131.0 109.7 144.9 112.2 127.8 95.1 130.3 109.0 120.0 95.1 109.7 112.2 112.2 109.7 95.1 120.0 109.0Z M120.0 93.0 147.0 120.0 120.0 147.0 93.0 120.0Z M139.1 100.9 139.1 139.1 100.9 139.1 100.9 100.9Z M133.8 86.7 153.3 106.2 153.3 133.8 133.8 153.3 106.2 153.3 86.7 133.8 86.7 106.2 106.2 86.7Z M120.0 68.0 135.3 83.0 156.8 83.2 157.0 104.7 172.0 120.0 157.0 135.3 156.8 156.8 135.3 157.0 120.0 172.0 104.7 157.0 83.2 156.8 83.0 135.3 68.0 120.0 83.0 104.7 83.2 83.2 104.7 83.0Z M70.3 35.1 67.8 52.2 84.9 49.7 71.0 60.0 84.9 70.3 67.8 67.8 70.3 84.9 60.0 71.0 49.7 84.9 52.2 67.8 35.1 70.3 49.0 60.0 35.1 49.7 52.2 52.2 49.7 35.1 60.0 49.0Z M60.0 33.0 87.0 60.0 60.0 87.0 33.0 60.0Z M79.1 40.9 79.1 79.1 40.9 79.1 40.9 40.9Z M73.8 26.7 93.3 46.2 93.3 73.8 73.8 93.3 46.2 93.3 26.7 73.8 26.7 46.2 46.2 26.7Z M60.0 8.0 75.3 23.0 96.8 23.2 97.0 44.7 112.0 60.0 97.0 75.3 96.8 96.8 75.3 97.0 60.0 112.0 44.7 97.0 23.2 96.8 23.0 75.3 8.0 60.0 23.0 44.7 23.2 23.2 44.7 23.0Z M60.0 -17.0 66.0 -6.0 77.0 0.0 66.0 6.0 60.0 17.0 54.0 6.0 43.0 0.0 54.0 -6.0Z M64.9 -4.9 64.9 4.9 55.1 4.9 55.1 -4.9Z M0.0 43.0 6.0 54.0 17.0 60.0 6.0 66.0 0.0 77.0 -6.0 66.0 -17.0 60.0 -6.0 54.0Z M4.9 55.1 4.9 64.9 -4.9 64.9 -4.9 55.1Z M120.0 43.0 126.0 54.0 137.0 60.0 126.0 66.0 120.0 77.0 114.0 66.0 103.0 60.0 114.0 54.0Z M124.9 55.1 124.9 64.9 115.1 64.9 115.1 55.1Z M60.0 103.0 66.0 114.0 77.0 120.0 66.0 126.0 60.0 137.0 54.0 126.0 43.0 120.0 54.0 114.0Z M64.9 115.1 64.9 124.9 55.1 124.9 55.1 115.1Z M25.5 25.5L34.5 34.5 M94.5 25.5L85.5 34.5 M25.5 94.5L34.5 85.5 M94.5 94.5L85.5 85.5" fill="none" stroke="white" stroke-width="1.1"/></svg>'); background-size:120px 120px; pointer-events:none; }
.footer-top-bar { height: 4px; background: linear-gradient(90deg, var(--red-dark), var(--red) 40%, #C9A227 100%); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding: 56px 0 48px; border-bottom: 1px solid rgba(238,240,242,0.08); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-text .name { font-size: 17px; font-weight: 800; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; }
.footer-logo-text .tagline { font-size: 8.5px; font-weight: 700; letter-spacing: 2px; color: rgba(238,240,242,0.45); text-transform: uppercase; margin-top: 3px; }
.footer-brand p { font-size: 13.5px; color: rgba(238,240,242,0.5); line-height: 1.75; max-width: 280px; margin-bottom: 18px; }
.cd-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(216,35,42,0.1); border: 1px solid rgba(216,35,42,0.35); border-radius: 6px; padding: 7px 12px; font-size: 11px; font-weight: 700; color: rgba(216,35,42,0.9); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 22px; width: fit-content; }
.cd-badge svg { width: 13px; height: 13px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(238,240,242,0.08); display: flex; align-items: center; justify-content: center; color: rgba(238,240,242,0.5); transition: background var(--transition), border-color var(--transition), color var(--transition); text-decoration: none; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(238,240,242,0.9); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(216,35,42,0.35); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(238,240,242,0.5); text-decoration: none; font-size: 13.5px; transition: color var(--transition), padding-left var(--transition); display: inline-block; }
.footer-col ul a:hover { color: rgba(238,240,242,0.9); padding-left: 4px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; color: rgba(238,240,242,0.5); }
.contact-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--red); }
.contact-list a { color: rgba(238,240,242,0.5); text-decoration: none; transition: color var(--transition); }
.contact-list a:hover { color: rgba(238,240,242,0.9); }
.emergency-strip { margin-top: 18px; background: linear-gradient(135deg,rgba(216,35,42,0.15),rgba(216,35,42,0.07)); border: 1px solid rgba(216,35,42,0.35); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.emergency-strip .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; animation: epulse 1.6s infinite; }
@keyframes epulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.emergency-strip span { font-size: 12px; font-weight: 700; color: rgba(216,35,42,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { font-size: 12.5px; color: rgba(238,240,242,0.28); }
.footer-bottom-left strong { color: rgba(238,240,242,0.5); font-weight: 600; }
.footer-uae { font-size: 11.5px; color: rgba(238,240,242,0.28); display: flex; align-items: center; gap: 6px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(238,240,242,0.28); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(238,240,242,0.5); }

/* ---------- Floating buttons ---------- */
.float-btns { position: fixed; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 400; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25D366; color: #fff; }
.float-btn.call { background: var(--red); color: #fff; }
.float-btn svg { width: 24px; height: 24px; }
.back-to-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav overlay ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 600;
  background: var(--navy);
  padding: 100px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul li { margin-bottom: 6px; }
.mobile-nav a { display: block; padding: 14px 4px; font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .btn { margin-top: 24px; }
.mobile-close { position: absolute; top: 26px; right: 26px; background: none; border: none; color: var(--white); cursor: pointer; }
.mobile-close svg { width: 26px; height: 26px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-text .secondary { font-size: 9px; letter-spacing: 0.8px; }
  .logo-text .primary { font-size: 18px; }
  .main-nav a { font-size: 13px; padding: 7px 9px; }
  .nav-actions { gap: 7px; }
  .btn-emergency { font-size: 12px; padding: 8px 10px; }
  .btn-quote { font-size: 12.5px; padding: 9px 14px; }
}

@media (max-width: 1000px) {
  .main-nav, .btn-emergency { display: none; }
  .btn-quote { padding: 9px 12px; font-size: 12px; white-space: nowrap; }
  .hamburger { display: flex; }
  .topbar-left a:not(:first-child) { display: none; }
  .topbar-badge { display: none; }
  .topbar-left span, .topbar-right > span { display: none; }
  .topbar-left, .topbar-right { gap: 12px; }
  .nav-wrap { padding: 6px 0; gap: 12px; }
  .logo-img { width: 56px; height: 56px; }
  .logo-text .primary { font-size: 17px; letter-spacing: 1px; }
  .logo-text .secondary { font-size: 8.5px; letter-spacing: 1px; }
  section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-inner { padding: 0 20px; }
}

@media (max-width: 768px) {
  .topbar-left a:not(:first-child) { display: none; }
  .topbar-badge { display: none; }
  .topbar-left span, .topbar-right > span { display: none; }
}

@media (max-width: 640px) {
  /* Layout & Spacing */
  .container { padding: 0 16px; }
  section { padding: 60px 0; }

  /* Topbar */
  .topbar { font-size: 10px; }
  .topbar .container { padding: 4px 0; gap: 4px; }
  .topbar-left, .topbar-right { gap: 8px; }
  .topbar a { gap: 4px; }
  .topbar svg { width: 10px; height: 10px; }

  /* Navigation */
  .nav-wrap { gap: 8px; }
  .logo-img { width: 56px; height: 56px; }
  .logo-text .primary { font-size: 16px; letter-spacing: 1px; }
  .logo-text .secondary { font-size: 9px; }
  .main-nav, .btn-emergency { display: none; }
  .btn-quote { padding: 8px 12px; font-size: 11px; white-space: nowrap; }
  .hamburger { display: flex; }

  /* Hero & Page Hero */
  .page-hero { padding: 50px 0 40px; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 34px); margin-bottom: 10px; }
  .page-hero p { font-size: 15px; max-width: 100%; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(24px, 8vw, 34px); margin-bottom: 12px; }
  .hero p.lead { font-size: 14px; margin-bottom: 20px; max-width: 100%; }
  .hero .btn, .cta-banner .btn { width: 100%; justify-content: center; }
  .hero-grid { gap: 30px; }

  /* Headings */
  .section-head { margin-bottom: 35px; }
  .section-head h2 { font-size: clamp(20px, 6vw, 28px); }
  .section-head p { font-size: 14px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; }
  .form-row, .form-row2 { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Cards */
  .card { padding: 20px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }
  .product-card { margin: 0; }
  .product-body { padding: 18px; }
  .product-body h3 { font-size: 15px; margin-bottom: 6px; }
  .product-body p { font-size: 13px; }

  /* Forms */
  input, textarea, select { font-size: 16px; padding: 10px 12px; }
  .btn { padding: 10px 18px; font-size: 13px; }
  .btn-sm { padding: 7px 12px; font-size: 11px; }

  /* CTA Banner */
  .cta-banner { flex-direction: column; text-align: center; padding: 30px 18px; gap: 16px; }
  .cta-banner h2 { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 6px; }
  .cta-banner p { font-size: 13px; }

  /* Buttons */
  .float-btns { right: 12px; bottom: 12px; gap: 8px; }
  .btn-emergency { font-size: 11px; padding: 7px 10px; }
  .btn-quote { font-size: 11px; padding: 8px 12px; }

  /* Mobile Nav */
  .mobile-nav { padding: 80px 20px 24px; }
  .mobile-nav .btn { width: 100%; }
  .mobile-nav .lang-toggle { width: 100%; }

  /* Tables */
  table { font-size: 12px; }
  th, td { padding: 8px; }

  /* Images */
  .img-zone { grid-template-columns: 80px 1fr; gap: 8px; padding: 8px; }
  .img-preview-wrap { width: 80px; height: 80px; }
  .img-hint { font-size: 9px; }
}

/* Header fit on small phones: hide the quote button (mobile menu has its own)
   and let the logo shrink so the hamburger stays on screen */
@media (max-width: 560px) {
  .nav-wrap .btn-quote, .nav-wrap .nav-actions .btn-primary { display: none; }
  .logo { min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .logo-text .secondary { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  section { padding: 50px 0; }

  .logo-img { width: 48px; height: 48px; }
  .logo-text .primary { font-size: 14px; letter-spacing: 0.5px; }
  .logo-text .secondary { font-size: 8px; letter-spacing: 0.5px; }

  .page-hero h1 { font-size: clamp(20px, 6vw, 28px); }
  .page-hero p { font-size: 13px; }

  .section-head h2 { font-size: clamp(18px, 5.5vw, 24px); }
  .section-head { margin-bottom: 30px; }

  .hero h1 { font-size: clamp(20px, 7vw, 28px); }
  .hero p.lead { font-size: 13px; margin-bottom: 16px; }

  .card { padding: 16px; }
  .card h3 { font-size: 14px; }

  .stats-band .container { grid-template-columns: 1fr; gap: 16px; }
  .cert-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 24px 14px; }
  .cta-banner h2 { font-size: clamp(18px, 5vw, 22px); }
  .cta-banner p { font-size: 12px; }

  .btn { padding: 9px 16px; font-size: 12px; }
  input, textarea, select { font-size: 16px; padding: 10px; }

  .footer-inner { padding: 0 16px; }
  .footer-grid { gap: 24px; padding: 32px 0 28px; }

  .project-card { min-height: 240px; }
  .product-tags { gap: 6px; }
  .product-tags span { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px; }
  section { padding: 40px 0; }

  .logo-img { width: 44px; height: 44px; }
  .logo-text .primary { font-size: 13px; }
  .logo-text .secondary { font-size: 7px; }

  .page-hero h1 { font-size: clamp(18px, 5.5vw, 24px); }
  .section-head h2 { font-size: clamp(16px, 5vw, 22px); }

  .btn { padding: 8px 14px; font-size: 11px; }
  input, textarea { font-size: 16px !important; }

  table { font-size: 11px; }
  th, td { padding: 6px; }

  .cta-banner h2 { font-size: clamp(16px, 4.5vw, 20px); }
  .hero h1 { font-size: clamp(18px, 6vw, 26px); }
}
