@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url(../fonts/Unbounded-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg-dark: #0f1115;
  --bg-card: #1a1d24;
  --bg-light: #f4f4f6;
  --accent-orange: #e85d04;
  --accent-teal: #2a9d8f;
  --accent-sand: #f4a261;
  --text-main: #e0e1dd;
  --text-muted: #8d99ae;
  --text-dark: #1a1d24;
  --border-color: #2b2f38;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.main-nav a:hover {
  color: var(--accent-orange);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.header-notice i {
  color: var(--accent-teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgb(15 17 21 / 78%) 30%, rgba(15, 17, 21, 0.4) 70%, rgba(15, 17, 21, 0.8) 100%);
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.15);
  color: var(--accent-orange);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 93, 4, 0.3);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.outline-text {
  -webkit-text-stroke: 2px var(--accent-orange);
  color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.5);
  background: #d45303;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
  color: var(--accent-teal);
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-sand);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.card-divider {
  height: 1px;
  background: var(--border-color);
  margin: 8px 0;
}

.card-text {
  color: var(--text-main);
  font-size: 1.05rem;
}

.routes-section {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  color: var(--accent-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.route-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.route-item--reverse {
  direction: rtl;
}

.route-item--reverse > * {
  direction: ltr;
}

.route-item__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.route-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.route-item:hover .route-item__image img {
  transform: scale(1.03);
}

.route-item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-item__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.route-item__number {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.route-item__header h3 {
  font-size: 2rem;
  flex: 1;
}

.route-item__location {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}

.route-item__location strong {
  color: var(--text-main);
}

.route-item__description {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.route-item__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.route-item__card:hover {
  border-color: var(--accent-teal);
  transform: translateX(4px);
}

.route-item__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(42, 157, 143, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-item__card-icon i {
  color: var(--accent-teal);
  font-size: 1.2rem;
}

.route-item__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.route-item__card-content h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  font-family: 'Space Grotesk', sans-serif;
}

.route-item__card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.route-item__card-time {
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 500;
}

.bento-section {
  padding: 64px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

.bento-item:hover {
  border-color: var(--accent-teal);
}

.bento-review {
  gap: 16px;
}

.review-stars {
  color: var(--accent-sand);
  font-size: 1.2rem;
  display: flex;
  gap: 4px;
}

.bento-review p {
  font-size: 1.05rem;
  color: var(--text-main);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-teal);
}

.review-author strong {
  display: block;
  color: var(--text-main);
}

.review-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bento-faq {
  padding: 24px;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-question i {
  transition: var(--transition);
  color: var(--accent-teal);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bento-img {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img-overlay-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.img-overlay-text span {
  color: var(--accent-sand);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.img-overlay-text h4 {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bento-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(15, 17, 21, 0.9), transparent);
  z-index: 1;
}

.bento-wide {
  grid-column: span 2;
}

.form-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, #14161c 0%, #1a1d24 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(232, 93, 4, 0.05);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238d99ae' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-orange);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  padding: 18px;
  font-size: 1.1rem;
}

.site-footer {
  background: #0a0b0e;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-orange);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.disclaimer {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  max-width: 1000px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-main {
  min-height: 100vh;
  padding: 140px 24px 64px;
  background: var(--bg-dark);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.legal-content h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.legal-content p, 
.legal-content li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--text-main);
}

.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 64px;
  background: linear-gradient(135deg, #14161c 0%, #1a1d24 100%);
}

.thanks-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.thanks-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.thanks-container h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.6;
}

.thanks-text span {
  color: var(--accent-teal);
  font-weight: 600;
}

.thanks-container .btn-primary {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 500px;
  }
  .route-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .route-item--reverse {
    direction: ltr;
  }
  .route-item__image {
    order: -1;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-notice {
    display: none;
  }
    .legal-content h1 {
      font-size: 1.5rem !important;
    }
  .hamburger {
    display: flex;
  }
  .main-nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
  }
  .hero {
    padding: 100px 24px 40px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 0;
  }
    .card-stat {
      flex-direction: column;
    }
  .route-item__header {
    flex-direction: column;
    gap: 8px;
  }
  .route-item__number {
    font-size: 3rem;
  }
  .route-item__header h3 {
    font-size: 1.5rem;
  }
  .routes-list {
    gap: 48px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide {
    grid-column: span 1;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-container {
    padding: 24px;
  }
  .legal-content {
    padding: 24px;
  }
}

.form-group select {
  color-scheme: dark;
}

.form-group select option {
  background-color: var(--bg-card);
  color: var(--text-main);
  padding: 10px;
}
.thanks-main {
  word-break: break-word;
}