/* ============================================================
   Hampton Management – Main Stylesheet
   ============================================================ */

/* 1. Design Tokens */
:root {
  --navy:        #1C3D6E;
  --navy-dark:   #122847;
  --navy-light:  #2E5499;
  --gold:        #C8A84C;
  --gold-dark:   #A88A35;
  --gold-light:  #F0D98A;
  --white:       #FFFFFF;
  --gray-50:     #F7F9FC;
  --gray-100:    #EEF2F8;
  --gray-200:    #DDE5F0;
  --gray-400:    #9AA5B8;
  --gray-600:    #5A6478;
  --gray-800:    #2C3A50;
  --gray-900:    #1A2744;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --transition: 0.3s ease;
  --max-w: 1200px;
  --nav-h: 80px;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* 3. Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--gray-600); line-height: 1.8; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }

/* 4. Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section      { padding: 5rem 0; }
.section-sm   { padding: 3rem 0; }
.section-bg   { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--gray-900); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* 5. Section Headers */
.section-header       { text-align: center; margin-bottom: 3.5rem; }
.section-header h2    { margin-bottom: 1rem; }
.section-header p     { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28,61,110,0.35);
}
.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* 7. Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav.scrolled .nav-logo { filter: none; }
.nav.scrolled .nav-link { color: var(--gray-800); }
.nav.scrolled .nav-link:hover { color: var(--navy); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo img { height: 72px; width: auto; }
.nav-logo-white { display: block; }
.nav-logo-dark  { display: none; }
.nav.scrolled .nav-logo-white { display: none; }
.nav.scrolled .nav-logo-dark  { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { background: var(--gray-100); }
.nav-cta { margin-left: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .hamburger span { background: var(--navy); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { color: var(--gray-800); padding: 0.75rem 1rem; }
.nav-mobile .nav-link:hover { color: var(--navy); background: var(--gray-100); }
.nav-mobile .btn { margin-top: 0.75rem; justify-content: center; }

/* 8. Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,71,0.95) 0%, rgba(28,61,110,0.80) 60%, rgba(18,40,71,0.70) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 2rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; }
.breadcrumb   { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.breadcrumb a, .breadcrumb span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* 9. Stats Bar */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* 10. Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.service-card p  { margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 0.75rem; }

/* 11. About Preview (two-column) */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.about-image-badge .badge-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-image-badge .badge-lbl { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.about-text .eyebrow { color: var(--gold); }
.about-text h2 { margin: 0.75rem 0 1.25rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  font-size: 1rem;
}
.about-feature-text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.about-feature-text p  { font-size: 0.9rem; margin: 0; }

/* 12. Why Choose Us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--navy); color: var(--gold); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.65rem; }
.why-card p  { font-size: 0.9rem; margin: 0; }

/* 13. Facility Cards */
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facility-card:hover .facility-img img { transform: scale(1.05); }
.facility-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}
.facility-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.facility-body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.facility-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.facility-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.facility-meta-item i { color: var(--navy); margin-top: 2px; width: 14px; flex-shrink: 0; }
.facility-body p { font-size: 0.9rem; flex: 1; margin-bottom: 1.5rem; }
.facility-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: auto; }

/* Facility cards on locations page (wider) */
.location-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-lg); }
.location-img {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.location-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.location-card:hover .location-img img { transform: scale(1.04); }
.location-body { padding: 2.5rem; }
.location-type {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.location-body h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.location-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.location-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.location-meta-item i { color: var(--navy); margin-top: 3px; width: 16px; flex-shrink: 0; }
.location-body p { font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.8; }
.location-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 14. Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-200);
}
.testimonial-author-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.95rem;
}
.testimonial-author-sub {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.testimonial-facility {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-100);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* 15. CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::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='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A84C' fill-opacity='0.05'%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/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 16. Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.value-icon {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; margin: 0; }

/* 17. Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
#facilities-map { height: 480px; width: 100%; }
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm) !important; }
.map-popup-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.map-popup-type  { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; }
.map-popup-addr  { font-size: 0.825rem; color: var(--gray-600); margin-top: 0.25rem; }
.map-popup-link  { display: inline-block; margin-top: 0.5rem; font-size: 0.825rem; font-weight: 600; color: var(--navy); }

/* 18. Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.contact-item-val {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.6;
}
.contact-item-val a { transition: color var(--transition); }
.contact-item-val a:hover { color: var(--navy); }
.contact-hours { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.hours-row span:first-child { color: var(--gray-600); }
.hours-row span:last-child { color: var(--gray-900); font-weight: 500; }

/* 19. Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { margin-bottom: 2rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,61,110,0.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-status.success { background: #d4edda; color: #155724; display: block; }
.form-status.error   { background: #f8d7da; color: #721c24; display: block; }

/* 20. About Page Specific */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: var(--gray-100); }
.mv-card.mission h3, .mv-card.mission p { color: var(--white); }
.mv-card.vision  h3 { color: var(--navy); }
.mv-card.vision  p  { color: var(--gray-600); }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.mv-card.mission .mv-icon { color: var(--gold); }
.mv-card.vision  .mv-icon { color: var(--navy); }

