/* ===========================
   HEARIZAN - GLOBAL STYLES
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0A5BB0;
  --navy-light: #0E6FCC;
  --teal: #1BAFC4;
  --teal-dark: #159BAE;
  --gold: #C5A059;
  --brand-50: #f8fafc;
  --brand-100: #f1f5f9;
  --brand-500: #0A5BB0;
  --brand-600: #063E78;

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-50: #f8fafc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--slate-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===========================
   UTILITIES
   =========================== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-primary:hover { background: var(--navy-light); }

.btn-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-secondary:hover { background: var(--teal-dark); }

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: rgba(10, 91, 176, 0.05); }

.btn-ghost {
  color: var(--slate-600);
  background: transparent;
}
.btn-ghost:hover { color: var(--navy); background: var(--slate-50); }

.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.625rem; }
.btn-block { width: 100%; }

/* ===========================
   SITE HEADER (Topbar + Navbar)
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.25s ease;
}

/* Top utility strip */
.topbar {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  font-weight: 500;
}
.topbar-item svg { color: rgba(255, 255, 255, 0.75); }
.topbar-divider { color: rgba(255, 255, 255, 0.35); font-size: 0.7em; }
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.topbar-phone:hover { opacity: 0.85; }
.topbar-trust {
  font-weight: 500;
}
.topbar-stars {
  color: #FFD15A;
  letter-spacing: -1px;
  font-size: 0.85em;
}
.topbar-trust strong { font-weight: 700; color: #fff; }

@media (max-width: 900px) {
  .topbar { display: none; }
}

/* Main navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(229, 237, 245, 0.6);
  padding: 0.875rem 0;
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
}
.site-header.scrolled .navbar {
  padding: 0.625rem 0;
  box-shadow: 0 4px 24px -8px rgba(10, 91, 176, 0.12);
  background: rgba(255, 255, 255, 0.96);
}
.site-header.scrolled .topbar {
  display: none;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D3F54;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
}
.navbar-link:hover {
  color: #0A5BB0;
  background: rgba(10, 91, 176, 0.05);
}
.navbar-link.active {
  color: #0A5BB0;
  background: rgba(10, 91, 176, 0.07);
}
.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #0A5BB0, #1BAFC4);
  border-radius: 999px;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar-link-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D3F54;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
}
.navbar-link-login:hover {
  color: #0A5BB0;
  background: rgba(10, 91, 176, 0.05);
}
.btn-book-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.005em;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(10, 91, 176, 0.2);
}
.btn-book-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #042B57 0%, #0A5BB0 100%);
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-book-nav:hover::before {
  transform: translateX(0);
}
.btn-book-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 91, 176, 0.3);
}
.btn-book-nav svg { transition: transform 0.2s; }
.btn-book-nav:hover svg { transform: translateX(2px); }

.btn-icon-link {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-icon-link:hover { color: #ef4444; }

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(10, 91, 176, 0.15);
  border-radius: 10px;
  background: #fff;
  color: #0A5BB0;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: #fff;
  margin: 0.75rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(10, 91, 176, 0.25);
  border: 1px solid rgba(229, 237, 245, 0.8);
  overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-link {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2D3F54;
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-menu-link:hover {
  background: rgba(10, 91, 176, 0.05);
}
.mobile-menu-link.teal {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  text-align: center;
  margin-top: 0.5rem;
}
.mobile-menu-link.navy {
  background: rgba(10, 91, 176, 0.06);
  color: #0A5BB0;
  text-align: center;
}

@media (min-width: 900px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: flex; }
  .navbar-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===========================
   HERO SECTION (Home)
   =========================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #eefaff;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(10, 91, 176, 0.05);
  transform: skewX(-12deg) translateX(8rem);
}
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  height: 2px;
  width: 3rem;
  background: var(--teal);
}
.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-title {
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.hero-title-bold {
  font-weight: 700;
  color: var(--teal);
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--slate-500);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.7;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--slate-100);
}
.hero-stars { color: #facc15; }
.hero-rating-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.hero-image-wrap {
  position: relative;
}
.hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 8px solid #fff;
  outline: 1px solid var(--slate-100);
}
.hero-image img { filter: grayscale(20%); width: 100%; }

.hero-quote {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--slate-100);
  max-width: 20rem;
}
.hero-quote-text {
  color: var(--navy);
  font-weight: 700;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar-sm {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--slate-200);
}
.hero-quote-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-400);
  font-style: italic;
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 8rem 0; }
.section-sm { padding: 6rem 0; }
.section-white { background: #fff; }
.section-slate { background: var(--slate-50); }
.section-navy { background: var(--navy); color: #fff; }

.section-heading {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .section-heading { font-size: 3rem; }
}
.section-heading-light { color: #fff; }
.section-subheading {
  color: var(--slate-500);
  font-weight: 500;
}
.text-teal { color: var(--teal); font-weight: 700; }
.text-navy { color: var(--navy); }

/* About Section (Home) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-image-wrap { position: relative; }
.about-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10;
  border: 4px solid #fff;
}
.about-blob {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(27, 175, 196, 0.05);
  border-radius: 9999px;
  z-index: -1;
  filter: blur(48px);
}
.about-card {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background: var(--navy);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
  max-width: 20rem;
  z-index: 20;
}
.about-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.icon-box-teal {
  width: 3rem;
  height: 3rem;
  background: var(--teal);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-card-title {
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
}
.about-card-q {
  color: var(--slate-300);
  font-size: 0.75rem;
  font-style: italic;
}
.about-content h2 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 400;
}
@media (min-width: 768px) { .about-content h2 { font-size: 3rem; } }
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.7;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.pillar h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* Services Summary (Home) */
.services-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-head { flex-direction: row; }
}
.services-head-text { max-width: 32rem; text-align: center; }
@media (min-width: 768px) {
  .services-head-text { text-align: left; }
}
.link-teal {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Process Section */
.process-section {
  padding: 8rem 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.process-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 30px 30px;
}
.process-inner {
  position: relative;
  z-index: 10;
}
.process-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: 400;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step { position: relative; }
.process-step-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  margin-bottom: -1.875rem;
}
.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
  font-style: italic;
}

