/* =========================================================
   Winter Park Care & Rehabilitation Center — Styles
   Colors: Warm sage green + soft cream + muted gold
   Fonts:  Cormorant Garamond (display) + Lato (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:        #F5F1EB;
  --cream-dark:   #EDE7DC;
  --sage:         #7A9E87;
  --sage-dark:    #5C7D69;
  --sage-light:   #A8C4B0;
  --gold:         #B8976A;
  --gold-light:   #D4B48C;
  --charcoal:     #2C2C2C;
  --slate:        #4A5568;
  --muted:        #7A8694;
  --white:        #FFFFFF;
  --divider:      #D9D0C4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.15);

  --ease:         0.3s ease;
  --container:    1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
p     { margin-bottom: 1rem; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

/* ── Layout ── */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section      { padding: 80px 0; }
.text-center { text-align: center; }
.bg-white    { background: var(--white); }
.bg-cream    { background: var(--cream); }
.bg-sage     { background: var(--sage); color: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  border-radius: 2px;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a07d55; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245, 241, 235, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo img { height: 52px; width: 52px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--charcoal); }
.logo-sub  { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
/* Footer overrides — white text on dark bg */
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub  { color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover             { color: var(--sage-dark); }
.nav-link:hover::after,
.nav-link.active::after     { transform: scaleX(1); }
.nav-link.active            { color: var(--sage-dark); }

.nav-cta {
  margin-left: 12px;
  background: var(--sage);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--divider);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { display: block; padding: 10px 0; }
.mobile-nav .nav-cta  { margin: 12px 0 0; text-align: center; display: block; padding: 12px; }

/* ── Footer ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub  { color: var(--gold-light); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.8; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links li   { margin-bottom: 10px; }
.footer-links a    { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }

.footer-contact p  { font-size: 0.88rem; line-height: 1.9; }
.footer-contact a  { color: var(--sage-light); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Inner Page Hero ── */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 60%, var(--sage-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); position: relative; }
.page-hero p  { font-size: 1.05rem; opacity: 0.88; max-width: 800px; margin: 12px auto 0; position: relative; white-space: nowrap; }

/* ── Cards ── */
.card { background: var(--white); border-radius: 4px; box-shadow: var(--shadow-sm); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 2px;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 135, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Scroll Animations ── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ── Shared CTA Banner ── */
.cta-banner  { padding: 64px 0; }
.cta-inner   { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-buttons { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Form Success State ── */
.form-success { text-align: center; padding: 48px 32px; }

/* ==========================================================
   HOME PAGE
   ========================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: 80px;
  display: flex;
  align-items: flex-end;
  background: url('../images/hero-main.jpg') center top / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,42,35,0.78) 0%, rgba(30,42,35,0.50) 60%, rgba(30,42,35,0.20) 100%);
}
.hero-content {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 640px;
  padding: 0 24px;
  color: var(--white);
  animation: heroFadeIn 1s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); color: var(--white); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.hero-tagline    { font-size: 1.15rem; font-style: italic; font-family: var(--font-display); color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.hero-actions    { display: flex; gap: 16px; flex-wrap: wrap; }



/* Stats Bar */
.stats-bar   { padding: 36px 0; }
.stats-grid  { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat        { text-align: center; padding: 16px 48px; flex: 1; min-width: 160px; }
.stat-number { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-label  { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* Promise */
.promise        { padding: 100px 0; }
.promise-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.promise-image  { position: relative; }
.promise-image img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-lg); }
.promise-badge  { position: absolute; bottom: -24px; right: -24px; background: var(--gold); color: var(--white); padding: 20px 28px; display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: var(--shadow-md); border-radius: 2px; }
.promise-text h2 { margin-bottom: 20px; }
.promise-text p  { color: var(--slate); }

/* Home Services Grid */
.services-preview { padding: 100px 0; }
.services-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card     { display: block; padding: 36px 28px; background: var(--cream); border: 1px solid var(--divider); border-radius: 4px; transition: all var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage-light); background: var(--white); }
.service-icon     { width: 56px; height: 56px; background: rgba(122,158,135,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage); margin-bottom: 20px; transition: all var(--ease); }
.service-card:hover .service-icon { background: var(--sage); color: var(--white); }
.service-card h3  { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p   { font-size: 0.9rem; color: var(--slate); margin: 0; }
.service-card--cta { background: var(--charcoal); border-color: var(--charcoal); }
.service-card--cta h3 { color: var(--white); }
.service-card--cta p  { color: rgba(255,255,255,0.7); }
.card-link { display: inline-block; margin-top: 16px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }

/* Why Choose Us */
.why-us   { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 16px; }
.why-card { background: var(--white); padding: 48px 40px; border-radius: 4px; border-left: 3px solid var(--sage); box-shadow: var(--shadow-sm); transition: all var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.why-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--divider); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.why-card p  { color: var(--slate); font-size: 0.95rem; margin: 0; }

/* Gallery Strip */
.gallery-strip { padding: 0; }
.gallery-grid  { display: grid; grid-template-columns: repeat(4, 1fr); height: 320px; }
.gallery-item  { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 20px 16px; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ==========================================================
   ABOUT PAGE
   ========================================================== */

.about-promise  { padding: 100px 0; }
.promise-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.promise-layout h2 { margin-bottom: 20px; }
.promise-layout p  { color: var(--slate); }
.promise-photo img { width: 100%; height: 480px; object-fit: cover; object-position: center top; border-radius: 4px; box-shadow: var(--shadow-lg); display: block; }

.philosophy { padding: 100px 0; }
.phil-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 16px; }
.phil-card  { padding: 40px 36px; background: var(--cream); border-radius: 4px; border: 1px solid var(--divider); transition: all var(--ease); }
.phil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phil-icon  { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.phil-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.phil-card p  { color: var(--slate); font-size: 0.95rem; margin: 0; }

.facility-section { padding: 100px 0; }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.facility-photo [style*="grid-area"] { grid-area: unset; }
.facility-photo { position: relative; overflow: hidden; border-radius: 4px; height: 260px; }
.facility-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.facility-photo:hover img { transform: scale(1.05); }
.facility-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 20px 14px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.leadership  { padding: 100px 0; }
.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card { background: var(--cream); border: 1px solid var(--divider); border-radius: 4px; padding: 40px 32px; text-align: center; transition: all var(--ease); }
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.leader-avatar span { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--white); }
.leader-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.leader-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.leader-contact { display: flex; flex-direction: column; gap: 10px; }
.leader-contact a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--slate); transition: color var(--ease); word-break: break-all; }
.leader-contact a:hover { color: var(--sage-dark); }

/* ==========================================================
   SERVICES PAGE
   ========================================================== */

.health-services { padding: 100px 0; }
.health-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.health-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
.health-card { display: flex; gap: 28px; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; padding: 40px 36px; transition: all var(--ease); }
.health-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.hc-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: rgba(122,158,135,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; transition: all var(--ease); }
.health-card:hover .hc-icon { background: var(--sage); color: var(--white); }
.hc-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.hc-body p  { color: var(--slate); font-size: 0.92rem; margin-bottom: 16px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--slate); }
.service-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

.specialty-services { padding: 100px 0; }
.specialty-grid     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spec-card { text-align: center; padding: 36px 20px; background: var(--cream); border: 1px solid var(--divider); border-radius: 4px; transition: all var(--ease); }
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage-light); background: var(--white); }
.spec-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(122,158,135,0.1); color: var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all var(--ease); }
.spec-card:hover .spec-icon { background: var(--sage); color: var(--white); }
.spec-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.spec-card p  { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ==========================================================
   CAREERS PAGE
   ========================================================== */

.why-work      { padding: 100px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card  { text-align: center; padding: 40px 24px; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; transition: all var(--ease); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon  { width: 60px; height: 60px; border-radius: 50%; background: rgba(122,158,135,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.benefit-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.benefit-card p  { font-size: 0.9rem; color: var(--slate); margin: 0; }

.positions      { padding: 100px 0; }
.positions-list { margin-top: 16px; display: flex; flex-direction: column; border: 1px solid var(--divider); border-radius: 4px; overflow: hidden; }
.position-item  { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; background: var(--cream); border-bottom: 1px solid var(--divider); gap: 24px; transition: background var(--ease); }
.position-item:last-child { border-bottom: none; }
.position-item:hover { background: var(--white); }
.position-dept  { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.position-info h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 8px; }
.position-tags  { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-dark); background: rgba(122,158,135,0.12); padding: 3px 10px; border-radius: 99px; }

.application-section { padding: 100px 0; }
.application-layout  { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
.application-intro h2 { margin-bottom: 16px; }
.application-intro p  { color: var(--slate); margin-bottom: 32px; }
.contact-person { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; }
.cp-avatar { width: 48px; height: 48px; border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 500; flex-shrink: 0; }
.application-form { background: var(--white); padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.file-upload { border: 2px dashed var(--divider); border-radius: 4px; padding: 32px; text-align: center; cursor: pointer; transition: all var(--ease); position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.file-upload svg { color: var(--muted); margin-bottom: 4px; }
.file-upload p   { font-size: 0.88rem; color: var(--muted); margin: 0; }
.file-upload:hover,
.file-upload.drag-over { border-color: var(--sage); background: rgba(122,158,135,0.05); }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-section { padding: 100px 0; }
.contact-layout  { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 8px; }
.info-block   { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; transition: all var(--ease); }
.info-block:hover { box-shadow: var(--shadow-sm); }
.info-icon    { width: 44px; height: 44px; border-radius: 50%; background: rgba(122,158,135,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label   { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-block p { margin: 0; font-size: 0.93rem; color: var(--charcoal); line-height: 1.6; }
.info-link    { font-size: 0.88rem; color: var(--sage); font-weight: 700; display: inline-block; margin-top: 4px; transition: color var(--ease); }
.info-link:hover { color: var(--sage-dark); }

.quick-contacts { padding: 24px; background: var(--charcoal); border-radius: 4px; margin-top: 8px; }
.quick-contact-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.quick-contact-item:last-child { border-bottom: none; }
.qc-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: var(--white); flex-shrink: 0; }

.contact-form-wrap h2 { font-size: 2rem; margin-bottom: 8px; }
.contact-form-wrap p  { color: var(--slate); margin-bottom: 24px; }
.tour-toggle  { display: flex; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.toggle-btn   { flex: 1; padding: 12px 16px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: transparent; border: none; cursor: pointer; color: var(--muted); transition: all var(--ease); }
.toggle-btn.active { background: var(--sage); color: var(--white); }

.contact-form { padding: 40px; }
.form-row-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.map-section     { padding: 0; }
.map-placeholder { position: relative; }
.map-overlay     { position: absolute; top: 24px; left: 24px; z-index: 10; display: flex; flex-direction: column; align-items: flex-start; pointer-events: none; }
.map-pin         { margin-bottom: -8px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
.map-card        { background: var(--white); border-radius: 4px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 4px; pointer-events: all; max-width: 280px; }
.map-card strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal); }
.map-card span   { font-size: 0.85rem; color: var(--slate); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  .main-nav, .nav-cta        { display: none; }
  .hamburger                  { display: flex; }
  .footer-grid                { grid-template-columns: 1fr 1fr; gap: 32px; }
  .promise-grid               { grid-template-columns: 1fr; gap: 48px; }
  .promise-image img          { height: 360px; }
  .promise-badge              { right: 16px; bottom: 16px; }
  .services-grid              { grid-template-columns: repeat(2, 1fr); }
  .why-grid                   { grid-template-columns: 1fr; }
  .gallery-grid               { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gallery-item               { height: 200px; }
  .cta-inner                  { flex-direction: column; text-align: center; }
  .promise-layout             { grid-template-columns: 1fr; gap: 40px; }
  .phil-grid                  { grid-template-columns: 1fr; }
  .facility-grid              { grid-template-columns: 1fr; }
  .facility-photo             { height: 220px; }
  .leader-grid                { grid-template-columns: 1fr; }
  .health-grid                { grid-template-columns: 1fr; }
  .health-card:last-child:nth-child(odd) { max-width: 100%; }
  .health-card                { flex-direction: column; gap: 20px; }
  .specialty-grid             { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid              { grid-template-columns: repeat(2, 1fr); }
  .application-layout         { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout             { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  section                     { padding: 56px 0; }
  .hero                       { min-height: 500px; }
  .hero-content h1            { font-size: 2.4rem; }
  .hero-actions               { flex-direction: column; }
  .hero-actions .btn          { width: 100%; justify-content: center; }
  .services-grid              { grid-template-columns: 1fr; }
  .gallery-grid               { grid-template-columns: 1fr; }
  .gallery-item               { height: 220px; }
  .stat                       { padding: 16px 24px; }
  .stat-divider               { display: none; }
  .footer-grid                { grid-template-columns: 1fr; gap: 28px; }
  .specialty-grid             { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .spec-card                  { padding: 24px 16px; }
  .benefits-grid              { grid-template-columns: 1fr 1fr; gap: 16px; }
  .position-item              { flex-direction: column; align-items: flex-start; gap: 16px; }
  .application-form           { padding: 28px 20px; }
  .form-row                   { grid-template-columns: 1fr; }
  .contact-form               { padding: 24px 20px; }
  .form-row-2                 { grid-template-columns: 1fr; }
  .map-overlay                { position: static; padding: 20px; }
}
