/* ============================================================
   EHPS PUBLIC DESIGN SYSTEM
   Brand: ESFANS Health School of Professional Studies
   Primary: #004d66  Secondary: #00bcd4  Accent: #ffd700
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  --brand-primary:   #004d66;
  --brand-secondary: #006688;
  --brand-accent:    #ffd700;
  --brand-teal:      #00bcd4;
  --brand-light:     #e8f4f8;
  --brand-dark:      #002d3d;

  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;

  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12);

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;

  --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin-top: 0;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }

p { margin-top: 0; margin-bottom: 1rem; color: var(--text-mid); }

ul, ol { padding-left: 1.4rem; }

section { padding: 60px 0; }

.container-fluid { padding-left: 16px; padding-right: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.ehps-navbar {
  background: var(--brand-primary) !important;
  padding: 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  min-height: 68px;
}

.ehps-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--white) !important;
}

.ehps-navbar .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  padding: 2px;
}

.ehps-navbar .brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0; /* critical — allows text to shrink inside flex */
}

.ehps-navbar .brand-name {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: .2px;
  /* prevent overflow on all screens */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ehps-navbar .brand-tagline {
  font-size: .68rem;
  color: var(--brand-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Mobile: tighten brand so it never fights the toggler */
@media (max-width: 991px) {
  .ehps-navbar .navbar-brand {
    max-width: calc(100% - 60px); /* leave room for toggler */
    padding-right: 8px;
  }
  .ehps-navbar .brand-logo {
    width: 36px;
    height: 36px;
  }
  .ehps-navbar .brand-name {
    font-size: .78rem;
  }
  .ehps-navbar .brand-tagline {
    display: none; /* hide tagline on small screens to save space */
  }
}

.ehps-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 10px;
  margin-right: 12px;
}

.ehps-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ehps-navbar .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-size: .85rem;
  font-weight: 500;
  padding: 22px 13px !important;
  letter-spacing: .3px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.ehps-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--brand-accent);
  transition: var(--transition);
  border-radius: 2px 2px 0 0;
}

.ehps-navbar .nav-link:hover,
.ehps-navbar .nav-item.active .nav-link {
  color: var(--brand-accent) !important;
}

.ehps-navbar .nav-link:hover::after,
.ehps-navbar .nav-item.active .nav-link::after {
  left: 8px; right: 8px;
}

.ehps-navbar .nav-icon-link {
  color: rgba(255,255,255,.88) !important;
  padding: 22px 14px !important;
  font-size: 1.1rem;
}

.ehps-navbar .nav-icon-link:hover {
  color: var(--brand-accent) !important;
}

/* Mobile nav */
@media (max-width: 991px) {
  .ehps-navbar .navbar-collapse {
    background: var(--brand-dark);
    padding: 0 0 12px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .ehps-navbar .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .ehps-navbar .nav-link::after { display: none; }
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 60%, var(--brand-teal) 100%);
  color: var(--white);
  padding: 56px 20px 48px;
  text-align: center;
  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='%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/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  position: relative;
  margin-bottom: .5rem;
}

.page-hero .breadcrumb-nav {
  position: relative;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

.page-hero .breadcrumb-nav a { color: var(--brand-accent); }
.page-hero .breadcrumb-nav span { margin: 0 6px; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 55%, var(--brand-teal) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-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='%23ffffff' 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");
}

.hero-section .container { position: relative; }

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
  display: block;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-section .hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: .5px;
  margin-bottom: 28px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.3));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-brand {
  background: var(--brand-accent);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-accent);
  letter-spacing: .4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-brand:hover {
  background: transparent;
  color: var(--brand-accent);
  text-decoration: none;
}

.btn-brand-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.5);
  letter-spacing: .4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-brand-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
  text-decoration: none;
}

.btn-primary-solid {
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-primary);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-primary-solid:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--brand-dark);
  padding: 28px 0;
}

.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

@media (max-width: 575px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: block;
  margin-bottom: 8px;
}

.section-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin: 0 auto 20px;
  display: block;
}

.section-divider.left { margin: 0 0 20px; }

/* ============================================================
   CARDS
   ============================================================ */
