/* Shuttle&Fly - Main Stylesheet */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #e8e8e8;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.top-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.language-switcher img {
    width: 24px;
    height: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.top-menu {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.top-menu a {
    color: #666;
    text-decoration: none;
}

.top-menu a:hover {
    color: #0099cc;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Logo Section */
.logo-section {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
    padding: 20px 0;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 {
    font-size: 48px;
    color: #4a4a4a;
    font-weight: normal;
}

.logo .shuttle {
    color: #666;
}

.logo .fly {
    color: #0099cc;
}

.logo .tagline {
    font-size: 14px;
    color: #666;
    margin-top: -10px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.btn-login, .btn-search {
    padding: 8px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
}

.btn-login:hover, .btn-search:hover {
    background-color: #e0e0e0;
}

/* Navigation */
nav {
    background-color: #fff;
    border-bottom: 2px solid #0099cc;
    border-top: 1px solid #ddd;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #0099cc;
    color: #fff;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.content-left {
    flex: 2;
}

.content-right {
    flex: 1;
}

/* Sections */
.section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h2 {
    color: #0099cc;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.section h3 {
    color: #333;
    font-size: 18px;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: #fff;
    padding: 40px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.hero-section h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.hero-section .price {
    font-size: 36px;
    font-weight: bold;
    color: #ffeb3b;
}

.hero-section ul {
    list-style: none;
    margin-top: 20px;
}

.hero-section ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.hero-section ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #4caf50;
}

/* Pricing Form */
.pricing-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pricing-form h3 {
    color: #0099cc;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0099cc;
}

.form-note {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.world-transfer-link {
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 3px;
}

.world-transfer-link p {
    margin-bottom: 10px;
    font-size: 13px;
}

.btn-world-transfer {
    display: inline-block;
    padding: 12px 30px;
    background-color: #9c27b0;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-world-transfer:hover {
    background-color: #7b1fa2;
}

/* Vehicle Examples */
.vehicle-examples {
    margin-top: 30px;
}

.vehicle-examples h3 {
    margin-bottom: 15px;
}

.vehicle-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.vehicle-images img {
    width: 45%;
    height: auto;
    border-radius: 5px;
}

/* Partner Logos */
.partner-logos {
    background-color: #0099cc;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.partner-list a {
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.2s;
}

.partner-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* City Links */
.city-links {
    margin-top: 30px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.city-card {
    flex: 1;
    min-width: 200px;
}

.city-card h4 {
    color: #0099cc;
    margin-bottom: 10px;
}

.city-card ul {
    list-style: none;
    margin-left: 0;
}

.city-card ul li {
    margin-bottom: 5px;
}

.city-card a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.city-card a:hover {
    color: #0099cc;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #0099cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
    }

    .vehicle-images {
        flex-direction: column;
    }

    .vehicle-images img {
        width: 100%;
    }

    .city-list {
        flex-direction: column;
    }
}
