/* ==========================================================================
   KASS NURSING INSTITUTE - Under Construction & Admissions Open Stylesheet
   ========================================================================== */

:root {
  --primary: #0a369d;
  --primary-dark: #072569;
  --primary-light: #2563eb;
  --teal: #00a896;
  --teal-dark: #028090;
  --teal-light: #e6fffa;
  --accent-pink: #ec4899;
  --accent-orange: #f97316;
  --accent-gold: #f59e0b;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --text-muted: #64748b;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(10, 54, 157, 0.08);
  --shadow-lg: 0 15px 35px rgba(10, 54, 157, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-soft);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Base Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-orange); }

/* Top Announcement Banner */
.top-ticker {
  background: linear-gradient(90deg, #072569, #0a369d, #028090);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ticker-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.ticker-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* Header & Navigation */
.header-main {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-emblem {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(10, 54, 157, 0.25);
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.825rem;
  color: var(--teal-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2px;
}

.brand-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 54, 157, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 6px 18px rgba(10, 54, 157, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(10, 54, 157, 0.05);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-1px);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(10, 54, 157, 0.06) 0%, transparent 60%),
              #f8fafc;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.under-construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.badge-gear {
  animation: rotateGear 6s linear infinite;
  display: inline-block;
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Key Highlights Ribbon */
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-soft);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.hero-pill i {
  color: var(--teal);
}

.hero-pill.pill-accent {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  border-color: #fecdd3;
  color: #be123c;
}

.hero-pill.pill-gold {
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  border-color: #fef08a;
  color: #854d0e;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Launch Countdown Card */
.launch-status-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.launch-status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal), var(--accent-orange));
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title-sm {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0.75rem 0 1.5rem;
}

.progress-bar-inner {
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  border-radius: var(--radius-full);
  position: relative;
  animation: shimmerProgress 2s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmerProgress {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.countdown-unit {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Hero Right: Banner Showcase Card */
.banner-showcase-box {
  position: relative;
  background: #ffffff;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 54, 157, 0.1);
  transition: transform 0.3s ease;
}

.banner-showcase-box:hover {
  transform: translateY(-4px);
}

.banner-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}

.banner-img-wrap:hover .banner-img {
  transform: scale(1.02);
  opacity: 0.95;
}

.banner-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.banner-img-wrap:hover .banner-hover-overlay {
  opacity: 1;
}

.admission-floating-seal {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #ffffff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.4);
  transform: rotate(12deg);
  border: 3px solid #ffffff;
}

.admission-floating-seal span.seal-big {
  font-size: 1.15rem;
}

/* Sections Common */
.section {
  padding: 4.5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Course Cards Section */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.course-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.course-card.card-anm {
  border-color: rgba(236, 72, 153, 0.3);
}

.course-card.card-gnm {
  border-color: rgba(10, 54, 157, 0.25);
}

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

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.course-code {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
}

.card-anm .course-code {
  color: #db2777;
}

.card-gnm .course-code {
  color: var(--primary);
}

.course-fullname {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.course-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.card-anm .course-tag {
  background: #fce7f3;
  color: #9d174d;
}

.card-gnm .course-tag {
  background: #dbeafe;
  color: #1e40af;
}

.course-specs-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-info-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.spec-info-value {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.course-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Salient Features Section */
.features-section {
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  background: #ffffff;
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.15), rgba(10, 54, 157, 0.1));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card:hover .feature-icon-box {
  background: linear-gradient(135deg, var(--teal), var(--primary));
  color: #ffffff;
}

.feature-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Special Offers / Placement Banner */
.highlight-banner {
  background: linear-gradient(135deg, #072569, #0a369d, #028090);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  box-shadow: var(--shadow-lg);
}

.highlight-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.badge-100 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ec4899;
  color: #ffffff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px dashed rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.5);
  margin: 0 auto;
  animation: pulseRotate 10s linear infinite;
}

.badge-100-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-100-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Enquiry Form & Contact Hub */
.enquiry-contact-section {
  background: #f8fafc;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.enquiry-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 54, 157, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-status-alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: none;
}

.form-status-alert.alert-success {
  display: block;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
}

.form-status-alert.alert-error {
  display: block;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* Contact Info Hub */
.contact-hub-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(10, 54, 157, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-item-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 0.2rem;
}

.phone-numbers-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.phone-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.2s;
}

.phone-pill-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.email-pill-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.email-pill-link:hover {
  text-decoration: underline;
}

.affiliation-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.affiliation-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.affiliation-title {
  font-weight: 700;
  color: #166534;
  font-size: 0.95rem;
}

.affiliation-desc {
  font-size: 0.825rem;
  color: #15803d;
}

/* Modal Lightbox for Banner Poster */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.88);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-body {
  padding: 0;
  max-height: 85vh;
  overflow-y: auto;
}

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

.modal-footer {
  padding: 1rem 1.5rem;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
}

/* Sticky Mobile Quick Actions */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1rem;
  z-index: 99;
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.25rem;
  border-radius: var(--radius-sm);
  color: var(--dark-soft);
  gap: 0.2rem;
}

.mobile-action-btn i {
  font-size: 1.15rem;
}

.mobile-action-btn.btn-m-call {
  background: #eef2ff;
  color: var(--primary);
}

.mobile-action-btn.btn-m-wa {
  background: #dcfce7;
  color: #15803d;
}

.mobile-action-btn.btn-m-enquire {
  background: #fee2e2;
  color: #b91c1c;
}

/* Footer */
.footer-main {
  background: var(--dark);
  color: #94a3b8;
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 100%;
  font-size: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .highlight-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ticker-content {
    justify-content: center;
    text-align: center;
  }
  .ticker-links {
    display: none;
  }
  .header-cta-group {
    display: none;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .highlight-banner {
    padding: 2rem 1.5rem;
  }
  .mobile-action-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .countdown-num {
    font-size: 1.35rem;
  }
  .admission-floating-seal {
    width: 75px;
    height: 75px;
    font-size: 0.65rem;
    top: -10px;
    right: -10px;
  }
  .admission-floating-seal span.seal-big {
    font-size: 0.95rem;
  }
}
