
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #050609;
  --bg-elevated: #0c0f18;
  --bg-alt: #121522;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.1);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 18px 45px rgba(9, 11, 19, 0.75);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --container: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #12131c 0, #05060b 55%, #030305 100%);
  line-height: 1.6;
}

body[data-theme="dark"] {
  color-scheme: dark;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(140deg, rgba(18, 19, 28, 0.95), rgba(6, 7, 12, 0.98));
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(3, 5, 10, 0.9), rgba(3, 5, 10, 0.78), rgba(3, 5, 10, 0.72));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.95;
  z-index: -1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(9, 11, 19, 0.4);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 2.5rem 0.5rem .75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(3, 4, 8, 0));
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 28px rgba(9, 11, 19, 0.35);
}

.hero-brand-logo {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 35px rgba(9, 11, 19, 0.55);
}

.hero-brand-title {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-brand-subtitle {
  margin: 0.1rem 0 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
  transition: width 0.18s ease-out;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(9, 11, 19, 0.9);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 17px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-inline: auto;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(11, 17, 32, 0.6);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.18s ease, background 0.18s ease;
}

.theme-toggle-text {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(12px);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(14, 165, 233, 0.16), transparent 45%), radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.12), transparent 55%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(56, 189, 248, 0.08), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("resources/sunset.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.06);
  opacity: 0.55;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.74), rgba(3, 5, 10, 0.55) 35%, rgba(3, 5, 10, 0.4) 55%, rgba(3, 5, 10, 0.6));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.75rem;
  align-items: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0.2rem 0 1.25rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-size: 0.7rem;
}

.meta-value {
  font-weight: 600;
}

/* Hero card */

.hero-card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 70%),
              linear-gradient(to bottom right, rgba(9, 11, 19, 0.95), rgba(4, 5, 10, 0.98));
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.4rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(26px);
  min-height: 460px;
}

.hero-card h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.hero-card p {
  margin-top: 0;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.2rem;
}

.social-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1 1 auto;
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(9, 11, 19, 0.45);
}

.social-card-title {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.social-card-subtitle {
  margin: 0.05rem 0 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.facebook-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  flex: 0 0 360px;
  padding-left: 1.25rem;
}

.facebook-embed > div,
.facebook-embed iframe {
  width: 100% !important;
  min-height: 560px !important;
}

.facebook-embed iframe {
  border: 0 !important;
  display: block;
  transform: translateY(-60px);
  background: transparent;
}

.social-card-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.social-card-footer {
  margin-top: 0;
}


/* Generic components */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(56, 189, 248, 0.45);
}

.btn-ghost {
  background: rgba(9, 11, 19, 0.6);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  background: rgba(9, 11, 19, 0.9);
}

