
/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f7f9fc;
  color: #0f1923;
  line-height: 1.6;
  font-size:16px;
}


.navbar{
  background-color:white;
}
.nav-link, .nav-link:hover, .dropdown-toggle{
  color:#0f65a3 !important;
}
/* ── Hero ── */
#home {
  min-height: calc(100vh - 62px);
  background: linear-gradient(145deg, #0b2a45 0%, #1480C8 60%, #3ab8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
/* animated bus route line in hero */
.route-line {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0.25;
}
.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.route-seg {
  width: 40px;
  height: 2px;
  background: #fff;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #d0eeff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: #7dd9ff;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #fff;
  color: #1480C8;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.15s;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hstat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.hstat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Section base ── */
section { padding: 5rem 1.5rem; }
.section-wrap { max-width: 900px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1480C8;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #0f1923;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-body { font-size: 15px; color: #5a6a7a; max-width: 580px; }

/* ── About ── */
#about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-visual {
  background: linear-gradient(135deg, #e8f4ff 0%, #d0e9ff 100%);
  border-radius: 20px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bus-icon {
  font-size: 80px;
  filter: drop-shadow(0 8px 16px rgba(20,128,200,0.2));
}
.about-pill {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0f1923;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pill-tl { top: 24px; left: 24px; }
.pill-br { bottom: 24px; right: 24px; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 38px;
  height: 38px;
  background: #e8f4ff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.feat-title { font-size: 14px; font-weight: 600; color: #0f1923; }
.feat-desc { font-size: 13px; color: #7a8a9a; margin-top: 2px; }

/* ── Linja ── */
#linja { background: #f7f9fc; }
.linja-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(20,128,200,0.07);
  margin-top: 2.5rem;
  border: 1px solid #e0eaf4;
}
.linja-header {
  background: linear-gradient(90deg, #0b2a45, #1480C8);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.linja-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 6px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.linja-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.linja-route-text { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.linja-meta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.linja-meta-item { text-align: center; }
.linja-meta-val { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.linja-meta-label { font-size: 11px; color: rgba(255,255,255,0.6); }

/* stop list */
.stops-body { padding: 2rem; }
.stops-title { font-size: 13px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.stops-list { display: flex; flex-direction: column; gap: 0; }
.stop-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.stop-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  flex-shrink: 0;
}
.stop-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1480C8;
  border: 3px solid #e8f4ff;
  flex-shrink: 0;
  margin-top: 3px;
}
.stop-dot.first, .stop-dot.last { background: #0b2a45; width: 16px; height: 16px; }
.stop-connector {
  width: 2px;
  flex: 1;
  background: #d0e4f5;
  margin: 2px 0;
  min-height: 20px;
}
.stop-info { padding: 0 0 1.25rem; flex: 1; }
.stop-name { font-size: 14px; font-weight: 600; color: #0f1923; }
.stop-detail { font-size: 12px; color: #8a9aaa; margin-top: 1px; }
.stop-time-badge {
  font-size: 12px;
  font-weight: 600;
  color: #1480C8;
  background: #e8f4ff;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 4px;
  display: inline-block;
}

/* oraret */
.oraret-wrap { border-top: 1px solid #eef2f8; padding: 1.5rem 2rem; }
.oraret-title { font-size: 13px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.oraret-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.orar-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  background: #f0f7ff;
  color: #1480C8;
  border: 1px solid #c8e0f5;
}

/* ── Contact ── */
#contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: #e8f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #1480C8; }
.contact-val { font-size: 14px; color: #0f1923; font-weight: 500; margin-top: 2px; }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; color: #3a4a5a; }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #d4dde8;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #0f1923;
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #1480C8; box-shadow: 0 0 0 3px rgba(20,128,200,0.1); }
.form-submit {
  background: #1480C8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: #0f65a3; transform: translateY(-1px); }
.form-submit:active { transform: scale(0.98); }

/* toast */
.toast {
  display: none;
  background: #0b2a45;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 8px;
  text-align: center;
}
.toast.show { display: block; }
.logo{
  width:150px;
}
/* ── Footer ── */
footer {
  background: #0b2a45;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.75rem 1rem;
 
}
footer strong { color: #fff; }
.logooo{
  width:90px;
}
/* ── Responsive ── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .linja-header { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
}
