:root {
  --navy: #131f56;
  --red: #e20c35;
  --navy-light: #1e2f7a;
  --red-light: #f72a52;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

/* ── Topbar ─────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  padding: .4rem 0;
}

.topbar a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: .75rem 0;
}

.nav-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
}

.nav-brand span {
  color: var(--red);
}

.main-nav .nav-link {
  color: #374151;
  font-weight: 500;
  font-size: .9rem;
  padding: .4rem .9rem !important;
  transition: color .2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--red);
}

.btn-get-started {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .5rem 1.4rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
}

.btn-get-started:hover {
  background: var(--red-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(226, 12, 53, .35);
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 60%, #eff6ff 100%);
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 31, 86, .06) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: .5rem;
}

.hero-desc {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.7;
  margin: 1.2rem 0 2rem;
  max-width: 480px;
}

.btn-hero-primary {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .8rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--red-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 12, 53, .4);
}

.btn-hero-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  border-radius: 8px;
  padding: .8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

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

/* Staircase graphic */
.staircase-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 320px;
}

.stair-figure {
  position: absolute;
  bottom: 140px;
  right: 50px;
  font-size: 5rem;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, .15));
  animation: walk .8s ease-in-out infinite alternate;
}

@keyframes walk {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.stairs {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.stair {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.stair-1 {
  width: 80px;
  height: 80px;
  background: #4ade80;
}

.stair-2 {
  width: 80px;
  height: 130px;
  background: #fb923c;
}

.stair-3 {
  width: 80px;
  height: 180px;
  background: #f97316;
}

.stair-4 {
  width: 80px;
  height: 230px;
  background: var(--red);
}

.hero-circle {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, .12) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ── Page Header (for inner pages) ─────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 60%, #eff6ff 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 31, 86, .06) 0%, transparent 70%);
  right: -100px;
  top: -150px;
  border-radius: 50%;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  position: relative;
}

.page-header .breadcrumb-wrap {
  position: relative;
  color: #6b7280;
  font-size: .9rem;
  margin-top: .5rem;
}

.page-header .breadcrumb-wrap a {
  color: var(--red);
  text-decoration: none;
}

/* ── Features Strip ─────────────────────────────────────────────────── */
.features-strip {
  background: #fff;
  padding: 3.5rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all .2s;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(19, 31, 86, .1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(226, 12, 53, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--red);
}

.feature-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}

.feature-card p {
  color: #6b7280;
  font-size: .85rem;
  margin: 0;
}

/* ── About Section ──────────────────────────────────────────────────── */
.about-section {
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
  padding: 5rem 0;
}

.about-section .section-tag {
  display: inline-block;
  background: rgba(226, 12, 53, .1);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.about-section p {
  color: #4b5563;
  line-height: 1.8;
}

.tier-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.tier-pill {
  padding: .45rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: .82rem;
}

.t1 { background: #fef3c7; color: #b45309; }
.t2 { background: #dbeafe; color: #1d4ed8; }
.t3 { background: #dcfce7; color: #15803d; }
.t4 { background: #f3e8ff; color: #7c3aed; }
.t5 { background: #fce7f3; color: #be185d; }

/* ── Packages Section ───────────────────────────────────────────────── */
.packages-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .02);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.packages-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(226, 12, 53, .05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.section-label {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .8);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.packages-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
}

.pkg-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .25s;
  position: relative;
  z-index: 1;
}

.pkg-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.pkg-card.featured {
  border-color: var(--red);
  background: rgba(226, 12, 53, .1);
}

.pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 20px;
  letter-spacing: .5px;
}

.pkg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}

.pkg-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pkg-price {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: .5rem 0;
}

.pkg-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: .6;
}

.pkg-card .tier-row {
  display: flex;
  justify-content: center;
  gap: .3rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tier-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
}

/* ── CTA Section ────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #f9fafb 0%, #e0f2fe 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
}

.cta-section p {
  color: #4b5563;
  font-size: 1rem;
  max-width: 500px;
  margin: 1rem auto 2rem;
}

/* ── Contact Page ──────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 0;
  background: #fff;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: #fff;
  height: 100%;
}

.contact-info-card .footer-contact-icon {
  background: rgba(255, 255, 255, .12);
}

.contact-form-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #f0f0f0;
}

.contact-form-card .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: .88rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 8px;
  padding: .65rem .9rem;
  border: 1px solid #e5e7eb;
  font-size: .92rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 .2rem rgba(226, 12, 53, .12);
}

.map-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 320px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Auth Pages (Login / Register) ────────────────────────────────── */
.auth-section {
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f4fd 0%, #dbeafe 60%, #eff6ff 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.auth-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 31, 86, .06) 0%, transparent 70%);
  right: -150px;
  top: -150px;
  border-radius: 50%;
}

.auth-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(19, 31, 86, .12);
  padding: 2.75rem;
  position: relative;
  z-index: 1;
}

.auth-card .auth-icon {
  width: 60px;
  height: 60px;
  background: rgba(226, 12, 53, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--red);
}

.auth-card h3 {
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: .88rem;
  margin-bottom: 1.75rem;
}

.auth-card .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: .85rem;
}

.auth-card .form-control {
  border-radius: 8px;
  padding: .65rem .9rem;
  border: 1px solid #e5e7eb;
  font-size: .92rem;
}

.auth-card .form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 .2rem rgba(226, 12, 53, .12);
}

.auth-card .btn-auth-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .7rem;
  font-weight: 700;
  font-size: .95rem;
  width: 100%;
  transition: all .2s;
}

.auth-card .btn-auth-submit:hover {
  background: var(--red-light);
  box-shadow: 0 8px 20px rgba(226, 12, 53, .35);
}

.auth-card .auth-footer-link {
  text-align: center;
  font-size: .88rem;
  color: #6b7280;
  margin-top: 1.5rem;
}

.auth-card .auth-footer-link a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #9ca3af;
  font-size: .8rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: 3.5rem 0 1.5rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

footer p,
footer li {
  font-size: .85rem;
  line-height: 1.8;
}

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

footer ul li a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .85rem;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(226, 12, 53, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--red);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  text-align: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}