.ehps-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.ehps-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-teal);
}

.ehps-card .card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ehps-card .card-body {
  padding: 24px;
}

.ehps-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ehps-card .card-text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Course card variant */
.course-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--brand-teal);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-top-color: var(--brand-primary);
}

.course-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.course-card p {
  font-size: .875rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news-card .news-img-wrap {
  overflow: hidden;
  height: 200px;
  background: var(--gray-100);
}

.news-card .news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-card:hover .news-img-wrap img { transform: scale(1.05); }

.news-card .news-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .news-date {
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-card .news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-card .news-excerpt {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.news-card .news-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.news-card .news-link:hover { color: var(--brand-accent); }

/* ============================================================
   GALLERY CARDS
   ============================================================ */
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--gray-100);
}

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

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-card:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,77,102,.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================================
   ABOUT PAGE — INFO CARDS
   ============================================================ */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-teal);
}

.info-card .info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.info-card p, .info-card li {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.info-card ul { padding-left: 1.2rem; margin: 0; }
.info-card li { margin-bottom: 6px; }

/* Why-choose highlight box */
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.highlight-list li {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-teal);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-primary);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
  background: var(--gray-50);
  padding: 60px 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  max-width: 680px;
  margin: 0 auto;
}

.form-card .form-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}

.form-card .form-header h2 {
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.form-card .form-header p {
  font-size: .9rem;
  color: var(--text-mid);
  margin: 0;
}

.ehps-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: .2px;
}

.ehps-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  margin-bottom: 20px;
}

.ehps-input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(0,188,212,.15);
}

.ehps-input.textarea { resize: vertical; min-height: 130px; }

.form-file-hint {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: -14px;
  margin-bottom: 20px;
  display: block;
}

.alert-notice {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 5px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.alert-notice h5 { color: #92400e; margin-bottom: 10px; font-size: 1rem; }
.alert-notice p, .alert-notice li { font-size: .88rem; color: #78350f; margin-bottom: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ehps-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
  font-size: .88rem;
}

.ehps-footer h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.ehps-footer .footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  margin-bottom: 14px;
}

.ehps-footer .footer-school-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ehps-footer .footer-tagline {
  font-size: .78rem;
  color: var(--brand-accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ehps-footer .footer-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--brand-teal);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brand-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  line-height: 1.5;
}

.footer-contact-item .fc-icon {
  color: var(--brand-teal);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a { color: var(--brand-accent); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 16px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--brand-accent); }

/* ============================================================
   PROGRAM SCHEDULE BLOCK
   ============================================================ */
.schedule-block {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
}

.schedule-block h4 { color: var(--brand-accent); margin-bottom: 18px; font-size: 1.2rem; }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .92rem;
}

.schedule-item .s-label {
  font-weight: 700;
  color: var(--brand-accent);
  min-width: 90px;
}

.schedule-item .s-value { color: rgba(255,255,255,.9); }

/* ============================================================
   UPCOMING FACULTIES SECTION
   ============================================================ */
.faculties-section {
  background: var(--gray-50);
  padding: 70px 0;
}

.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

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

.faculty-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.faculty-card .fc-body {
  padding: 18px 20px;
}

.faculty-card .fc-body h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--brand-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--brand-accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-info-card .ci-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}

.contact-info-card .ci-icon {
  font-size: 1.1rem;
  margin-top: 1px;
  color: var(--brand-teal);
  flex-shrink: 0;
}

.contact-info-card a { color: var(--brand-accent); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-brand   { color: var(--brand-primary); }
.text-accent  { color: var(--brand-accent); }
.text-teal    { color: var(--brand-teal); }
.bg-brand     { background: var(--brand-primary); }
.bg-brand-light { background: var(--brand-light); }

.mt-section   { margin-top: 60px; }
.mb-section   { margin-bottom: 60px; }

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  section { padding: 40px 0; }
  .form-card { padding: 28px 20px; }
  .schedule-block { padding: 24px 20px; }
  .info-card { padding: 22px 18px; }
  .hero-section { padding: 50px 0; min-height: auto; }
  .hero-logo-wrap img { width: 140px; height: 140px; }
}