/* FAQ */
.faq-head {
  text-align: center;
  margin-bottom: 5rem;
}
.faq-eyebrow {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
  display: block;
  margin-bottom: 1rem;
}
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border-bottom: 1px solid var(--slate-100);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-question span {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  transition: color 0.2s;
  padding-right: 2rem;
}
.faq-question:hover span { color: var(--teal); }
.faq-item.open .faq-question span { color: var(--teal); }
.faq-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  color: var(--slate-400);
  transition: all 0.3s;
}
.faq-question:hover .faq-toggle {
  border-color: var(--teal);
  color: var(--teal);
}
.faq-item.open .faq-toggle {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-answer-inner {
  padding-bottom: 2rem;
  color: var(--slate-500);
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;
  padding-right: 3rem;
}

/* CTA Section */
.cta-section { padding: 6rem 0; background: var(--slate-50); overflow: hidden; }
.cta-card {
  position: relative;
  border-radius: 40px;
  background: #fff;
  border: 1px solid var(--slate-200);
  padding: 3rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(10, 91, 176, 0.05);
}
@media (min-width: 768px) {
  .cta-card { padding: 6rem; }
}
.cta-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: rgba(248, 250, 252, 0.5);
  z-index: -10;
  transform: translateX(5rem) skewX(-15deg);
}
.cta-content { max-width: 48rem; }
.cta-eyebrow {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.625rem;
  display: block;
  margin-bottom: 2rem;
}
.cta-title {
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .cta-title { font-size: 3rem; }
}
.cta-desc {
  font-size: 1.125rem;
  color: var(--slate-500);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 36rem;
  line-height: 1.7;
}
.cta-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
.cta-trust {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid var(--slate-100);
  padding-top: 2.5rem;
}
.avatars-stack { display: flex; }
.avatars-stack .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  background: var(--slate-200);
  overflow: hidden;
  margin-left: -0.75rem;
}
.avatars-stack .avatar:first-child { margin-left: 0; }
.cta-trust-text {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
  font-style: italic;
}
.cta-trust-text strong { color: var(--navy); }

.cta-deco {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: none;
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 1024px) { .cta-deco { display: block; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.cta-deco-ring {
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  border: 1px solid rgba(27, 175, 196, 0.2);
  padding: 0.5rem;
}
.cta-deco-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(27, 175, 196, 0.1);
  background: rgba(27, 175, 196, 0.05);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgba(27, 175, 196, 0.4);
}

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}
.page-hero.white { background: #fff; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--slate-300);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .current { color: var(--teal); }
.page-hero h1 {
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: 3.75rem; }
}
.italic { font-style: italic; }