/* Story section */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img img { width: 100%; height: 440px; object-fit: cover; }

/* 21. Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 1.25rem 0 1.75rem;
  max-width: 300px;
}
.footer-logo img { height: 86px; background: white; padding: 4px 8px; border-radius: 6px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; font-size: 0.875rem; }
.footer-contact-item span {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.825rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* 22. Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* 23. Admin Styles */
.admin-body { background: #f0f2f5; }
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login-card img { height: 60px; margin: 0 auto 2rem; }
.admin-login-card h2 { margin-bottom: 0.5rem; }
.admin-login-card p  { margin-bottom: 2rem; font-size: 0.9rem; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--navy-dark);
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-logo img { height: 44px; filter: brightness(0) invert(1); }
.admin-nav { padding: 1.5rem 0; flex: 1; }
.admin-nav-label {
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-link i { width: 16px; text-align: center; }
.admin-nav-link:hover, .admin-nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.admin-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h1 { font-size: 1.25rem; color: var(--navy); }
.admin-content { padding: 2rem; flex: 1; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.admin-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--navy);
}
.admin-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-card label { font-size: 0.825rem; }
.admin-card input, .admin-card select, .admin-card textarea {
  font-size: 0.875rem;
  padding: 0.7rem 0.875rem;
}
.admin-card textarea { min-height: 100px; }
.admin-alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
  margin-bottom: 1rem;
}
.admin-alert.success { background: #d4edda; color: #155724; display: block; }
.admin-alert.error   { background: #f8d7da; color: #721c24; display: block; }
.admin-dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--navy);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-stat-card.gold { border-left-color: var(--gold); }
.admin-stat-card .stat-icon {
  width: 50px; height: 50px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
}
.admin-stat-card.gold .stat-icon { color: var(--gold-dark); }
.admin-stat-card h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 0.15rem; }
.admin-stat-card p  { font-size: 0.825rem; color: var(--gray-600); margin: 0; }
.admin-accordion { margin-bottom: 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); }
.admin-accordion-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition);
}
.admin-accordion-header:hover { background: var(--gray-100); }
.admin-accordion-header i { transition: transform var(--transition); }
.admin-accordion.open .admin-accordion-header i { transform: rotate(180deg); }
.admin-accordion-body { display: none; padding: 1.25rem; border-top: 1px solid var(--gray-200); }
.admin-accordion.open .admin-accordion-body { display: block; }

/* Utility */
.hidden { display: none !important; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-2  { margin-bottom: 1rem; }
.w-full { width: 100%; }

/* 24. Responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-preview { gap: 3rem; }
  .story-grid { gap: 3rem; }
}

@media (max-width: 960px) {
  .grid-4, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .location-card { grid-template-columns: 1fr; }
  .location-img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .about-preview, .story-grid { grid-template-columns: 1fr; }
  .about-image-badge { left: 1rem; }
  .about-image-wrap img { height: 360px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .location-card { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .values-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-dashboard-grid { grid-template-columns: 1fr; }
  .admin-card .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .cta-section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .grid-4, .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  .cta-actions .btn { width: 100%; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .admin-content { padding: 1rem; }
}
