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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #0a0a0a;
    background: #fafafa;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

header {
    margin-bottom: 60px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 100;
    height: 100px;
    margin-bottom: 16px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #ff2a2a;
    margin-bottom: 4px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.nav-bar {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.nav-bar a {
    color: #0a0a0a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff2a2a;
    transition: width 0.3s ease;
}

.nav-bar a:hover {
    color: #ff2a2a;
}

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

h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: #0a0a0a;
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
}

.radio-label:hover {
    color: #ff2a2a;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff2a2a;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fafafa;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff2a2a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 42, 42, 0.05);
}

select {
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.passenger-entry {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.passenger-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.passenger-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.submit-btn {
    background: #ff2a2a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #e02424;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 42, 42, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.price-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 2px solid #ff2a2a;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.price-section h2 {
    color: #0a0a0a;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 15px;
    color: #444;
}

.price-amount {
    font-size: 18px;
    font-weight: 600;
    color: #ff2a2a;
}

.price-note {
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* Index Page Styles */
.content-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.content-section h2 {
    margin-bottom: 16px;
}

.content-section p {
    color: #444;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.service-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ff2a2a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/*Dialog Styles */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.dialog-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.dialog-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.dialog-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dialog-button {
    background: #ff2a2a;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
}

.dialog-button:hover {
    background: #e02424;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 42, 42, 0.2);
}

.dialog-button:active {
    transform: translateY(0);
}

.map-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    animation: fadeInUp 0.6s ease 0.3s both;
    margin-bottom: 40px;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content h3 {
    color: #ff2a2a;
    margin-bottom: 8px;
    font-size: 16px;
}

.leaflet-popup-content p {
    margin: 4px 0;
    font-size: 13px;
}



/* footer stuff */
footer {
    background: #fafafa;
    padding: 40px 0;
    width: 100%;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #0a0a0a;
    width: 100%;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.footer-brand {
    text-align: left;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    color: #ff2a2a;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.6;
    color: #666;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    color: #ff2a2a;
}

.icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #444;
    text-decoration: none;
}

.social-link:hover {
    color: #ff2a2a;
}

.social-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.footer-bottom {
    text-align: left;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    font-size: 12px;
    color: #999;
    width: 100%;
}


@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .nav-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .form-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .download-grid {
        gap: 12px;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-btn {
        width: 100%;
    }
    
    #map {
        height: 400px;
    }

    footer {
        padding: 24px 0;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-brand h2 {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .social-links {
        gap: 16px;
    }

}