.full-width {
  width: 100%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Forms */

.field,
.field-group {
  width: 100%;
}

.field-group {
  display: flex;
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(9, 11, 19, 0.9);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.13s ease-out, box-shadow 0.13s ease-out, background 0.13s ease-out;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
  background: rgba(9, 11, 19, 0.95);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.form-hint.small {
  font-size: 0.75rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

/* Sections */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
}

/* Cards & grids */

.grid {
  display: grid;
  gap: 1.75rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: linear-gradient(to bottom right, rgba(9, 11, 19, 0.96), rgba(9, 11, 19, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.4rem 1.4rem 1.35rem;
  box-shadow: 0 16px 40px rgba(9, 11, 19, 0.7);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.card h3 {
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6);
  border-color: rgba(56, 189, 248, 0.6);
  background: linear-gradient(to bottom right, rgba(11, 14, 24, 0.98), rgba(4, 6, 12, 1));
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin-bottom: 1rem;
}

.stat {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%);
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.about-panel {
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 60%),
              linear-gradient(to bottom left, rgba(9, 11, 19, 0.97), rgba(9, 11, 19, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.about-layout .bpr-accreditation-card {
  align-self: center;
}

.bpr-accreditation-card {
  gap: 0.9rem;
  border-color: rgba(56, 189, 248, 0.35);
  background: radial-gradient(circle at 12% 16%, rgba(56, 189, 248, 0.14), transparent 55%),
              linear-gradient(145deg, rgba(9, 11, 19, 0.97), rgba(6, 8, 15, 0.99));
}

.bpr-accreditation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bpr-accreditation-title {
  margin: 0.35rem 0 0 0;
  font-size: 1.1rem;
}

.bpr-accreditation-card-seal {
  width: 180px;
  height: auto;
  border-radius: 0.9rem;
  background: #ffffff;
  padding: 0.3rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.bds-body {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.font-semibold {
  font-weight: 600;
}

.bpr-standards-trust-message a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.bpr-standards-trust-message a:hover {
  text-decoration: underline;
}

.bpr-why-accredited {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.bpr-why-accredited:hover {
  text-decoration: underline;
}

.bpr-why-accredited .icon {
  width: 1.05em;
  height: 1.05em;
  fill: currentColor;
}

/* Gallery */

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gallery-item {
  margin: 0;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  margin-bottom: 0.6rem;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(5, 6, 10, 0.65);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, filter 0.2s ease-out;
}

.gallery-item figcaption {
  font-size: 0.86rem;
  color: var(--muted);
}

.gallery-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
  border-color: rgba(56, 189, 248, 0.6);
  filter: brightness(1.05) saturate(1.08);
}

/* Process */

.process-list {
  list-style: none;
  padding-left: 0;
  max-width: 44rem;
  margin: 0 auto;
}

.process-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.4rem;
}

.process-list h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-list li::before {
  content: attr(data-step);
}

.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(9, 11, 19, 1));
  box-shadow: 0 6px 18px rgba(5, 6, 10, 0.6);
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

/* Testimonials */

.card-quote {
  position: relative;
  padding-top: 1.8rem;
}

.card-quote::before {
  content: "“";
  position: absolute;
  font-size: 3rem;
  line-height: 1;
  top: -0.2rem;
  left: 0.9rem;
  color: rgba(56, 189, 248, 0.35);
}

.quote-text {
  font-size: 0.92rem;
}

.quote-meta {
  margin: 0.8rem 0 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.review-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
  margin-inline: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.review-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(5, 6, 10, 0.7);
  background: var(--bg-elevated);
  object-fit: contain;
  display: block;
  max-height: 480px;
}

.review-actions {
  margin-top: auto;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-details p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.form-card {
  background: linear-gradient(to bottom right, rgba(9, 11, 19, 0.97), rgba(9, 11, 19, 0.99));
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.5rem 0 2rem;
  background: radial-gradient(circle at top, rgba(9, 11, 19, 1), #020617);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand .logo-mark {
  width: 26px;
  height: 26px;
  border-width: 1px;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  flex-basis: 100%;
  margin: 0;
  margin-top: 0.4rem;
}

/* Light theme */

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-elevated: #ffffff;
  --bg-alt: #eef2ff;
  --accent: #0284c7;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-strong: #0369a1;
  --text: #0f172a;
  --muted: #475569;
  --border-subtle: rgba(9, 11, 19, 0.08);
  --shadow-soft: 0 18px 45px rgba(9, 11, 19, 0.12);
  background: radial-gradient(circle at top, #ffffff 0, #edf2ff 60%, #dbeafe 100%);
}

body[data-theme="light"] .site-header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8), transparent);
  border-bottom-color: rgba(9, 11, 19, 0.08);
}

body[data-theme="light"] .main-nav {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid rgba(9, 11, 19, 0.08);
}

body[data-theme="light"] .nav-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(9, 11, 19, 0.2);
}

body[data-theme="light"] .nav-toggle span {
  background: #0f172a;
}

body[data-theme="light"] .hero {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(224, 242, 254, 0.88));
}

body[data-theme="light"] .hero::before {
  background-image:
    radial-gradient(circle at 15% 10%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.12), transparent 60%);
}

body[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7) 35%, rgba(226, 232, 240, 0.7) 55%, rgba(226, 232, 240, 0.85));
}

