/* ─── Design Tokens ─── */
:root {
  --primary:      #e31414;
  --primary-bg:   rgba(227,20,20,0.08);
  --ink-900:      #1d1d1f;
  --ink-700:      #3d3d3f;
  --surface:      #ffffff;
  --glass-bg:     rgba(255,255,255,0.76);
  --glass-border: rgba(227,20,20,0.12);
  --radius-card:  20px;
  --shadow-card:  0 2px 24px rgba(0,0,0,0.07);
}

/* ─── Typography ─── */
.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  border: 1px solid rgba(227,20,20,0.18);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.display-title {
  font-size: clamp(32px,5vw,58px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.muted { color: #6e6e73; }

/* ─── Glass Panel ─── */
.glass-panel {
  background: rgba(255,255,255,0.76);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(227,20,20,0.13);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* ─── Card Shell ─── */
.cardShell {
  background: #fff;
  border: 1px solid rgba(227,20,20,0.10);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* ─── Feature Icon ─── */
.featureIcon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Hero ─── */
.heroCard {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 580px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

@media (max-width: 959px) {
  .heroCard { padding: 60px 30px; min-height: 420px; }
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.heroTitle {
  font-size: clamp(32px,5.5vw,62px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 20px;
}

.heroText {
  font-size: clamp(15px,1.6vw,18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 540px;
}

/* ─── Stat Boxes ─── */
.statBox {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}

.statNum {
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
}

.statLabel {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── Slider ─── */
.slider-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ─── Desktop Nav: default (red) state ─── */
.ms-desktop-nav .ms-nav-bar {
  background-color: rgba(242,0,0,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 16px rgba(242,0,0,0.35);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.ms-desktop-nav .ms-nav-link {
  color: rgba(255,255,255,0.82);
  text-transform: none;
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.35s ease;
}

.ms-desktop-nav .ms-nav-link.ms-nav-active {
  color: #ffffff;
  font-weight: 700;
}

.ms-desktop-nav .ms-nav-link:hover {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255,255,255,0.95), 0 0 22px rgba(255,255,255,0.6);
}

.ms-desktop-nav.ms-scrolled .ms-nav-link:hover {
  color: #f20000 !important;
  text-shadow: 0 0 10px rgba(242,0,0,0.5), 0 0 22px rgba(242,0,0,0.25);
}

.ms-desktop-nav .ms-social {
  color: white;
  font-size: 16px;
  padding: 0 6px;
  transition: color 0.35s ease;
}

.ms-desktop-nav .ms-enquiry-btn {
  color: #e31414 !important;
  background-color: white !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: none;
  transition: color 0.35s ease, background-color 0.35s ease;
}

/* ─── Desktop Nav: scrolled (white glass) state ─── */
.ms-desktop-nav.ms-scrolled .ms-nav-bar {
  background-color: rgba(255,255,255,0.76) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
}

.ms-desktop-nav.ms-scrolled .ms-nav-link {
  color: #334155;
  font-weight: 400;
}

.ms-desktop-nav.ms-scrolled .ms-nav-link.ms-nav-active {
  color: #e31414;
  font-weight: 600;
}

.ms-desktop-nav.ms-scrolled .ms-social {
  color: #e31414;
}

.ms-desktop-nav.ms-scrolled .ms-enquiry-btn {
  color: white !important;
  background-color: #e31414 !important;
}

/* ─── Apple Mobile Menu ─── */
.apple-menu.uk-modal-full {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
}

.apple-menu .uk-modal-dialog { background: transparent; }

.apple-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 60px 40px;
  text-align: left;
}

.apple-menu-logo { margin-bottom: 40px; }

.apple-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  gap: 4px;
}

.apple-menu-list li { margin: 0; }

.apple-menu-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: clamp(26px,6vw,48px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink-900);
  text-decoration: none !important;
  transition: background-color .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.apple-menu-link:hover,
.apple-menu-link:focus,
.apple-menu-link:visited { text-decoration: none !important; }

.apple-menu-link:hover { background: var(--primary-bg); color: var(--primary); }

.apple-menu-link:active { background: rgba(227,20,20,0.15); color: var(--primary); }

.apple-menu-link.is-active { background: var(--primary-bg); color: var(--primary); }

/* ─── Checkbox group ─── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 100%;
}

@media (min-width: 640px) {
  .checkbox-group label { flex: 1 1 calc(33.33% - 16px); }
}

.checkbox-group input[type="checkbox"]:checked { accent-color: #e31414; }

/* ─── Pagination (legacy) ─── */
.card-content { flex-wrap: wrap; margin: 30px; }
.pagination { text-align: center; margin: 30px 30px 60px; user-select: none; }
.pagination li { display: inline-block; margin: 5px; box-shadow: 0 5px 25px rgb(1 1 1 / 10%); }
.pagination li a { color: #fff; text-decoration: none; font-size: 1.2em; line-height: 45px; }
.previous-page, .next-page { background: #1e87f0; width: 80px; border-radius: 45px; cursor: pointer; transition: 0.3s ease; }
.previous-page:hover { transform: translateX(-5px); }
.next-page:hover { transform: translateX(5px); }
.current-page, .dots { background: #ccc; width: 45px; border-radius: 50%; cursor: pointer; }
.active { background: #1e87f0; }
.disable { background: #ccc; }
