/* Global Styles extracted from design template */
:root {
    --bg: #F0F6F0;
    --black: #000000;
    --white: #ffffff;
    --accent: #9FE870;
    --soft-gray: #E0E8E0;
    --squircle: 32px;
    --pill: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg);
    color: var(--black);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 40px;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto 80px auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.nav-links {
    background: var(--white);
    padding: 8px 32px;
    border-radius: var(--pill);
    display: flex;
    gap: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-circle {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.hero {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.95;
    margin-bottom: 32px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.5;
    max-width: 400px;
    margin-bottom: 48px;
    line-height: 1.4;
}

.booking-card {
    background: var(--white);
    border-radius: var(--squircle);
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.booking-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.badge-plus {
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 24px;
}

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.input-field {
    width: 100%;
    padding: 18px 24px;
    background: var(--bg);
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

.service-dropdown {
    border: 1px solid var(--black);
    background: var(--white);
    padding: 18px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 32px;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
}

.service-dropdown:focus {
    outline: none;
    border-width: 2px;
}

.btn-primary {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 24px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(0.98);
}

.fleet-section, .routes-section, .pricing-section, .itinerary-section, .faq-section {
    max-width: 1300px;
    margin: 120px auto 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -2px;
}

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

.fleet-card {
    background: var(--white);
    border-radius: var(--squircle);
    padding: 12px;
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-img {
    width: 100%;
    height: 280px;
    background: #F8F8F8;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 24px;
}

.fleet-info {
    padding: 12px 20px 24px 20px;
}

.fleet-tag {
    font-size: 12px;
    font-weight: 600;
    color: #718171;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.fleet-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.capacity-bar {
    width: 100%;
    height: 50px;
    background: var(--bg);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin-top: 24px;
}

.fluid-segment {
    height: calc(100% - 8px);
    border-radius: 100px;
    position: relative;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.capacity-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='400' height='50' viewBox='0 0 400 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 0H0V50H80C85 50 90 40 100 40C110 40 115 50 120 50H200V0H120C115 0 110 10 100 10C90 10 85 0 80 0Z' fill='%23F0F6F0'/%3E%3C/svg%3E");
    background-size: 120px 50px;
    pointer-events: none;
    opacity: 0.4;
}

.segment-1 { background: linear-gradient(90deg, #FF9F9F, #FFD39F); width: 30%; }
.segment-2 { background: linear-gradient(90deg, #FFD39F, #9FE870); width: 40%; }
.segment-3 { background: linear-gradient(90deg, #9FE870, #70D6E8); width: 25%; }

.capacity-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.4;
}

.decor-dot {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
}

.dot-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; }
.dot-2 { width: 300px; height: 300px; background: #FFD39F; bottom: -50px; right: -50px; }

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-message {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}


.footer {
    max-width: 1300px;
    margin: 120px auto 40px auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.4;
    font-size: 14px;
}