/* ===========================
   SERVICES PAGE
   =========================== */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-page-grid { grid-template-columns: 1fr 1fr; }
}
.service-card-2 {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.service-card-2:hover { border-color: rgba(27, 175, 196, 0.5); }
.service-card-2-icon {
  width: 4rem;
  height: 4rem;
  background: var(--slate-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.service-card-2:hover .service-card-2-icon { background: var(--teal); color: #fff; }
.service-card-2 h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.service-card-2 p {
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-card-2-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}
.price-tag {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.625rem;
}

/* Testimonial */
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 50px 100px -20px rgba(10, 91, 176, 0.08);
  border: 1px solid var(--slate-100);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .testimonial-card { flex-direction: row; align-items: center; }
}
.testimonial-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .testimonial-img { width: 50%; height: 600px; }
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}
.testimonial-quote {
  padding: 3rem;
  background: #fff;
}
@media (min-width: 1024px) {
  .testimonial-quote { width: 50%; padding: 5rem; }
}
.testimonial-icon {
  color: var(--teal);
  margin-bottom: 2rem;
  opacity: 0.2;
}
.testimonial-text {
  font-size: 1.25rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
@media (min-width: 1024px) { .testimonial-text { font-size: 1.5rem; } }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-divider { width: 3rem; height: 2px; background: var(--teal); }
.testimonial-author h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author p {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Newsletter */
.newsletter {
  padding: 5rem 0;
  background: var(--navy);
  color: #fff;
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (min-width: 768px) {
  .newsletter-inner { flex-direction: row; }
}
.newsletter-text { max-width: 36rem; }
.newsletter-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.newsletter-text p {
  color: var(--slate-400);
  font-size: 0.875rem;
}
.newsletter-form {
  display: flex;
  width: 100%;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .newsletter-form { width: auto; } }
.newsletter-form input {
  background: transparent;
  padding: 1rem 1.5rem;
  flex: 1;
  outline: none;
  font-size: 0.875rem;
  color: #fff;
  border: none;
}
.newsletter-form input::placeholder { color: var(--slate-500); }
.newsletter-form button {
  background: var(--teal);
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--teal-dark); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; }
}
.about-story-img-wrap { position: relative; }
.about-story-img {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10;
}
.about-story-img img {
  width: 100%;
  filter: grayscale(10%);
  transition: filter 0.7s;
}
.about-story-img:hover img { filter: grayscale(0); }
.about-story-blob {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(27, 175, 196, 0.05);
  border-radius: 9999px;
  filter: blur(48px);
  z-index: 0;
}
.about-story-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--slate-100);
  z-index: 20;
  display: none;
}
@media (min-width: 768px) { .about-story-badge { display: block; } }
.about-story-badge-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-box-navy {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-badge p {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.about-story-eyebrow {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.625rem;
  display: block;
  margin-bottom: 1.5rem;
}
.about-story-content h2 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.about-story-quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid rgba(27, 175, 196, 0.2);
  padding-left: 2rem;
}
.about-story-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.divider-line { height: 1px; width: 5rem; background: var(--slate-200); }
.about-tag {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Pillars */
.pillars-head {
  text-align: center;
  margin-bottom: 6rem;
}
.pillars-head h2 {
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.pillars-head p {
  color: var(--slate-500);
  font-weight: 500;
  font-style: italic;
  max-width: 32rem;
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar-card { text-align: center; padding: 2rem; }
.pillar-icon {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--slate-100);
}
.pillar-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.pillar-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
  font-style: italic;
}

/* Leadership Grid */
.leadership-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .leadership-head { flex-direction: row; }
}
.leadership-head-text { max-width: 36rem; }
.leadership-head h2 {
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}
.leadership-head p {
  color: var(--slate-500);
  font-weight: 500;
  font-style: italic;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--slate-100);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(4, 1fr); }
}
.leader-card {
  background: #fff;
  padding: 2.5rem;
  transition: background 0.3s;
}
.leader-card:hover { background: var(--slate-50); }
.leader-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--brand-50);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.leader-card:hover .leader-avatar { filter: grayscale(0); }
.leader-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.leader-role {
  color: var(--teal);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.leader-card .leader-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
}
.leader-bottom p {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
}

/* Final CTA */
.cta-navy { padding: 6rem 0; background: var(--navy); text-align: center; }
.cta-navy h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 2rem;
  font-family: 'Inter', serif;
}
@media (min-width: 768px) { .cta-navy h2 { font-size: 3rem; } }
.cta-navy p {
  color: var(--slate-400);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(27, 175, 196, 0.3); }
