/* ============================================
   향남노블케어 - Global Styles
   Color Palette: Deep Teal + Warm Beige + White
   ============================================ */

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a5c4c;
  --color-primary-dark: #0f3d32;
  --color-primary-light: #2a7a66;
  --color-accent: #c8a96e;
  --color-accent-light: #d4bc8a;
  --color-warm-bg: #f9f5ef;
  --color-warm-bg-alt: #f0ebe3;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-white: #ffffff;
  --color-border: #e0d8cc;
  --color-overlay: rgba(15, 61, 50, 0.7);

  --font-heading: 'Noto Serif KR', serif;
  --font-body: 'Noto Sans KR', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.8rem auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--warm {
  background: var(--color-warm-bg);
}

.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(28%) sepia(30%) saturate(1200%) hue-rotate(120deg) brightness(95%);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-primary);
}

.header__nav a.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background var(--transition);
}

.header__nav a.header__cta::after {
  display: none !important;
}

.header__nav a.header__cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 50, 0.3) 0%, rgba(26, 92, 76, 0.2) 50%, rgba(42, 122, 102, 0.25) 100%);
  z-index: 1;
}

.hero__watermark {
  position: absolute;
  left: -200px;
  bottom: -50px;
  height: 500px;
  width: auto;
  opacity: 0.08;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--color-accent-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero__desc {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero__scroll span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* === Values Grid === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: var(--color-warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}

.value-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.value-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* === Feature Sections === */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-warm-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 4rem;
}

.feature__content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature__content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.feature__list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 5rem 1.5rem;
  color: var(--color-white);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section .cta-phone {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--color-accent-light);
}

/* === Footer === */
.footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 3rem 0 2rem;
  font-size: 0.85rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__info p {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer__title {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer__links a {
  display: block;
  padding: 0.3rem 0;
  color: #aaa;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* === Page Hero (subpages) === */
.page-hero {
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  text-align: center;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.page-hero__inner {
  padding-top: 3.5rem;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* === Cards === */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* === Table Styles === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.price-table th {
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.price-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-warm-bg);
}

.price-table tbody tr:hover {
  background: var(--color-warm-bg-alt);
}

.price-note {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--color-warm-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.price-note li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.price-note li::before {
  content: '※ ';
  color: var(--color-accent);
  font-weight: 600;
}

/* === Organization Chart === */
.org-chart {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.org-chart__level {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.org-chart__level--top {
  margin-bottom: 0;
}

.org-chart__level--teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.org-chart__connector {
  width: 2px;
  height: 28px;
  background: var(--color-border);
  margin: 0 auto;
}

.org-chart__node {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 140px;
  transition: all var(--transition);
}

.org-chart__node:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.org-chart__node--head {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  padding: 1.2rem 2.5rem;
}

.org-chart__node--head .org-chart__role {
  color: rgba(255, 255, 255, 0.8);
}

.org-chart__node--head .org-chart__name {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-white);
}

.org-chart__node--manager {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  padding: 1rem 2rem;
}

.org-chart__node--manager .org-chart__role {
  color: var(--color-white);
  font-weight: 600;
}

.org-chart__role {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}

.org-chart__name {
  font-size: 1rem;
  color: var(--color-text);
}

.org-chart__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .org-chart__level--teams {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-chart__node {
    padding: 0.8rem 1rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .org-chart__level--teams {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}

/* === Program Cards === */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card__img {
  height: 200px;
  overflow: hidden;
}

.program-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-card__img img {
  transform: scale(1.05);
}

.program-card__body {
  padding: 1.5rem;
}

.program-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.program-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.program-card__tag {
  display: inline-block;
  background: var(--color-warm-bg);
  color: var(--color-primary);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* === Map & Directions === */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.directions-grid--equal {
  align-items: stretch;
}

.directions-grid--equal .directions-info {
  height: 100%;
}

.directions-grid--equal .direction-item {
  height: 100%;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--color-warm-bg-alt);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.directions-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.direction-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.direction-item__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--color-warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.direction-item__content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.direction-item__content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* === Facility Gallery === */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.facility-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.facility-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.facility-grid--duo {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.facility-item__image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.facility-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.facility-item:hover .facility-item__image img {
  transform: scale(1.05);
}

.facility-grid--duo .facility-item__label {
  font-size: 1.1rem;
  padding: 1.2rem;
}

.facility-item__label {
  padding: 1rem;
  background: var(--color-white);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}

/* === Greeting Page === */
.greeting-content {
  max-width: 800px;
  margin: 0 auto;
}

.greeting-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  line-height: 1.6;
}

.greeting-body {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text);
  text-align: center;
}

.greeting-body p {
  margin-bottom: 1.5rem;
}

.greeting-sign {
  text-align: right;
  margin-top: 3rem;
  font-family: var(--font-heading);
}

.greeting-sign .role {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.greeting-sign .name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: 0.3rem;
}

/* === Director Bio === */
.director-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-warm-bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
}

.director-bio__col {
  display: flex;
  flex-direction: column;
}

.director-bio__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-accent);
}

.director-bio__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.director-bio__list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.director-bio__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.director-bio__gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.director-bio__gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.director-bio__gallery img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .director-bio {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem;
  }
  .director-bio__gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .director-bio__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Stats Bar === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
  margin-bottom: 0.3rem;
}

.stat-item__label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* === Floating Contact === */
.floating-contact {
  position: fixed;
  bottom: 1.2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.floating-btn--phone {
  background: var(--color-primary);
  color: var(--color-white);
}

.floating-btn--top {
  background: var(--color-white);
  color: var(--color-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.floating-btn--top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Mobile Navigation Overlay === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: var(--color-white);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.active .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.mobile-nav__links a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
  color: var(--color-primary);
}

.mobile-nav__phone {
  margin-top: 2rem;
  text-align: center;
  padding: 1rem;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature--reverse {
    direction: ltr;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .directions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  .header__nav {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__desc {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .section { padding: 3.5rem 0; }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .value-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1.2rem;
  }

  .value-card__icon {
    margin: 0;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .price-table {
    font-size: 0.85rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.7rem 0.8rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item__number {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .greeting-quote {
    font-size: 1.3rem;
  }

  .floating-contact {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__badge {
    font-size: 0.75rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .directions-grid {
    gap: 1.5rem;
  }
}
