:root {
    --primary: #0d3b66;
    --primary-dark: #092a49;
    --accent: #f65606;
    --light-bg: #f8fafc;
    --text-dark: #1f2937;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    scroll-behavior: smooth;
}

.navbar-brand {
    width: 30%;
}

.section-padding {
    padding: 88px 0;
}

.navbar {
    background: rgba(13, 59, 102, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.brand-logo {
    width: 100%;
    object-fit: cover;
}

.brand-logo-container {
    width: 20%;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #f65606;
}

.btn-call {
    background-color: var(--accent);
    color: #fff;
    font-weight: 700;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call:hover {
    background-color: #ffb347;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 159, 28, 0.28);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background:
        linear-gradient(rgba(9, 20, 34, 0.66), rgba(9, 20, 34, 0.66)),
        url("../images/bg.jpg") center/cover no-repeat;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.08rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.8rem;
}

.contact-wrap i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #f65606;
    justify-content: center;
    border-radius: 1rem;
    color: #fff;
}

.btn-accent {
    background-color: var(--accent);
    color: #111827;
    font-weight: 700;
    border: none;
}

.btn-accent:hover {
    background-color: #ffb347;
    color: #111827;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.section-title {
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: #6b7280;
    max-width: 760px;
    margin: 0 auto 2.2rem;
}

.prices {
    background: var(--light-bg);
}

.route-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(13, 59, 102, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(13, 59, 102, 0.17);
}

.route-title {
    color: var(--primary);
    font-weight: 700;
}

.price-badge {
    display: inline-block;
    background: #fff7e8;
    color: #a04d00;
    border: 1px solid #ffd79e;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.92rem;
}

.feature-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 18px;
    height: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
    border-color: #c6d6e7;
    box-shadow: 0 12px 28px rgba(13, 59, 102, 0.1);
}

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    background: #eaf2fb;
    margin-bottom: 14px;
}

.contact-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-panel {
    background: linear-gradient(150deg, var(--primary) 0%, #124b80 100%);
    color: #fff;
    height: 100%;
}

.contact-panel a {
    color: #fff;
    text-decoration: none;
}

.map-frame {
    width: 100%;
    min-height: 480px;
    border: 0;
}

footer {
    background: #0b2f52;
    color: rgba(255, 255, 255, 0.86);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    margin-left: 8px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

/* Reviews (Owl Carousel) */
.reviews {
    background: #fff;
}

.review-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 59, 102, 0.07);
}

.review-avatar {
    width: 52px !important;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eaf2fb;
    background: #eaf2fb;
}

.review-name {
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
}

.review-date {
    font-size: 0.86rem;
    color: #6b7280;
}

.review-stars {
    color: #f59e0b;
    /* amber */
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.review-text {
    color: #4b5563;
    margin: 10px 0 0;
}

.owl-theme .owl-nav {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #eaf2fb !important;
    color: var(--primary) !important;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #d9e9fb !important;
    transform: translateY(-1px);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 6px 5px;
    background: #cbd5e1;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--accent);
}

.navbar-toggler {
    color: #fff;

}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header__buttons {
    gap: .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-wrap {
        flex-direction: column;
    }

    .header__buttons {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .social-links {
        flex-direction: row !important;
    }

    .brand-logo-container {
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-panel {
        padding: 20px;
    }

    .navbar-brand {
        width: 50%;
    }
}