/* ============================================
   Sacred Heart College of Nursing - Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;600;700&display=swap');

:root {
  --navy: #0085f7;
  --navy-mid: #153557;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F7F0DC;
  --crimson: #9f0f0a;
  --white: #FFFFFF;
  --off-white: #F9F7F3;
  --gray-light: #EEF0F4;
  --gray: #8A8FA0;
  --text-dark: #011f49;
  --text-body: #3D4661;
  --shadow: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

.display-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-body); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--crimson); }

/* ─── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── HEADER / NAV ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.top-bar {
  background: var(--crimson);
  padding: 6px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--gold-light); }

.nav-main { padding: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo-block { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
	font-size: 25px;
}
.logo-text .sub {
  font-size: 1.0rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}

.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(11,31,58,0.18);
  border: 1px solid rgba(201,168,76,0.2);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
  overflow: hidden;
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.82rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--navy); padding-left: 24px; }
.dropdown-menu a:last-child { border-bottom: none; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white);
  transition: var(--transition); border-radius: 2px;
}

/* ─── PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a4570 100%);
  padding: 70px 0 60px;
  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='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' 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");
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin-bottom: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ─── CARDS ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(11,31,58,0.06);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,31,58,0.16); }

.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.card-body p { font-size: 0.9rem; margin-bottom: 16px; }

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-label { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; color: var(--gray); font-size: 1rem; }

.gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ─── HOME HERO ──────────────────────────────────── */
.home-hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2d50 50%, #1a4570 100%);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(201,168,76,0.06);
  font-family: 'Cinzel', serif;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.home-hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; }
.home-hero h1 { color: var(--white); margin-bottom: 20px; }
.home-hero h1 span { color: var(--gold); }
.home-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap;
}
.hero-stat { border-left: 3px solid var(--gold); padding-left: 16px; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── HIGHLIGHTS BAR ──────────────────────────────── */
.highlights-bar {
  background: var(--gold);
  padding: 16px 0;
}
.highlights-bar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-right: 1px solid rgba(11,31,58,0.15);
}
.highlight-item:last-child { border-right: none; }
.highlight-item .icon { font-size: 1.5rem; }
.highlight-item .text { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ─── NOTICE TICKER ──────────────────────────────── */
.notice-bar {
  background: var(--navy-mid);
  padding: 10px 0;
  overflow: hidden;
}
.notice-bar .container { display: flex; align-items: center; gap: 16px; }
.notice-label {
  background: var(--crimson);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
  white-space: nowrap;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-text {
  display: flex; gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-text span { font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.ticker-text span::before { content: '◆ '; color: var(--gold); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ABOUT PREVIEW ──────────────────────────────── */
.about-preview img, .placeholder-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 8px; display: block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.placeholder-img {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem; font-style: italic;
}
.img-frame {
  position: relative;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.badge-floating {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 140px;
}
.badge-floating .big { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.badge-floating .small { font-size: 0.75rem; color: var(--gray); }

/* ─── COURSES CARDS ──────────────────────────────── */
.course-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,31,58,0.16); }
.course-card-head { background: var(--navy); padding: 28px; }
.course-card-head .icon { font-size: 2.5rem; margin-bottom: 12px; }
.course-card-head h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.course-card-head .tag { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.course-card-body { padding: 24px; }
.course-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.course-meta span {
  background: var(--gray-light);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; color: var(--navy);
}

/* ─── FEATURE LIST ───────────────────────────────── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--gray-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ─── STATS SECTION ──────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-box {
  background: var(--navy-mid);
  padding: 40px 24px; text-align: center;
  border: 1px solid rgba(201,168,76,0.1);
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-box .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ─── FACULTY CARDS ──────────────────────────────── */
.faculty-card {
  background: var(--white);
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.faculty-card:hover { transform: translateY(-4px); }
.faculty-card .photo {
  width: 100%; height: 260px; object-fit: cover;
  background: linear-gradient(135deg, #c9d6e3 0%, #a8b8cc 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--navy);
}
.faculty-card .info { padding: 20px; }
.faculty-card .name { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.faculty-card .role { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.faculty-card .qual { font-size: 0.82rem; color: var(--gray); }

/* ─── GALLERY GRID ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  cursor: pointer; transition: var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item::after {
  content: '🔍';
  position: absolute; inset: 0;
  background: rgba(11,31,58,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ─── ACCORDION ──────────────────────────────────── */
.accordion { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--gray-light); }
.acc-item:last-child { border-bottom: none; }
.acc-header {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.acc-header:hover { background: var(--gold-pale); }
.acc-header.active { background: var(--gold-pale); color: var(--crimson); }
.acc-icon { font-size: 1.2rem; font-weight: 300; transition: var(--transition); }
.acc-header.active .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-body); }
.acc-body.open { display: block; }

/* ─── TIMELINE ───────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--navy));
}
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot {
  position: absolute; left: -32px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.tl-item p { font-size: 0.88rem; margin-bottom: 0; }

/* ─── CONTACT FORM ───────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }

/* ─── INFO BOXES ──────────────────────────────────── */
.info-box {
  background: var(--white);
  border-radius: 8px; padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.info-box h4 { margin-bottom: 12px; }

/* ─── TABLE ──────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--navy); }
thead th { color: var(--white); padding: 14px 18px; text-align: left; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
tbody tr { border-bottom: 1px solid var(--gray-light); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gold-pale); }
tbody td { padding: 13px 18px; font-size: 0.88rem; color: var(--text-body); }

/* ─── NOTICE CARD ────────────────────────────────── */
.notice-card {
  background: var(--white);
  border-radius: 8px; padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 4px solid var(--crimson);
  margin-bottom: 16px;
  transition: var(--transition);
}
.notice-card:hover { transform: translateX(4px); }
.notice-date {
  text-align: center; flex-shrink: 0;
  min-width: 56px;
}
.notice-date .day { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.notice-date .mon { font-size: 0.72rem; text-transform: uppercase; color: var(--crimson); font-weight: 600; letter-spacing: 0.1em; }
.notice-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.notice-content p { font-size: 0.82rem; margin-bottom: 0; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.footer-logo .icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.footer-logo .name { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--white); font-weight: 600; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { font-size: 0.85rem; line-height: 1.8; }
.footer-contact .item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact .item .ic { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ─── MAP ──────────────────────────────────────────── */
.map-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, #c9d6e3 0%, #a8bccf 100%);
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy); font-style: italic;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: 8px; padding: 32px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--gold); opacity: 0.2; position: absolute; top: -12px; left: 20px; line-height: 1; }
.testimonial-text { font-size: 0.95rem; font-style: italic; margin-bottom: 20px; color: var(--text-body); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--gold); }

/* ─── BADGE / TAGS ───────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.badge-gold { background: var(--gold-pale); color: var(--navy); }
.badge-crimson { background: #fce8ef; color: var(--crimson); }
.badge-navy { background: var(--navy); color: var(--white); }

/* ─── UTILITIES ──────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.fw-bold { font-weight: 700; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate { animation: fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .highlights-bar .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--navy); padding: 80px 24px 24px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    overflow-y: auto; gap: 0;
    z-index: 999;
  }
  .nav-links > li > a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); }
  .dropdown-menu a { color: rgba(255,255,255,0.7); border-bottom: none; padding: 8px 16px; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .highlights-bar .container { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .img-frame::after { display: none; }
  .badge-floating { left: 0; position: relative; display: inline-block; margin-top: 16px; }
}

@media (max-width: 480px) {
  .highlights-bar .container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
}
