:root {
  /* Brand palette */
  --brand-blue: #002888; /* 002888 */
  --brand-blue-700: #001f6b;
  --brand-blue-800: #001a59;
  --brand-blue-900: #001443;
  --brand-orange: #fa8d2e; /* fa8d2e */
  --brand-orange-600: #e07d28;
  --white: #ffffff; /* ffffff */
  --whatsapp: #25D366; /* WhatsApp green */

  /* Light theme tokens */
  --bg: #ffffff; /* primary background */
  --surface: #ffffff;
  --surface-2: #f6f8ff; /* subtle tinted surface */
  --text: #0f172a; /* dark text */
  --muted: #475569; /* slate-600 */
  --primary: var(--brand-orange);
  --primary-600: var(--brand-orange-600);
  --secondary: var(--brand-blue);
  --outline: #e5e7eb; /* light borders */
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
}

/* Dark theme */
[data-theme="dark"] {
  --bg: #0f172a; /* dark background */
  --surface: #1e293b; /* dark surface */
  --surface-2: #334155; /* darker surface */
  --text: #f1f5f9; /* light text */
  --muted: #94a3b8; /* light muted */
  --outline: #334155; /* dark borders */
  --card: #1e293b; /* dark card */
  --shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* توحيد الخط في جميع العناصر */
*, *::before, *::after {
  font-family: 'Cairo', sans-serif !important;
}

/* توحيد الخط في العناصر المحددة */
input, textarea, select, button, a, h1, h2, h3, h4, h5, h6, p, span, div, li, ul, ol {
  font-family: 'Cairo', sans-serif !important;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--secondary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-color: #d1d5db;
}

.theme-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  color: #374151;
}

[data-theme="dark"] .theme-toggle {
  background: #1f2937;
  border-color: #374151;
}

[data-theme="dark"] .theme-icon {
  color: #f9fafb;
  transform: rotate(180deg);
}

/* Dark mode for services */
[data-theme="dark"] .service-card {
  background: #000000;
  border-color: #374151;
  color: #f9fafb;
}

[data-theme="dark"] .service-card:hover {
  background: #111827;
  border-color: #4b5563;
}

[data-theme="dark"] .service-head {
  color: #f9fafb;
}

[data-theme="dark"] .service-body {
  color: #d1d5db;
}

/* Dark theme for services section */
[data-theme="dark"] .services-tabs {
  background: #1e293b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .tab-btn {
  color: #94a3b8;
}
[data-theme="dark"] .tab-btn:hover {
  color: #fff;
  background: rgba(0, 40, 136, 0.3);
}
[data-theme="dark"] .tab-btn.active {
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
}
[data-theme="dark"] .services-filters {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.1), rgba(250, 141, 46, 0.1));
}
[data-theme="dark"] .filter-btn {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}
[data-theme="dark"] .filter-btn:hover {
  border-color: var(--secondary);
  color: #fff;
  background: rgba(0, 40, 136, 0.2);
}
[data-theme="dark"] .filter-btn.active {
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
}
[data-theme="dark"] .services-list > li {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}
[data-theme="dark"] .services-list > li:hover {
  background: linear-gradient(135deg, #1e293b 0%, #1a2332 100%);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .services-list h3 {
  color: #f1f5f9;
}
[data-theme="dark"] .services-list > li:hover h3 {
  color: var(--primary);
}
[data-theme="dark"] .services-list p {
  color: #d1d5db;
}
[data-theme="dark"] .services-list ul {
  color: #94a3b8;
}

/* Dark theme for booking form */
[data-theme="dark"] .booking-service-filters {
  background: #1e293b;
}
[data-theme="dark"] .booking-filter-btn {
  background: #1e293b;
  color: #f1f5f9;
  border-color: #334155;
}
[data-theme="dark"] .booking-filter-btn:hover {
  background: rgba(0, 40, 136, 0.3);
  border-color: var(--secondary);
}
[data-theme="dark"] .booking-filter-btn.active {
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
}
[data-theme="dark"] .svc-check {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
}
[data-theme="dark"] .svc-check:hover {
  background: linear-gradient(135deg, #1e293b 0%, #1a2332 100%);
  border-color: var(--secondary);
}
[data-theme="dark"] .svc-check:has(input:checked) {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.2), rgba(250, 141, 46, 0.15));
  border-color: var(--secondary);
}
[data-theme="dark"] .svc-check span {
  color: #f1f5f9;
}
[data-theme="dark"] .svc-check:has(input:checked) span {
  color: #ffffff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-logo { width: 72px; height: 72px; object-fit: contain; filter: brightness(0) invert(1); }



.nav-toggle { display: none; }
.site-nav { flex: 1; display: flex; justify-content: center; text-align: center; }
.site-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--primary); }

