@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --blue: #1672B6;
  --blue-dark: #125e98;
  --blue-light: #3a8fd4;
  --dark: #1a1a2e;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-card: #ffffff;
  --border: #e2e6ea;
  --text: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --white: #ffffff;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex; align-items: center;
  padding: 0 5%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: calc(var(--nav-h) - 12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

/* ── SCROLL PROGRESS BAR ── */
#scrollProgress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: linear-gradient(to right, var(--blue), var(--blue-light));
  z-index: 1001; width: 0%;
  transition: width 0.1s ease-out;
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-img { height: 42px; width: auto; }
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--blue);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: 1px;
}
.nav-logo .logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: rgba(22,114,182,0.06); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 260px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px;
  color: var(--text-body);
  font-size: 14px; border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--blue); background: rgba(22,114,182,0.06); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 24px 5%;
  overflow-y: auto; z-index: 999;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 17px; font-weight: 500;
  padding: 14px 16px; border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(22,114,182,0.06); }
.mobile-menu .mobile-sub { padding-left: 32px; font-size: 15px; color: var(--text-muted); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--blue);
  color: #fff; text-align: center;
  border-radius: 12px; font-weight: 600;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  padding: var(--nav-h) 5% 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-modern-charcoal.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px;
  border-radius: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-badge::before { content: '●'; font-size: 8px; }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800; line-height: 1.0;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 span { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 6px; }

.hero p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 560px; margin-bottom: 36px; font-weight: 400;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,114,182,0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(22,114,182,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue);
  padding: 28px 5%;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 16px 8px; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 580px; line-height: 1.7;
  margin-bottom: 52px;
}




/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.service-icon {
  width: 64px; height: 64px;
  background: rgba(22, 114, 182, 0.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--blue);
  transition: all 0.3s;
}
.service-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}

/* Hover State */
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(22, 114, 182, 0.1);
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: #fff;
  transform: scale(1.05);
}
.service-card:hover .service-arrow {
  gap: 12px;
}
/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: rgba(22,114,182,0.1);
  border: 2px solid rgba(22,114,182,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--blue);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-muted); }

/* ── BRANDS ── */
.brands-section { background: var(--bg-alt); }
.brands-list {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 12px;
}
.brand-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 32px;
  min-width: 180px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-pill img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.brand-pill.nw-logo img {
  height: 110px;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); margin-top: 6px; flex-shrink: 0; }
.about-img-wrap {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 450px;
  margin: 0 auto;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22,114,182,0.3);
  border-radius: 14px;
  padding: 16px 20px;
}
.about-badge .badge-title { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.about-badge .badge-val { font-size: 22px; font-weight: 800; color: var(--blue); }

/* ── EMERGENCY BANNER ── */
.emergency {
  background: radial-gradient(at 0% 0%, #1672B6 0px, transparent 50%),
              radial-gradient(at 100% 0%, #125e98 0px, transparent 50%),
              radial-gradient(at 100% 100%, #1672B6 0px, transparent 50%),
              radial-gradient(at 0% 100%, #0d4a77 0px, transparent 50%);
  background-color: #125e98;
  padding: 80px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.emergency::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05; pointer-events: none;
}
.emergency h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.emergency p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.emergency .btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.emergency .btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

/* ── CONTACT INFO STRIP ── */
.contact-strip { background: var(--bg-alt); padding: 60px 5%; }
.contact-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(22,114,182,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--blue); }
.contact-item-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item-val { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-item-val a { color: inherit; text-decoration: none; }
.contact-item-val a:hover { color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 60px 5% 32px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: nowrap;
}
.footer-brand { flex: 1.5; min-width: 0; }
.footer-col { flex: 1; min-width: 0; }
.footer-brand .nav-logo .logo-icon { background: var(--blue); color: #fff; }
.footer-brand .nav-logo .logo-text { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; word-break: break-word; }
.footer-col ul a:hover { color: var(--blue-light); }
.footer-bottom {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg-alt);
  padding: calc(var(--nav-h) + 60px) 5% 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; }

/* ── CONTENT SECTION ── */
.content-section { padding: 80px 5%; }
.content-inner { max-width: 1280px; margin: 0 auto; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 700px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,114,182,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  padding: 20px;
  color: #16a34a;
  text-align: center;
  margin-top: 20px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(22,114,182,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-size: 32px; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}
.contact-sidebar {
  position: sticky;
  top: 100px;
}

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { position: static; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-wrap: wrap; gap: 40px 24px; }
  .footer-brand { flex: 1 1 100%; }
  .footer-col { flex: 1 1 calc(50% - 24px); min-width: 150px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero h1 { font-size: 40px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-col { flex: 1 1 100%; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-menu a { padding: 18px 20px; }
  .emergency { padding: 60px 5%; }
  .section-title { font-size: 32px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── FAQ ── */
.faq-container { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { background: rgba(22,114,182,0.03); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

/* DSB IT Solutions Tag */

.dsb-tag {
  display: flex;
  align-items: center;
}
.dsb-tag a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}
.dsb-tag a:hover {
  color: #fff;
}
.dsb-tag img {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.dsb-tag a:hover img {
  opacity: 1;
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(22, 114, 182, 0.3);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
#backToTop.visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(22, 114, 182, 0.4);
}


/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 2000;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  max-width: 800px;
  margin: 0 auto;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 14px; color: var(--text-body); line-height: 1.5; }
.cookie-text a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns .btn { padding: 8px 20px; font-size: 14px; }

@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; bottom: 16px; left: 16px; right: 16px; padding: 24px; }
  .cookie-btns { width: 100%; justify-content: center; }
  .cookie-btns .btn { flex: 1; }
}
