/* ── UNILUG SEO Pages — Shared Stylesheet ── */

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

:root {
  --bg:      #1a1a2e;
  --bg2:     #141422;
  --surface: rgba(255,255,255,0.04);
  --border:  rgba(255,255,255,0.10);
  --orange:  #E8622A;
  --gold:    #ffd700;
  --white:   #ffffff;
  --muted:   rgba(255,255,255,0.72);
  --muted2:  rgba(255,255,255,0.42);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Ambient blobs ── */
.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform; contain: strict; }
.blob-a { width: 520px; height: 520px; background: var(--orange); opacity: .15; top: -160px; right: -160px; }
.blob-b { width: 420px; height: 420px; background: var(--gold); opacity: .06; bottom: 80px; left: -160px; }
@media (max-width: 900px) { .blobs { display: none; } }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,46,0.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,98,42,0.20);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 66px;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--white); letter-spacing: 3px; text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  background: none; border: none; color: var(--muted);
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700;
  padding: 8px 16px; border-radius: 10px; transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  border-radius: 10px !important; letter-spacing: 1px !important;
  font-weight: 900 !important; padding: 10px 22px !important;
  box-shadow: 0 0 16px rgba(232,98,42,0.45) !important;
  white-space: nowrap !important;
}
.nav-cta:hover { background: #d0541d !important; box-shadow: 0 0 26px rgba(232,98,42,0.65) !important; transform: translateY(-1px) !important; }

/* ── Ham (mobile) ── */
.ham-btn {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 42px; height: 42px; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12); border-radius: 10px;
  cursor: pointer; padding: 0; flex-shrink: 0;
}
.ham-btn span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .2s; }
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(20,20,34,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px 20px; z-index: 98; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  background: none; border: none; color: var(--muted);
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700;
  padding: 13px 16px; border-radius: 12px; text-align: left; width: 100%;
  transition: all .2s; letter-spacing: .3px; text-decoration: none; display: block;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.mnav-cta { background: var(--orange) !important; color: var(--white) !important; text-align: center !important; margin-top: 6px; font-weight: 900 !important; }

/* ── Breadcrumb — visual nav hidden; SEO preserved via JSON-LD in <head> ── */
nav.breadcrumb { display: none !important; }

/* ── Page section wrapper ── */
.section { max-width: 1100px; margin: 0 auto; padding: 80px 44px; position: relative; z-index: 1; }

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.tag-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,98,42,0.12); border: 1px solid rgba(232,98,42,0.35);
  color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}

/* ── Typography ── */
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 54px; line-height: 1.0; margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 620px; margin-bottom: 48px; font-weight: 700; }
.divider { height: 2px; background: linear-gradient(90deg, var(--orange), transparent); margin: 0; }

