:root {
  --navy: #0c1a35;
  --navy-mid: #152040;
  --accent: #e8a020;
  --accent-light: #f5c055;
  --green: #2e7d5e;
  --teal: #1a6b78;
  --light-bg: #f5f3ee;
  --card-bg: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  margin: 0;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #cdd6e8;
  font-size: 0.78rem;
  padding: 8px 0;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  gap: 60px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}

.topbar a {
  color: var(--accent-light);
  text-decoration: none;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── NAVBAR ── */
.site-nav {
  background: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.site-nav .navbar-brand img {
  height: 42px;
}

.site-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 8px 14px !important;
  text-transform: uppercase;
  transition: color .2s;
}

.site-nav .nav-link:hover {
  color: var(--accent) !important;
}

/* Dropdown styling */
.site-nav .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
}

.site-nav .dropdown-item {
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}

.site-nav .dropdown-item i {
  color: var(--text-muted);
  transition: all 0.2s;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  background-color: var(--navy);
  color: #ffffff;
}

.site-nav .dropdown-item:hover i,
.site-nav .dropdown-item:focus i {
  color: #ffffff;
}

.btn-enroll {
  background: var(--accent);
  color: #fff !important;
  border-radius: 4px;
  padding: 8px 22px !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s;
}

.btn-enroll:hover {
  background: var(--accent-light) !important;
  color: var(--navy) !important;
}

.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.15);
}

.navbar-toggler-icon {
  filter: none;
}

/* ── HERO ── */
.hero {
  color: #fff;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(12, 26, 53, 0.9) 0%, rgba(21, 32, 64, 0.8) 50%, rgba(26, 44, 80, 0.9) 100%), url("images/slide.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-label {
  display: inline-block;
  background: rgba(232, 160, 32, 0.2);
  border: 1px solid rgba(232, 160, 32, 0.4);
  color: var(--accent-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #9cb8d8;
  margin-bottom: 18px;
}

.hero p {
  color: #8fafc9;
  max-width: 440px;
  line-height: 1.7;
}

.btn-primary-hero {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
}

.btn-primary-hero:hover {
  background: #f5c055;
  color: var(--navy);
}

.btn-outline-hero {
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* ── HERO FEATURE CARDS ── */
.hero-features {
  margin-top: 56px;
}

.feat-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: transform .25s, background .25s;
}

.feat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .12);
}

.feat-card h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.82rem;
  color: #8fafc9;
  margin: 0;
  line-height: 1.6;
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.feat-icon.gold {
  background: rgba(232, 160, 32, .25);
  color: var(--accent-light);
}

.feat-icon.teal {
  background: rgba(26, 107, 120, .35);
  color: #4dd0e1;
}

.feat-icon.green {
  background: rgba(46, 125, 94, .3);
  color: #6fcf97;
}

/* ── SECTION BASE ── */
section {
  padding: 80px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ── ABOUT / STEP IN ── */
.about-section {
  background: var(--light-bg);
}

.about-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-badge i {
  color: var(--accent-light);
  font-size: 1.1rem;
}

.program-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text-dark);
  transition: box-shadow .2s, transform .2s;
}

.program-pill:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.pill-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.pill-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.pill-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.help-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 24px;
  color: #fff;
  margin-top: 20px;
}

.help-box h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.help-box p {
  font-size: 0.82rem;
  color: #8fafc9;
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-help {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
}

.btn-help:hover {
  background: #f5c055;
  color: var(--navy);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: #8fafc9;
  margin-top: 6px;
}

/* ── COURSES ── */
.courses-section {
  background: #fff;
}

.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}

.course-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

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

