/* ==========================================================================
   HEALTHCARE TECH STRATEGY & ARCHITECTURE - COMPONENTS STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION & MOBILE DRAWER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 13, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--trans-base);
}

.site-header.scrolled {
  background: rgba(8, 13, 26, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-clinical);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 16px rgba(20, 184, 166, 0.4);
}

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

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--teal-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color var(--trans-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--cyan-400);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan-400);
  box-shadow: 0 0 8px var(--cyan-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: background var(--trans-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass);
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--trans-base);
}

.mobile-toggle span:nth-child(2) {
  margin: 5px 0;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: rgba(10, 17, 34, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  padding: 5.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--trans-slow);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-base);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--trans-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--cyan-400);
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(72px + clamp(3.5rem, 7vw, 6.5rem));
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 80vw, 900px);
  height: clamp(250px, 50vw, 500px);
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.16) 0%, rgba(20, 184, 166, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge-wrap {
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Hero Metrics Bar */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1050px;
  margin: 0 auto 3rem auto;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.metric-card {
  background: rgba(13, 21, 39, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--trans-base);
}

.metric-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-2px);
  background: rgba(18, 30, 56, 0.8);
}

.metric-number {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.35;
}

/* Trust Badges Marquee / Bar */
.trust-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  background: rgba(8, 13, 26, 0.5);
}

.trust-title {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity var(--trans-fast);
}

.trust-badge-item:hover {
  opacity: 1;
  color: var(--cyan-400);
}

.trust-badge-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   3. DUAL-PERSPECTIVE INTERACTIVE SWITCHER
   -------------------------------------------------------------------------- */
.perspective-section {
  background: rgba(11, 18, 35, 0.4);
}

.lens-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.lens-toggle-group {
  display: inline-flex;
  background: rgba(13, 21, 39, 0.9);
  padding: 0.375rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.lens-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--trans-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}

.lens-btn.active {
  background: var(--grad-clinical);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.4);
}

.lens-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .lens-panel {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.lens-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
}

.lens-content p {
  margin-bottom: 1.5rem;
}

.lens-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.lens-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.point-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Architecture Visualizer Mock inside Lens */
.arch-visualizer {
  background: #0b1328;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-mono);
  position: relative;
}

.visualizer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--emerald-400);
}

.arch-node-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arch-node {
  background: rgba(20, 32, 60, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  transition: all var(--trans-fast);
}

.node-info {
  display: flex;
  flex-direction: column;
}

.arch-node:hover {
  border-color: var(--cyan-400);
  background: rgba(26, 42, 78, 0.9);
}

.node-title {
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.node-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-400);
  border-radius: var(--radius-sm);
}

.arch-connector {
  display: flex;
  justify-content: center;
  color: var(--teal-400);
  font-size: 0.8rem;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   4. THREE CORE PRACTICE PILLARS
   -------------------------------------------------------------------------- */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.practice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.practice-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  margin-bottom: 1.5rem;
}

.practice-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.practice-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  margin-top: auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--cyan-400);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   5. ARCHITECTURE & TECH STACK MATRIX
   -------------------------------------------------------------------------- */
.stack-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans-fast);
  min-height: 38px;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--cyan-400);
  color: var(--cyan-400);
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stack-card {
  background: rgba(14, 23, 44, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all var(--trans-fast);
}

.stack-card:hover {
  border-color: var(--border-glass);
  background: rgba(18, 30, 58, 0.85);
  transform: translateY(-2px);
}

.stack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.stack-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stack-category {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--teal-300);
  padding: 0.2rem 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 4px;
}

.stack-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. CASE STUDIES SECTION
   -------------------------------------------------------------------------- */
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .case-study-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.case-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.case-card p {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}

.case-impact-box {
  background: rgba(6, 182, 212, 0.08);
  border-left: 3px solid var(--cyan-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}

.case-impact-metric {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.case-impact-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.case-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. INTERACTIVE PROJECT SCOPING DIAGNOSTIC TOOL
   -------------------------------------------------------------------------- */
.diagnostic-container {
  max-width: 840px;
  margin: 0 auto;
  background: var(--grad-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.diagnostic-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.diagnostic-step-num {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.diagnostic-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  flex-grow: 1;
  margin: 0 1.25rem;
  overflow: hidden;
}

.diagnostic-bar-fill {
  height: 100%;
  width: 33.33%;
  background: var(--grad-primary);
  transition: width var(--trans-base);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-question {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-card {
  background: rgba(13, 21, 41, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: all var(--trans-fast);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 48px;
}

.option-card:hover {
  border-color: var(--border-glass);
  background: rgba(20, 34, 66, 0.85);
}

.option-card.selected {
  border-color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.12);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2);
}

.option-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.option-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.diagnostic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

/* Diagnostic Result Box */
.result-box {
  background: rgba(11, 20, 42, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.result-title {
  font-size: 1.35rem;
  color: var(--cyan-400);
  margin-bottom: 0.75rem;
}

.result-blueprint {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin: 1.25rem 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. CONSULTANT PROFILE & CREDENTIALS
   -------------------------------------------------------------------------- */
.profile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .profile-card {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
  }
}

.profile-avatar-wrap {
  text-align: center;
  position: relative;
}

.profile-avatar {
  width: min(220px, 60vw);
  height: min(220px, 60vw);
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  background: linear-gradient(135deg, #0d9488 0%, #1e293b 100%);
  border: 3px solid var(--cyan-400);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-mono);
}

.profile-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.credential-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.profile-info h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.profile-role {
  color: var(--teal-300);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.profile-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .profile-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
}

.pillar-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cyan-400);
  margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. CONTACT & BOOKING FORM
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(9, 15, 30, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--trans-fast);
  min-height: 46px;
}

.form-control:focus {
  border-color: var(--cyan-400);
  background: rgba(13, 21, 42, 0.95);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-400);
  color: #a7f3d0;
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #050812;
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
}

.footer-link:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.compliance-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.5;
}
