@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
--color-primary: #0B132B;
--color-secondary: #1C2541;
--color-accent: #D4AF37;
--color-accent-hover: #B5952F;
--color-bg: #F8F9FA;
--color-surface: #FFFFFF;
--color-text: #1C2541;
--color-text-light: #4A5568;
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Outfit', sans-serif;
--spacing-section: 64px;
--spacing-inner: 48px;
--radius: 12px;
--shadow: 0 10px 40px -10px rgba(11, 19, 43, 0.15);
--shadow-hover: 0 20px 50px -10px rgba(11, 19, 43, 0.25);
}

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

html {
scroll-behavior: smooth;
width: 100%;
overflow-x: hidden;
}

body {
font-family: var(--font-body);
color: var(--color-text);
background-color: var(--color-bg);
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden;
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

a {
text-decoration: none;
color: inherit;
transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
max-width: 100%;
height: auto;
display: block;
}

.site-header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 100;
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 24px;
gap: 24px;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
}

.logo img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 50%;
}

.logo span {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--color-primary);
}

.main-nav .nav-list {
display: flex;
list-style: none;
gap: 32px;
}

.main-nav a {
font-weight: 500;
color: var(--color-text);
position: relative;
}

.main-nav a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--color-accent);
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
color: var(--color-accent);
}

.main-nav a:hover::after {
width: 100%;
}

.header-notice {
display: none;
}

.notice-badge {
background: rgba(212, 175, 55, 0.1);
color: var(--color-accent-hover);
padding: 6px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 500;
white-space: nowrap;
border: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--color-primary);
cursor: pointer;
}

.hero-section {
position: relative;
color: white;
padding: var(--spacing-section) 0;
overflow: hidden;
}

.hero-bg-gradient {
position: absolute;
inset: 0;
background: linear-gradient(135deg, #0B132B 0%, #1C2541 50%, #0f172a 100%);
z-index: -2;
}

.hero-bg-gradient::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
z-index: -1;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}

.hero-eyebrow {
display: inline-block;
color: var(--color-accent);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.85rem;
margin-bottom: 16px;
}

.hero-content h1 {
font-family: var(--font-heading);
font-size: clamp(2.2rem, 4.5vw, 3.5rem);
line-height: 1.15;
margin-bottom: 24px;
background: linear-gradient(to right, #ffffff, #cbd5e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-subtitle {
font-size: 1.15rem;
color: #CBD5E1;
margin-bottom: 32px;
max-width: 500px;
line-height: 1.7;
}

.hero-actions {
display: flex;
flex-direction: column;
gap: 24px;
}

.hero-badges {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.badge {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,0.08);
padding: 10px 18px;
border-radius: 30px;
font-size: 0.9rem;
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.1);
}

.badge-glow {
box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-image-wrapper {
position: relative;
}

.hero-image-frame {
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
border: 1px solid rgba(255,255,255,0.1);
position: relative;
z-index: 1;
}

.hero-image {
width: 100%;
height: 450px;
object-fit: cover;
transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover .hero-image {
transform: scale(1.03);
}

.floating-stat {
position: absolute;
background: rgba(255, 255, 255, 0.95);
color: var(--color-primary);
padding: 16px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 12px;
font-weight: 600;
font-size: 0.95rem;
z-index: 2;
backdrop-filter: blur(10px);
animation: float 4s ease-in-out infinite;
}

.floating-stat i {
color: var(--color-accent);
font-size: 1.2rem;
}

.stat-1 {
top: 20px;
left: -30px;
animation-delay: 0s;
}

.stat-2 {
bottom: 40px;
right: -20px;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

.section {
padding: var(--spacing-section) 0;
}

.section-header {
text-align: center;
margin-bottom: 48px;
}

.section-label {
display: inline-block;
color: var(--color-accent);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
font-size: 0.85rem;
margin-bottom: 12px;
position: relative;
padding: 0 16px;
}

.section-label::before,
.section-label::after {
content: '';
position: absolute;
top: 50%;
width: 30px;
height: 1px;
background: var(--color-accent);
}

.section-label::before { right: 100%; }
.section-label::after { left: 100%; }

.section-header h2 {
font-family: var(--font-heading);
font-size: clamp(2rem, 3.5vw, 2.8rem);
color: var(--color-primary);
}

.bento-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto auto;
gap: 24px;
}

.bento-card {
background: var(--color-surface);
padding: 32px;
border-radius: var(--radius);
box-shadow: var(--shadow);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(0,0,0,0.03);
display: flex;
flex-direction: column;
}

.bento-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
border-color: rgba(212, 175, 55, 0.3);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-small { grid-column: span 1; }

.bento-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
color: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
margin-bottom: 20px;
}

.bento-card h3 {
font-family: var(--font-heading);
font-size: 1.3rem;
margin-bottom: 12px;
color: var(--color-primary);
}

.routes-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}