.course-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.bg-hs {
  background: linear-gradient(135deg, #1a2c50, #2c4a7c);
}

.bg-el {
  background: linear-gradient(135deg, #2e7d5e, #4aa078);
}

.bg-ms {
  background: linear-gradient(135deg, #1a6b78, #2a8fa0);
}

.course-body {
  padding: 20px;
}

.course-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.badge-hs {
  background: rgba(12, 26, 53, .1);
  color: var(--navy);
}

.badge-el {
  background: rgba(46, 125, 94, .12);
  color: var(--green);
}

.badge-ms {
  background: rgba(26, 107, 120, .12);
  color: var(--teal);
}

.course-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.course-title a {
  color: inherit;
  text-decoration: none;
}

.course-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.stars {
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.course-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.instructor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.instructor-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.price del {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-right: 4px;
}

.btn-detail {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

/* ── PLATFORM ── */
.platform-section {
  background: var(--light-bg);
}

.platform-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px dashed var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

/* ── ON-DEMAND / PERSONALIZED ── */
.personalized-section {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.personalized-section .section-title {
  color: #fff;
}

.personalized-section .section-title em {
  color: var(--accent-light);
}

.personalized-section .section-subtitle {
  color: #8fafc9;
}

.online-study-img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.k12-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  margin: 20px 0;
}

.k12-badge .k12 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.k12-badge .k12-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.btn-request {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.btn-request:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* ── EVENTS ── */
.events-section {
  background: #fff;
}

.event-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}

.event-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
  transform: translateY(-2px);
}

.event-date-box {
  min-width: 62px;
  height: 68px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}

.event-date-box .month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8fafc9;
}

.event-date-box .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.event-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 12px;
  background: rgba(12, 26, 53, .08);
  color: var(--navy);
  letter-spacing: 0.04em;
}

.btn-event {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  margin-top: 6px;
  display: inline-block;
}

/* ── NEWS ── */
.news-section {
  background: var(--light-bg);
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}

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

.news-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
}

.news-body {
  padding: 20px;
}

.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.news-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 8px;
}

.news-title a {
  color: inherit;
  text-decoration: none;
}

.news-excerpt {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.news-author {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-read {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #8fafc9;
  padding: 70px 0 30px;
}

.footer-logo {
  height: 38px;
  margin-bottom: 18px;
  filter: brightness(10);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #8fafc9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 6px;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: #8fafc9;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
  margin: 36px 0 20px;
}

.footer-bottom {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ── BTN OUTLINE ── */
.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn-solid-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.btn-solid-accent:hover {
  background: var(--accent-light);
  color: var(--navy);
}

/* ── MISC ── */
.divider-accent {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.placeholder-img {
  background: linear-gradient(135deg, #e8eaf0, #d0d5e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 100px;
  }

  section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .event-card {
    flex-direction: column;
    gap: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Swiper Custom Navigation Arrows & Container */
.testimonialsSwiper {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {
  .testimonialsSwiper {
    padding-left: 50px !important;
    padding-right: 50px !important;
    margin-left: -30px;
    margin-right: -30px;
  }
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
  color: var(--accent);
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: -17px;
}

.testimonialsSwiper .swiper-button-next::after,
.testimonialsSwiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* ── TIMELINE ── */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 70px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.timeline-marker.bg-gold {
  background: var(--accent);
}

.timeline-content {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
}

/* ── ACCORDION ── */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background-color: #fff;
  color: var(--navy);
  font-weight: 600;
  padding: 20px 24px;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background-color: rgba(232, 160, 32, 0.05);
}

.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23152040'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8a020'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-accordion .accordion-body {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
  background-color: rgba(232, 160, 32, 0.05);
}

/* ── CONTACT FORM ── */
.custom-input {
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #f9fafb;
  transition: all 0.3s ease;
}

.custom-input:focus {
  background-color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.1);
  outline: none;
}

/* ── MAP TABS ── */
.custom-map-tabs {
  gap: 10px;
}

.custom-map-tabs .nav-link {
  color: var(--navy);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s ease;
}

.custom-map-tabs .nav-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.custom-map-tabs .nav-link.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
}

/* ── FLOATING ANIMATION ── */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}