body[data-theme="light"] .section-alt {
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.95), rgba(219, 234, 254, 0.9));
}

body[data-theme="light"] .hero-card,
body[data-theme="light"] .card,
body[data-theme="light"] .about-panel,
body[data-theme="light"] .form-card {
  background: #ffffff;
  border: 1px solid rgba(9, 11, 19, 0.08);
  box-shadow: 0 18px 45px rgba(9, 11, 19, 0.12);
  backdrop-filter: none;
}

body[data-theme="light"] .bpr-accreditation-card {
  background: linear-gradient(145deg, var(--accent-soft), #ffffff);
  border-color: rgba(14, 165, 233, 0.26);
  box-shadow: 0 18px 45px rgba(9, 11, 19, 0.12);
}

body[data-theme="light"] .bpr-accreditation-card-seal {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .stat {
  border-color: rgba(9, 11, 19, 0.08);
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), rgba(255, 255, 255, 0.9));
  box-shadow: 0 8px 22px rgba(9, 11, 19, 0.08);
}

body[data-theme="light"] .hero-brand {
  border-color: rgba(9, 11, 19, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(9, 11, 19, 0.08);
}

body[data-theme="light"] .hero-brand-logo {
  border-color: rgba(9, 11, 19, 0.12);
}

body[data-theme="light"] .social-card-body iframe {
  background: #e2e8f0;
}

body[data-theme="light"] .facebook-embed {
  background: transparent;
}


body[data-theme="light"] .gallery-thumb {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .review-image {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  background: #ffffff;
}

body[data-theme="light"] .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-color: rgba(9, 11, 19, 0.15);
}

body[data-theme="light"] .btn-ghost:hover {
  background: #e2e8f0;
}

body[data-theme="light"] input,
body[data-theme="light"] textarea,
body[data-theme="light"] select {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(9, 11, 19, 0.15);
  color: var(--text);
}

body[data-theme="light"] input:focus,
body[data-theme="light"] textarea:focus,
body[data-theme="light"] select:focus {
  background: #ffffff;
}

body[data-theme="light"] .process-list li::before {
  border-color: rgba(9, 11, 19, 0.1);
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.2), rgba(255, 255, 255, 0.95));
  box-shadow: 0 6px 18px rgba(9, 11, 19, 0.12);
}

body[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #e2e8f0, #cbd5f5);
  border-top: 1px solid rgba(9, 11, 19, 0.12);
}

body[data-theme="light"] .footer-inner,
body[data-theme="light"] .footer-links a {
  color: #475569;
}

body[data-theme="light"] .footer-links a:hover {
  color: #0f172a;
}

body[data-theme="light"] .logo-mark {
  border-color: rgba(9, 11, 19, 0.12);
  box-shadow: 0 6px 20px rgba(9, 11, 19, 0.15);
}

body[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(9, 11, 19, 0.12);
}

body[data-theme="light"] .theme-toggle-track {
  background: #cbd5f5;
  border-color: rgba(9, 11, 19, 0.15);
}

body[data-theme="light"] .theme-toggle-thumb {
  background: #fbbf24;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr);
  }

  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-layout .bpr-accreditation-card {
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.3rem;
    padding-inline: 0.5rem;
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.75rem 1.5rem 1rem;
    background: radial-gradient(circle at top left, rgba(9, 11, 19, 0.98), rgba(9, 11, 19, 0.98));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-actions {
    margin-left: 0;
  }

  .theme-toggle {
    padding-inline: 0.35rem;
  }

  .theme-toggle-text {
    display: none;
  }

  .hero {
    padding-top: 3.1rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  .field-group {
    flex-direction: column;
  }

  .hero-card {
    padding-inline: 1.25rem;
  }
}
