* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b7a;
    --text: #ffffff;
    --text-light: #aaa;
}
:root.light-mode {
    --primary: #ffffff;
    --secondary: #f5f5f5;
    --text: #000000;
    --text-light: #666;
}
html, body { width: 100%; overflow-x: hidden; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.8;
    transition: all 0.3s ease;
    padding-top: 60px;
    padding-bottom: 80px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent);
    padding: 0 20px;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
}
.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
    text-decoration: none;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}
.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.theme-toggle {
    background: none;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}
.theme-toggle:hover {
    background: var(--accent);
    color: white;
}
@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    .nav-menu.active { max-height: 400px; }
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(233, 69, 96, 0.1);
        width: 100%;
    }
}
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
}
.cta-btn {
    flex: 1;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}
.cta-call {
    background: #1a1a2e;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.cta-call:hover {
    background: var(--accent);
    color: white;
}
.cta-book {
    background: #1a1a2e;
    color: white;
    border: 2px solid white;
}
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}
h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 30px;
    line-height: 1.2;
}
h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin: 25px 0 15px 0;
}
p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
}
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.section-with-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.section-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}
.section-with-image.reverse .content {
    order: 2;
}
.section-with-image.reverse img {
    order: 1;
}
.hero {
    background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(233,69,96,0.05));
    padding: 80px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.route-card {
    background: var(--secondary);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid rgba(233,69,96,0.2);
    cursor: pointer;
    transition: all 0.3s;
}
.route-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.2);
}
.route-card h3 {
    margin-top: 0;
    color: var(--accent);
}
.route-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 10px 0;
}
.price {
    font-size: 24px;
    color: var(--accent);
    font-weight: bold;
    margin-top: 15px;
}
.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.signal {
    background: var(--secondary);
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid var(--accent);
    text-align: center;
}
.signal .icon {
    font-size: 35px;
    margin-bottom: 12px;
}
.signal h3 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}
.signal p {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.testimonial {
    background: var(--secondary);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}
.stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 12px;
}
.testimonial p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.author {
    font-weight: 600;
    color: var(--accent);
    margin-top: 15px;
    font-size: 13px;
}
.booking {
    background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(233,69,96,0.05));
}
.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.booking-form {
    background: var(--secondary);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(233,69,96,0.2);
}
.form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(233,69,96,0.1);
}
.form-section:last-of-type { border-bottom: none; }
.form-section h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.form-group { margin-bottom: 15px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}
input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--primary);
    border: 1px solid #333;
    color: var(--text);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
    outline: none;
}
textarea { resize: vertical; min-height: 80px; }
.btn-submit {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233,69,96,0.3);
}
.booking-sidebar {
    background: var(--secondary);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(233,69,96,0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}
.booking-sidebar h3 {
    color: var(--accent);
    margin: 0;
    text-align: center;
}
.btn-whatsapp {
    width: 100%;
    padding: 15px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-whatsapp:hover { background: #20ba5a; }
.info-box {
    background: rgba(233,69,96,0.05);
    padding: 15px;
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}
.footer {
    background: #0f0f1e;
    color: var(--text);
    padding: 60px 20px 20px;
    margin-top: 80px;
    border-top: 2px solid var(--accent);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 0.95rem;
}
.footer-section p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #aaa;
}
.footer-section p a {
    color: var(--accent);
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(233,69,96,0.2);
    color: #666;
    font-size: 12px;
}
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    .section-with-image { grid-template-columns: 1fr; gap: 25px; }
    .section-with-image.reverse { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; gap: 25px; }
    .form-row { grid-template-columns: 1fr; }
    .booking-sidebar { order: -1; }
    .sticky-cta { flex-direction: column; padding: 8px; gap: 6px; }
    .cta-btn { padding: 10px 12px; font-size: 12px; }
    body { padding-bottom: 120px; }
}