.btn {
  display: inline-block;
  color: var(--secondary);
  background: var(--bg);
  border: 1px solid var(--secondary);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--primary); color: #ffffff; border-color: transparent; }
.btn.primary:hover { background: var(--primary-600); }
.btn.secondary { background: var(--secondary); color: #ffffff; border-color: transparent; }
.btn.secondary:hover { filter: brightness(.95); }
.btn.outline { background: transparent; border-color: var(--secondary); color: var(--secondary); }
.btn.outline.orange { border-color: var(--primary); color: var(--primary); }
.btn.outline.orange:hover { background: rgba(250,141,46,.08); }
.btn.outline.blue { border-color: #ffffff; color: #ffffff; background: transparent; }
.btn.outline.blue:hover { background: rgba(255,255,255,.12); }

/* Hero */
.hero {
  padding: 80px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero-title { font-size: clamp(28px, 4vw, 44px); margin: 0 0 8px; }
.hero-subtitle { color: var(--muted); margin: 0 0 18px; }
.hero-actions { display: flex; gap: 10px; }
.hero-media { display: none; }

/* Sections */
.section { padding: 60px 0; }
.section.alt { background: var(--surface-2); border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline); }
.section-header { text-align: center; margin-bottom: 28px; }
.section-header h2 { margin: 0 0 8px; font-size: 28px; }
.section-header p { color: var(--muted); margin: 0; }

/* Services tabs */
.services-tabs { 
  display: flex; 
  gap: 0; 
  justify-content: center; 
  margin-top: 24px; 
  margin-bottom: 32px;
  background: var(--surface-2);
  border-radius: 16px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--secondary);
  border-radius: 12px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 180px;
  position: relative;
  z-index: 1;
}
.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.tab-btn:hover { 
  color: #fff;
  transform: translateY(-2px);
}
.tab-btn:hover::before {
  opacity: 1;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 40, 136, 0.3);
  transform: translateY(-2px);
}
.tab-btn.active::before {
  opacity: 1;
}

.services-tab-content { display: none; }
.services-tab-content.active { display: block; }

/* Services filters */
.services-filters { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  justify-content: center; 
  margin-top: 20px; 
  margin-bottom: 32px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.03), rgba(250, 141, 46, 0.03));
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.filter-btn {
  background: #fff;
  border: 2px solid var(--outline);
  color: var(--secondary);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-width: 90px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.filter-btn:hover { 
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 40, 136, 0.15);
  color: var(--secondary);
}
.filter-btn:hover::before {
  opacity: 0.1;
}
.filter-btn.active { 
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff; 
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 40, 136, 0.3);
  transform: translateY(-2px);
}
.filter-btn.active::before {
  opacity: 1;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }

/* Unified color for About section cards: Vision, Mission, Objective */
#about .cards.three .card {
  background: rgba(0, 40, 136, 0.06); /* subtle brand blue tint */
  border-color: var(--secondary);
  color: var(--text);
}
#about .cards.three .card h3 {
  color: var(--secondary);
}
#about .cards.three .card p {
  color: var(--text);
}

/* Apply same unified box style across other sections */
.values-list li {
  background: rgba(0, 40, 136, 0.06);
  border-color: var(--secondary);
  color: var(--text);
}
.values-list li strong { 
  color: var(--secondary);
}
.values-list li span {
  color: var(--text);
}

/* Dark theme for About section */
[data-theme="dark"] #about .cards.three .card {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.2), rgba(30, 41, 59, 0.3));
  border-color: rgba(0, 40, 136, 0.5);
  color: #f1f5f9;
}
[data-theme="dark"] #about .cards.three .card h3 {
  color: #60a5fa;
}
[data-theme="dark"] #about .cards.three .card p {
  color: #e2e8f0;
}
[data-theme="dark"] .values-list li {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.2), rgba(30, 41, 59, 0.3));
  border-color: rgba(0, 40, 136, 0.5);
  color: #f1f5f9;
}
[data-theme="dark"] .values-list li strong {
  color: #60a5fa;
}
[data-theme="dark"] .values-list li span {
  color: #e2e8f0;
}
[data-theme="dark"] .values h3 {
  color: #f1f5f9;
}
[data-theme="dark"] #about .section-header h2 {
  color: #f1f5f9;
}
[data-theme="dark"] #about .section-header p {
  color: #cbd5e1;
}