/* ── Page hero ── */
.page-hero { padding: 98px 44px 72px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 1.0; margin-bottom: 18px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 640px; margin-bottom: 36px; font-weight: 700; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #E8622A, #FF7C4A); color: var(--white); border: none;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 26px; border-radius: 12px; cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 20px rgba(232,98,42,0.38); text-decoration: none;
}
.btn:hover { background: linear-gradient(135deg, #d0541d, #E8622A); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,98,42,.52); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,98,42,0.06); color: var(--white);
  border: 1.5px solid rgba(232,98,42,0.38);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 24px; border-radius: 12px; cursor: pointer; transition: all .25s; text-decoration: none;
}
.btn-ghost:hover { background: rgba(232,98,42,0.12); border-color: rgba(232,98,42,0.62); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 26px; border-radius: 12px; cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.30); text-decoration: none; border: none;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 22px; position: relative; overflow: hidden;
}
.step-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--orange),transparent); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: rgba(232,98,42,.18); line-height: 1; margin-bottom: 10px; }
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-title { font-weight: 900; font-size: 15px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Accommodation grid ── */
.acc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.acc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px; transition: border-color .2s, transform .2s;
}
.acc-card:hover { border-color: rgba(232,98,42,.4); transform: translateY(-2px); }
.acc-name { font-weight: 900; font-size: 15px; margin-bottom: 4px; }
.acc-provider { font-size: 11px; color: var(--orange); font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.acc-area { font-size: 13px; color: var(--muted); font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* ── Feature cards ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 22px; transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(232,98,42,.4); transform: translateY(-3px); }
.fc-icon { font-size: 32px; margin-bottom: 14px; }
.fc-title { font-weight: 900; font-size: 16px; margin-bottom: 8px; }
.fc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 32px; }
.pricing-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 20px; padding: 36px 28px; position: relative;
}
.pricing-card.featured { border-color: rgba(232,98,42,0.70); }
.pricing-card.featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#E8622A,#FF7C4A); border-radius:20px 20px 0 0; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: 11px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 58px; color: var(--white); line-height: 1; }
.plan-price small { font-size: 20px; color: var(--muted); font-family: 'Nunito',sans-serif; font-weight: 700; }
.plan-desc { font-size: 13px; color: var(--muted); margin: 10px 0 22px; line-height: 1.55; font-weight: 700; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; font-weight: 700; }
.plan-features li::before { content: "✦"; color: var(--orange); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

/* ── WhatsApp CTA ── */
.wa-cta-box {
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.30); border-radius: 22px; padding: 56px 60px; text-align: center;
}
.wa-cta-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; margin-bottom: 10px; }
.wa-cta-box p { color: var(--muted); font-size: 15px; font-weight: 700; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Orange CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg,rgba(232,98,42,.14),rgba(232,98,42,.04));
  border: 1px solid rgba(232,98,42,.3); border-radius: 22px; padding: 64px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; top:-80px; right:-80px; width:260px; height:260px; background:var(--orange); opacity:.12; border-radius:50%; filter:blur(50px); }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 54px; margin-bottom: 12px; }
.cta-banner h2 span { color: var(--orange); }
.cta-banner p { color: var(--muted); font-size: 16px; font-weight: 700; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(232,98,42,.35); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 900; font-size: 15px; gap: 16px; }
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-chev { color: var(--orange); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 700; }
.faq-item.open .faq-a { display: block; }

/* ── Disclaimer ── */
.disclaimer {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px 20px;
  font-size: 12px; color: var(--muted2); line-height: 1.6; font-weight: 700; font-style: italic;
  margin-top: 32px;
}

/* ── Internal links section ── */
.links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.link-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; text-decoration: none; color: var(--white);
  font-weight: 900; font-size: 14px; transition: all .2s; display: block;
}
.link-card:hover { border-color: rgba(232,98,42,.4); color: var(--orange); transform: translateY(-2px); }
.link-card span { display: block; font-size: 11px; color: var(--orange); font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }

/* ── Stats bar ── */
.stats-bar {
  background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.sb-item { padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.sb-item:last-child { border-right: none; }
.sb-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--orange); }
.sb-lbl { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 4px; }

/* ── University badge strip ── */
.uni-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.10); }
.uni-strip-label { font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 700; }
.uni-badge { font-size: 12px; font-weight: 900; color: rgba(255,255,255,0.72); letter-spacing: 0.5px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; padding: 4px 10px; }

/* ── Footer ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 44px 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: 1100px; margin: 0 auto 48px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 40px; margin-bottom: 6px; letter-spacing: 2px; text-decoration: none; color: var(--white); display: block; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 11px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 700; }
.footer-col-title { font-size: 11px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .2s; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.25); font-weight: 700; }

/* ── Toast ── */
.toast { position: fixed; bottom: 28px; right: 28px; background: var(--bg2); border: 1.5px solid var(--orange); border-radius: 14px; padding: 16px 22px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all .3s; pointer-events: none; box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 0 22px; }
  .nav-links { display: none; }
  .ham-btn { display: flex; }
  .breadcrumb { padding: 80px 24px 0; }
  .page-hero { padding: 90px 24px 56px; }
  .page-hero h1 { font-size: 52px; }
  .section { padding: 56px 24px; }
  .section-title { font-size: 42px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .links-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 44px 28px; }
  .wa-cta-box { padding: 44px 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn, .hero-btns .btn-ghost, .hero-btns .btn-wa { width: 100%; justify-content: center; }
  nav, .mobile-nav { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}
@media (max-width: 600px) {
  .acc-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
}