.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--slate-50);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.contact-card:hover .contact-card-icon {
  background: var(--teal);
  color: #fff;
}
.contact-card-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
}
.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  font-style: italic;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (min-width: 1024px) {
  .contact-form-grid { grid-template-columns: 1fr 1fr; }
}
.contact-form-info h2 {
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}
.contact-form-info > p {
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-style: italic;
}
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
}
.feature-item h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.feature-item p {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-style: italic;
  margin-top: 0.25rem;
}
.feature-icon { color: var(--teal); flex-shrink: 0; }

.contact-form-card {
  background: #fff;
  padding: 3rem;
  border-radius: 40px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(27, 175, 196, 0.05);
  border-bottom-left-radius: 100px;
  pointer-events: none;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group label {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
  outline: none;
  transition: all 0.2s;
  font-size: 0.875rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(27, 175, 196, 0.2);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.25rem; padding-right: 2.5rem; }

/* Map Section */
.map-section {
  padding: 8rem 0;
  background: #fff;
}
.map-section .text-center {
  text-align: center;
}
.map-section h2 {
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.map-section h2 span { color: var(--slate-300); }
.map-wrap {
  margin-top: 4rem;
  border-radius: 40px;
  overflow: hidden;
  background: var(--slate-100);
  height: 400px;
  border: 1px solid var(--slate-200);
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.7s;
}
.map-wrap:hover { filter: grayscale(0); }
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.map-pin {
  width: 5rem;
  height: 5rem;
  background: var(--navy);
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.map-overlay-text {
  text-align: center;
  padding: 0 2.5rem;
}
.map-overlay-text p {
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* ===========================
   BOOKING PAGE
   =========================== */
.booking-page {
  padding: 8rem 0 5rem;
  background: var(--slate-50);
  min-height: 100vh;
}
.booking-card {
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--slate-100);
}
.booking-step h2 {
  font-size: 1.875rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.service-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.service-option {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  border-radius: 0.75rem;
  border: 2px solid var(--slate-100);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}
.service-option:hover { border-color: rgba(27, 175, 196, 0.3); }
.service-option.selected {
  border-color: var(--teal);
  background: rgba(27, 175, 196, 0.05);
}
.service-option span { font-weight: 700; color: var(--slate-700); }
.service-option .check { color: var(--teal); display: none; }
.service-option.selected .check { display: block; }

.booking-form { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  outline: none;
  transition: all 0.2s;
  font-size: 1rem;
}
.booking-form input:focus { box-shadow: 0 0 0 2px rgba(27, 175, 196, 0.2); }
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.deposit-box {
  padding: 1.5rem;
  background: rgba(27, 175, 196, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(27, 175, 196, 0.1);
  margin-bottom: 2rem;
}
.deposit-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.deposit-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
}
.deposit-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.deposit-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-style: italic;
}
.booking-actions { display: flex; gap: 1rem; }
.booking-actions .btn-primary { flex: 1; }

.booking-success { text-align: center; padding: 2.5rem 0; }
.success-icon {
  width: 5rem;
  height: 5rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.booking-success h2 {
  font-size: 1.875rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.booking-success p {
  color: var(--slate-500);
  margin-bottom: 2.5rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   LOGIN PAGE
   =========================== */
.login-page {
  padding: 8rem 1.5rem 0;
  min-height: 100vh;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  width: 100%;
  max-width: 28rem;
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--slate-100);
}
.login-card h2 {
  font-size: 1.875rem;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
  font-style: italic;
}
.login-form { display: flex; flex-direction: column; gap: 1.5rem; }
.login-form input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  outline: none;
  font-size: 1rem;
}
.login-form input:focus { box-shadow: 0 0 0 2px rgba(27, 175, 196, 0.2); }
.login-mock {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}
.login-mock-title {
  font-size: 0.625rem;
  color: var(--slate-400);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.login-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.login-mock-grid button {
  font-size: 0.5625rem;
  background: var(--slate-50);
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
}
.login-mock-grid button:hover { background: var(--slate-100); }

/* ===========================
   DASHBOARD
   =========================== */
.dashboard {
  padding: 8rem 0 5rem;
  background: var(--slate-50);
  min-height: 100vh;
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.dashboard-head h1 {
  font-size: 2.25rem;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.dashboard-head p { color: var(--slate-500); }
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .dashboard-grid { grid-template-columns: 2fr 1fr; }
}
.dashboard-main { display: flex; flex-direction: column; gap: 2rem; }
.dashboard-side { display: flex; flex-direction: column; gap: 2rem; }
.dashboard-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--slate-100);
}
.dashboard-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
}
.appt-list { display: flex; flex-direction: column; gap: 1rem; }
.appt-empty {
  color: var(--slate-400);
  padding: 2.5rem 0;
  text-align: center;
  font-style: italic;
}
.appt-item {
  padding: 1.5rem;
  background: var(--slate-50);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--slate-100);
  transition: all 0.2s;
  flex-wrap: wrap;
  gap: 1rem;
}
.appt-item:hover { border-color: rgba(27, 175, 196, 0.2); }
.appt-info { display: flex; align-items: center; gap: 1.5rem; }
.appt-icon {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.05);
}
.appt-info p:first-child {
  font-weight: 700;
  color: var(--brand-600);
}
.appt-date {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.appt-patient {
  font-size: 0.625rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
  font-style: italic;
}
.appt-status {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
}
.refund-link {
  font-size: 0.625rem;
  font-weight: 700;
  color: #fca5a5;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.2s;
}
.refund-link:hover { color: #dc2626; }

.quick-actions {
  background: var(--navy);
  padding: 2rem;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.quick-actions h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quick-actions-list { display: flex; flex-direction: column; gap: 0.75rem; }
.quick-action-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background 0.2s;
}
.quick-action-btn:hover { background: rgba(255,255,255,0.2); }

.payment-card { /* uses dashboard-card */ }
.payment-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.payment-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f0fdf4;
  border-radius: 0.75rem;
  border: 1px solid #dcfce7;
  margin-bottom: 1rem;
  color: #059669;
}
.payment-row p:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
}
.payment-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: #166534;
}
.payment-note {
  font-size: 0.625rem;
  color: var(--slate-400);
  font-weight: 500;
  font-style: italic;
}