.services-list > li {
  background: rgba(0, 40, 136, 0.06);
  border-color: var(--secondary);
}
.services-list > li h3 { color: var(--secondary); }

.booking-item {
  background: rgba(0, 40, 136, 0.06);
  border-color: var(--secondary);
}
.bookings-list h3 { color: var(--secondary); }

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  inset-inline-end: 18px; /* right in LTR, left in RTL */
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow);
  text-decoration: none;
  z-index: 1100;
}
.whatsapp-fab:hover { filter: brightness(.95); transform: translateY(-1px); }
.whatsapp-fab svg { width: 26px; height: 26px; fill: currentColor; }

.values { margin-top: 24px; }
.values-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: s;
  padding: 0;
  margin: 0;
}
.services-list > li {
  list-style: none;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 40, 136, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.services-list > li::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,40,136,.3), rgba(250,141,46,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; 
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-list > li::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 16px;
  top: 16px;
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 40, 136, 0.25);
  z-index: 2;
  transition: all 0.3s ease;
}
.services-list h3 {
  margin: 0 0 12px 0;
  font-size: 19px;
  color: var(--secondary);
  padding-inline-start: 50px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.services-list p { 
  margin: 0; 
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}
.services-list ul {
  margin: 12px 0 0 0;
  color: var(--muted);
  padding-inline-start: 22px;
  line-height: 1.8;
}
.services-list ul li { 
  margin: 8px 0;
  font-size: 14px;
}

/* Hover elevate with professional effects */
.services-list > li:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 40, 136, 0.2);
  border-color: var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}
.services-list > li:hover::after {
  opacity: 1;
}
.services-list > li:hover::before {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 40, 136, 0.35);
}
.services-list > li:hover h3 {
  color: var(--primary);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}
.services-list > li.reveal:nth-child(1) { transition-delay: .0s; }
.services-list > li.reveal:nth-child(2) { transition-delay: .05s; }
.services-list > li.reveal:nth-child(3) { transition-delay: .1s; }
.services-list > li.reveal:nth-child(4) { transition-delay: .15s; }
.services-list > li.reveal:nth-child(5) { transition-delay: .2s; }
.services-list > li.reveal:nth-child(6) { transition-delay: .25s; }
.services-list > li.reveal:nth-child(7) { transition-delay: .3s; }
.services-list > li.reveal:nth-child(8) { transition-delay: .35s; }
.services-list > li.reveal:nth-child(9) { transition-delay: .4s; }
.services-list > li.reveal:nth-child(10) { transition-delay: .45s; }

/* Services card hover-to-reveal pattern */
.service-card { 
  cursor: pointer; 
  transition: all 0.3s ease;
}
.service-card .service-body { 
  display: none;
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card:hover .service-body,
.service-card:focus .service-body { 
  display: block; 
}
.service-card:hover .service-head,
.service-card:focus .service-head { 
  color: var(--primary);
  transform: translateX(4px);
  transition: all 0.3s ease;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}
#contact-form.form-grid {
  grid-template-columns: repeat(3, 1fr);
}
#booking-form.form-grid {
  grid-template-columns: repeat(3, 1fr);
}
.form-grid label { display: grid; gap: 6px; font-weight: 600; color: var(--muted); }
.form-grid input,
.form-grid textarea,
.form-grid select {
  background: #ffffff;
  border: 1px solid var(--outline);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.form-grid select option {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-actions { display: flex; gap: 10px; }

.bookings-list ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 10px; }
.booking-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #ffffff; border: 1px solid var(--outline); border-radius: 12px; padding: 12px 14px; }

/* Booking service filters */
.booking-service-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding: 4px;
  background: var(--surface-2);
  border-radius: 14px;
  justify-content: center;
}
.booking-filter-btn {
  background: #fff;
  border: 2px solid transparent;
  color: var(--secondary);
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.booking-filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.1), rgba(250, 141, 46, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.booking-filter-btn:hover {
  background: rgba(0, 40, 136, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 40, 136, 0.15);
  border-color: var(--secondary);
}
.booking-filter-btn:hover::before {
  opacity: 1;
}
.booking-filter-btn.active {
  background: linear-gradient(135deg, var(--secondary), #073a9a);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 40, 136, 0.3);
  transform: translateY(-2px);
}
.booking-filter-btn.active::before {
  opacity: 0;
}

/* Booking services checkboxes (multi-select as boxes) */
.services-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.svc-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid var(--outline);
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.svc-check::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.05), rgba(250, 141, 46, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-check:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 40, 136, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}
.svc-check:hover::before {
  opacity: 1;
}
.svc-check input {
  accent-color: var(--secondary);
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.svc-check:hover input {
  transform: scale(1.1);
}
.svc-check input:checked {
  transform: scale(1.15);
}
.svc-check:has(input:checked) {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.08), rgba(250, 141, 46, 0.08));
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(0, 40, 136, 0.2);
  transform: translateY(-2px);
}
.svc-check:has(input:checked)::before {
  opacity: 1;
}
.svc-check span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  flex: 1;
}
.svc-check:has(input:checked) span {
  color: var(--secondary);
  font-weight: 600;
}
.booking-item small { color: var(--muted); }
.booking-item button { background: transparent; border: 1px solid var(--secondary); color: var(--secondary); border-radius: 10px; padding: 6px 10px; cursor: pointer; }
.booking-item button:hover { background: rgba(0,40,136,.06); }

