/* Лого и навигация в един ред */
.nav-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 16px;
}
.nav-logo-wrap .logo {
    height: 48px;
    margin-right: 12px;
}
/* Прозрачна навигация без фон и лого */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 16px;
    background: none;
    box-shadow: none;
}
.main-nav a {
    color: #f3f3f3;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
    background: rgba(0,123,255,0.18);
    color: #FFD700;
}
/* Модерен контакт UI */
.contact-card {
    max-width: 370px;
    margin: 40px auto;
    background: rgba(30, 30, 40, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2px);
}
.contact-icon {
    background: linear-gradient(135deg, #aee2ff 0%, #f3f3f3 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #f3f3f3;
    text-shadow: 0 2px 8px #222;
}
.contact-desc {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 18px;
    text-align: center;
}
.input-group {
    width: 100%;
    margin-bottom: 16px;
}
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #f3f3f3;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    outline: none;
    transition: background 0.2s;
}
.input-group input:focus,
.input-group textarea:focus {
    background: rgba(255,255,255,0.22);
}
.contact-btn {
    width: 100%;
    background: linear-gradient(90deg, #007BFF 60%, #0056b3 100%);
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    padding: 12px 0;
    font-size: 1.1rem;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.contact-btn:hover {
    background: linear-gradient(90deg, #0056b3 60%, #007BFF 100%);
    transform: scale(1.03);
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

body, h1, h2, h3, h4, h5, h6, p, a, label, .btn {
    color: #f3f3f3;
    text-shadow: 0 2px 8px #222;
}

header, footer {
    background: rgba(30,30,30,0.85);
}

body, h1, h2, h3, h4, h5, h6, p, a, label, .btn {
    color: #f3f3f3;
    text-shadow: 0 2px 8px #222;
}

header, footer {
    background: rgba(30,30,30,0.85);
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1.05); }
}

header {
    background: none;
    color: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}

header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #FFD700;
}

header .logo {
    height: 50px;
}

main {
    padding: 20px;
    text-align: center;
}

.btn {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    background: #0056b3;
}

/* Анимация за микробуса */
.road {
    position: relative;
    height: 220px;
    margin-top: 50px;
    background: url('../images/Road.webp') center/cover no-repeat;
    overflow: hidden;
    border-radius: 10px;
}

#microbus {
    position: absolute;
    bottom: 0;
    left: calc(50% - 75px);
    width: 150px;
    transition: bottom 0.3s, filter 0.3s;
    animation: bounce 1s infinite;
    transform: scaleX(-1);
} 

.blur-sides {
    filter: blur(2px) drop-shadow(0 0 10px #fff);
}

/* Малко подскачане на микробуса */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn {
    background: none;
    color: #f3f3f3;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #007BFF;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover {
    background: rgba(0,123,255,0.18);
    color: #FFD700;
    transform: scale(1.03);
}
/* Плавно появяване */
@keyframes fadeIn {
    to { opacity: 1; }
}