/* ===========================
   FOOTER (Premium)
   =========================== */
.footer {
  background: #0B1E33;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(27, 175, 196, 0.4) 50%, transparent 100%);
}

/* Newsletter ribbon */
.footer-newsletter {
  position: relative;
  background: linear-gradient(135deg, #0A5BB0 0%, #0E6FCC 50%, #1BAFC4 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-newsletter::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(125, 221, 240, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fnl-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.fnl-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fnl-text { display: flex; flex-direction: column; gap: 4px; }
.fnl-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}
.fnl-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.fnl-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 5px;
  min-width: 360px;
}
.fnl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.625rem 0.875rem;
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
}
.fnl-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.fnl-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: #fff;
  color: #0A5BB0;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.fnl-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .footer-newsletter-inner { grid-template-columns: 1fr; }
  .fnl-form { min-width: auto; flex-direction: column; }
  .fnl-form button { width: 100%; justify-content: center; padding: 0.75rem; }
}

/* Main footer content */
.footer-main {
  padding: 4rem 0 2.5rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
}

.footer-brand-col { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-brand {
  display: inline-block;
  width: fit-content;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 22rem;
  margin: 0;
}

/* Contact strip in footer */
.footer-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.fcs-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  max-width: 22rem;
}
.fcs-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(27, 175, 196, 0.3);
}
.fcs-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(27, 175, 196, 0.18);
  color: #1BAFC4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcs-item > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.fcs-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.fcs-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}

/* Social */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social a:hover {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

/* Footer columns */
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0 0 1.125rem;
  position: relative;
  padding-bottom: 0.625rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #1BAFC4, transparent);
  border-radius: 999px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0;
  margin: 0;
}
.footer-col ul a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
}
.footer-col ul a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #1BAFC4;
  transition: width 0.2s;
  margin-right: 0;
}
.footer-col ul a:hover {
  color: #1BAFC4;
}
.footer-col ul a:hover::before {
  width: 12px;
  margin-right: 6px;
}

/* Accreditation strip */
.footer-accred {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.footer-accred-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-accred-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-accred-badges span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

/* Footer bottom strip */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-legal a:hover { color: #1BAFC4; }
.legal-divider { color: rgba(255, 255, 255, 0.3); }

@media (max-width: 640px) {
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive helpers */
.hidden-md { display: none; }
@media (min-width: 768px) { .hidden-md { display: block; } }