/* Footer */
.site-footer { border-top: 1px solid var(--outline); background: var(--secondary); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; color: #ffffff; }
.site-footer a { color: rgba(255,255,255,.9); text-decoration: none; margin-inline: 8px; }
.site-footer a:hover { color: #ffffff; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: transparent; color: var(--text); border: 1px solid #26344f; border-radius: 10px; }
  .site-nav { display: none; position: absolute; inset-inline: 0; top: 60px; background: #ffffff; border-bottom: 1px solid var(--outline); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 10px; }
  .header-actions { margin-inline-start: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  #contact-form.form-grid { grid-template-columns: 1fr; }
  #booking-form.form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .services-list { grid-template-columns: 1fr; }
  .services-filters { 
    justify-content: flex-start; 
    padding: 10px;
  }
  .services-tabs { 
    flex-direction: column; 
    align-items: stretch; 
    width: 100%;
    padding: 8px;
  }
  .tab-btn { 
    width: 100%; 
    min-width: auto;
    padding: 16px 24px;
  }
  .services-list {
    gap: 16px;
  }
  .services-list > li {
    padding: 20px 16px 16px 16px;
  }
  .booking-service-filters { 
    flex-direction: column; 
    padding: 8px;
  }
  .booking-filter-btn { 
    width: 100%; 
    padding: 14px 20px;
  }
  .services-checkboxes {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .svc-check {
    padding: 14px 16px;
  }
}


/* Enforce unified blue box style (placed at end to win cascade) */
.values-list li {
  background: rgba(0, 40, 136, 0.06);
  border: 1px solid var(--secondary);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--text);
}
.values-list li strong { color: var(--secondary); }
.values-list li span { color: var(--text); }

.services-list > li {
  background: rgba(0, 40, 136, 0.06);
  border: 1px solid var(--secondary);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.services-list > li h3 { color: var(--secondary); }

.booking-item {
  background: rgba(0, 40, 136, 0.06);
  border: 1px solid var(--secondary);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.bookings-list h3 { color: var(--secondary); }

/* Dark theme overrides for About section (high priority) */
[data-theme="dark"] #about .cards.three .card {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.25), rgba(30, 41, 59, 0.35)) !important;
  border-color: rgba(0, 40, 136, 0.6) !important;
  color: #f1f5f9 !important;
}
[data-theme="dark"] #about .cards.three .card h3 {
  color: #60a5fa !important;
}
[data-theme="dark"] #about .cards.three .card p {
  color: #e2e8f0 !important;
}
[data-theme="dark"] .values-list li {
  background: linear-gradient(135deg, rgba(0, 40, 136, 0.25), rgba(30, 41, 59, 0.35)) !important;
  border-color: rgba(0, 40, 136, 0.6) !important;
  color: #f1f5f9 !important;
}
[data-theme="dark"] .values-list li strong {
  color: #60a5fa !important;
}
[data-theme="dark"] .values-list li span {
  color: #e2e8f0 !important;
}
[data-theme="dark"] .values h3 {
  color: #f1f5f9 !important;
}
[data-theme="dark"] #about .section-header h2 {
  color: #f1f5f9 !important;
}
[data-theme="dark"] #about .section-header p {
  color: #cbd5e1 !important;
}