.route-card {
background: var(--color-surface);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
display: flex;
flex-direction: column;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(0,0,0,0.03);
}

.route-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.route-image {
position: relative;
height: 220px;
overflow: hidden;
}

.route-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover .route-image img {
transform: scale(1.08);
}

.route-duration {
position: absolute;
top: 16px;
right: 16px;
background: rgba(11, 19, 43, 0.9);
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
backdrop-filter: blur(4px);
border: 1px solid rgba(255,255,255,0.1);
}

.route-content {
padding: 24px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.route-content h3 {
font-family: var(--font-heading);
font-size: 1.25rem;
margin-bottom: 10px;
color: var(--color-primary);
}

.route-content p {
color: var(--color-text-light);
font-size: 0.95rem;
margin-bottom: 24px;
flex-grow: 1;
line-height: 1.6;
}

.route-footer {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid #E2E8F0;
padding-top: 16px;
}

.route-price {
font-weight: 700;
color: var(--color-primary);
font-size: 1.15rem;
}

.testimonials-section {
background: linear-gradient(to bottom, #F8F9FA, #E2E8F0);
}

.slider-container {
position: relative;
max-width: 900px;
margin: 0 auto;
overflow: hidden;
padding: 20px 0;
}

.slider-track {
display: flex;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
min-width: 100%;
padding: 0 12px;
}

.testimonial-card {
background: var(--color-surface);
padding: 40px;
border-radius: var(--radius);
position: relative;
border: 1px solid rgba(0,0,0,0.03);
}

.quote-icon {
color: var(--color-accent);
font-size: 2.5rem;
margin-bottom: 20px;
opacity: 0.3;
}

.testimonial-card p {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 24px;
color: var(--color-text);
line-height: 1.7;
}

.testimonial-author {
display: flex;
flex-direction: column;
}

.author-name {
font-weight: 700;
color: var(--color-primary);
font-size: 1.05rem;
}

.author-location {
font-size: 0.9rem;
color: var(--color-text-light);
}

.slider-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-top: 32px;
}

.slider-btn {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid #CBD5E1;
background: white;
color: var(--color-primary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
background: var(--color-primary);
color: white;
border-color: var(--color-primary);
transform: scale(1.1);
}

.slider-dots {
display: flex;
gap: 8px;
}

.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #CBD5E1;
cursor: pointer;
transition: all 0.3s ease;
}

.dot.active {
background: var(--color-accent);
width: 30px;
border-radius: 5px;
}

.final-cta-section {
background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
color: white;
padding: var(--spacing-section) 0;
text-align: center;
position: relative;
overflow: hidden;
}

.final-cta-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
animation: rotate 20s linear infinite;
}

@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.cta-content {
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.cta-content h2 {
font-family: var(--font-heading);
font-size: clamp(2.2rem, 4vw, 3rem);
margin: 16px 0 24px;
}

.cta-content p {
font-size: 1.15rem;
color: #CBD5E1;
margin-bottom: 36px;
line-height: 1.7;
}

.btn {
display: inline-block;
padding: 16px 32px;
border-radius: 8px;
font-weight: 600;
text-align: center;
cursor: pointer;
border: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-family: var(--font-body);
font-size: 1rem;
}

.btn-primary {
background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
color: white;
box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.5);
}

.btn-lg {
padding: 18px 40px;
font-size: 1.1rem;
}

.btn-sm {
padding: 8px 18px;
font-size: 0.9rem;
background: var(--color-primary);
color: white;
border-radius: 6px;
}

.btn-sm:hover {
background: #1C2541;
transform: translateY(-2px);
}

.btn-block {
width: 100%;
}

.contact-section {
background: var(--color-bg);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
background: var(--color-surface);
padding: 48px;
border-radius: var(--radius);
box-shadow: var(--shadow);
border: 1px solid rgba(0,0,0,0.03);
}

.contact-text h2 {
font-family: var(--font-heading);
font-size: 2.2rem;
margin-bottom: 16px;
color: var(--color-primary);
}

.contact-text p {
color: var(--color-text-light);
margin-bottom: 32px;
line-height: 1.7;
}

.contact-features {
list-style: none;
}

.contact-features li {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 18px;
color: var(--color-text);
font-weight: 500;
}

.contact-features i {
color: var(--color-accent);
font-size: 1.2rem;
}

.contact-form {
background: #F8F9FA;
padding: 36px;
border-radius: var(--radius);
color: var(--color-text);
border: 1px solid #E2E8F0;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-weight: 600;
margin-bottom: 8px;
font-size: 0.95rem;
color: var(--color-primary);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
width: 100%;
padding: 14px 18px;
border: 1px solid #CBD5E1;
border-radius: 8px;
font-family: var(--font-body);
font-size: 1rem;
transition: all 0.3s ease;
background: white;
}

.form-group input:focus {
outline: none;
border-color: var(--color-accent);
box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
display: flex;
align-items: flex-start;
gap: 12px;
}

.checkbox-group input {
margin-top: 4px;
accent-color: var(--color-accent);
width: 18px;
height: 18px;
}

.checkbox-group label {
font-size: 0.9rem;
color: var(--color-text-light);
line-height: 1.5;
}

.site-footer {
background: #050A14;
color: #94A3B8;
margin-top: auto;
padding-top: 64px;
}

.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 48px;
padding-bottom: 48px;
border-bottom: 1px solid #1C2541;
}

.footer-brand .logo span {
color: white;
}

.footer-notice {
margin-top: 16px;
font-size: 0.9rem;
color: #64748B;
max-width: 300px;
line-height: 1.6;
}

.footer-legal-info h4,
.footer-links h4 {
color: white;
font-family: var(--font-heading);
margin-bottom: 20px;
font-size: 1.2rem;
}

.footer-legal-info p {
margin-bottom: 10px;
font-size: 0.95rem;
line-height: 1.6;
}

.footer-links ul {
list-style: none;
}

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

.footer-links a:hover {
color: var(--color-accent);
padding-left: 5px;
}

.update-date {
margin-top: 24px;
font-size: 0.85rem;
color: #64748B;
font-style: italic;
}

.footer-bottom {
padding: 32px 0;
text-align: center;
}

.disclaimer-text {
font-size: 0.9rem;
color: #64748B;
max-width: 800px;
margin: 0 auto 24px;
line-height: 1.6;
}

.copyright {
font-size: 0.95rem;
color: #475569;
}

@media (max-width: 992px) {
.hero-grid,
.contact-wrapper {
grid-template-columns: 1fr;
}

.bento-grid {
grid-template-columns: 1fr 1fr;
}

.bento-large { grid-column: span 2; grid-row: span 1; }
.bento-medium { grid-column: span 2; }
.bento-small { grid-column: span 1; }

.routes-grid {
grid-template-columns: repeat(2, 1fr);
}

.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.header-notice {
display: none;
}

.stat-1 { left: 10px; top: 10px; }
.stat-2 { right: 10px; bottom: 10px; }
}

@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--color-surface);
padding: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-top: 1px solid #E2E8F0;
}

.main-nav.active {
display: block;
}

.main-nav .nav-list {
flex-direction: column;
gap: 16px;
}

.mobile-menu-toggle {
display: block;
}

.bento-grid,
.routes-grid {
grid-template-columns: 1fr;
}

.bento-large, .bento-medium, .bento-small {
grid-column: span 1;
}

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

:root {
--spacing-section: 40px;
--spacing-inner: 32px;
}

.site-footer {
font-size: 0.9rem;
}

.contact-wrapper {
padding: 24px;
}
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin: 32px 0 16px;
}
.legal-content h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 24px 0 12px;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 1.5rem;
  color: var(--color-text);
}
.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-content .update-date {
  margin-top: 0;
  margin-bottom: 32px;
  padding-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
}
@media (max-width: 768px) {
  .legal-content {
    padding: 24px 16px;
  }
  .legal-content h1 {
    font-size: 1.8rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
  }
  .legal-content h3 {
    font-size: 1.1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.footer-brand .logo span {
  color: white;
}