:root {
    --primary-color: #0077BE;
    --secondary-color: #003D5B;
    --dark-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-color: #333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
.pagination {
    justify-content: flex-end;
    margin-top: 40px;
    gap: 6px;
}

.pagination .page-item .page-link {
    min-width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--secondary-color);
    background-color: #fff;
    border: 1px solid var(--secondary-color);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.pagination .page-item .page-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: var(--light-gray);
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination .page-link {
    line-height: 1;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 80px;
}
@media screen and (max-width: 991px) {
    .navbar-brand img {
        height: 60px;
    }
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: color 0.3s ease;
}

@media screen and (min-width: 992px) {
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #fff;
        background: var(--primary-color);
    }
}

.btn-search {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,190,0.3);
}

.hero-section {
    padding: 80px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8d 100%);
    padding: 60px;
    color: white;
    position: relative;
    z-index: 2;
    height: 100%;
    border: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-content::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border-top: 80px solid #f5f5f5;
    border-right: 80px solid transparent;
}
.hero-content::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-bottom: 80px solid #f5f5f5;
    border-left: 80px solid transparent;
}

.about-us-img-wrapper::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-top: 80px solid #fff;
    border-left: 80px solid transparent;
}
.about-us-img-wrapper::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 0;
    height: 0;
    border-bottom: 80px solid #fff;
    border-right: 80px solid transparent;
}
@media (max-width: 768px) {
    .pc-sm-2 {
        padding: 1rem !important;
    }
    .vozila-image-wrapper {
        padding: 15px !important;
    }
    .hero-carousel-wrapper {
        margin-top: 15px;
    }
    .hero-content::before {
        border-top: 40px solid #f5f5f5 !important;
        border-right: 40px solid transparent !important;
    }
    .hero-content::after {
        border-bottom: 40px solid #f5f5f5 !important;
        border-left: 40px solid transparent !important;
    }
    .about-us-img-wrapper::before {
        border-top: 40px solid #fff !important;
        border-left: 40px solid transparent !important;
    }
    .about-us-img-wrapper::after {
        border-bottom: 40px solid #fff !important;
        border-right: 40px solid transparent !important;
    }
    .carousel-item-custom {
        min-height: 300px !important;
    }
    .vozila-content h3,
    .content-wrapper h3 {
        font-size: 24px !important;
        margin: 25px 0 5px !important;
    }
    .mb-sm-home {
        margin-bottom: 25px !important;
    }
    .vozila-content {
        padding-right: 0 !important;
    }
    .home-v-btn {
        float: right;
        margin: -10px 0 25px !important;
    }
    .pb-sm-home-0 {
        padding-bottom: 0 !important;
    }
    .vozila-counter {
        top: 30px !important;
        right: 30px !important;
    }
    .vozila-watermark {
        left: 30px !important;
        bottom: 30px !important;
    }
    nav {
        position: fixed !important;
        width: 100%;
    }
    body {
        padding-top: 60px;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-content .btn-dark {
    background-color: var(--dark-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-content .btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
html,
body {
    overflow-x: hidden !important;
}

.hero-carousel-wrapper {
    position: relative;
}

.hero-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.carousel-item-custom {
    width: calc(50% - 10px);
    min-height: 500px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: none;
}

.carousel-item-custom.active {
    display: block;
}

.carousel-item-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.carousel-caption-custom h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.carousel-caption-custom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.carousel-caption-custom .btn-icon img {
    width: 30px !important;
    height: 30px !important;
}
.carousel-caption-custom .btn-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    rotate: 90deg;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-caption-custom .btn-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-color);
    background: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.content-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in-left.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.fade-in-right.animated {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-color);
    background: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.destinations-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.destinations-carousel::-webkit-scrollbar {
    height: 8px;
}

.destinations-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.destinations-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.destination-card {
    min-width: 350px;
    height: 500px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border: 3px solid #fff;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.destination-overlay h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.destination-overlay p {
    font-size: 1rem;
    margin-bottom: 0;
}
.destination-overlay .btn-circle img {
    width: 30px !important;
    height: 30px !important;
}
.destination-overlay .btn-circle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    rotate: 90deg;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.destination-overlay .btn-circle:hover {
    color: var(--dark-color);
    transform: scale(1.1);
}

.vozila-content {
    padding-right: 40px;
}

.vozila-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.vozila-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.vozila-image-wrapper {
    position: relative;
    padding: 40px;
}

.vozila-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #f6f6f6;
    border-radius: 100px 0 0 100px;
    z-index: 0;
}

.vozila-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.vozila-counter {
    position: absolute;
    top: 60px;
    right: 60px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.vozila-watermark {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #565656;
    font-size: 0.9rem;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    padding: 5px 15px;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left.animated {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.slide-in-right.animated {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,119,190,0.15);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a8d 100%);
    padding: 60px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.news-meta {
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-weight: 600;
    text-decoration: unset;
    font-size: 0.9rem;
}
.news-meta span {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-meta img {
    background: var(--primary-color);
    rotate: 90deg;
    margin-left: 5px;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.news-icon {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-card:hover .news-icon {
    background: var(--primary-color);
    color: white;
}

@media screen and (max-width: 991px) {
    .navbar .container-fluid {
        padding-left: 0.5rem !important;
    }
    .navbar-collapse {
        margin-left: 0 !important;
    }
    .navbar-collapse .nav-item {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .contact-info-wrapper {
        padding: 20px !important;
    }
    .contact-form-wrapper {
        padding: 20px !important;
        border-radius: 0 !important;
    }
    .scroll-to-top {
        display: none !important;
    }
}
.phone-btn, .viber-btn {
     position: fixed;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     box-shadow: 0 4px 12px rgba(0,0,0,0.2);
     transition: all 0.3s ease;
 }

.phone-btn {
    bottom: 15px;
    right: 15px;
    background-color: #25D366;
}

.viber-btn {
    bottom: 80px;
    right: 15px;
    background-color: #665CAC;
}

.phone-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
}

.viber-btn:hover {
    background-color: #563ea0;
    transform: translateY(-3px);
}
.navbar-toggler {
    margin-right: -1rem;
    border: unset !important;
    box-shadow: unset !important;
}
@media screen and (max-width: 991px) {
    .footer-item {
        text-align: center !important;
        margin-bottom: 20px;
    }
}
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 15px 0;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .destination-card {
        min-width: 280px;
        height: 380px;
    }

    .vozila-bg-shape {
        border-radius: 50px 0 0 50px;
    }
}


.scroll-to-top {
    position: fixed;
    bottom: 145px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.is-invalid {
    border-color: #dc3545 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.destinations-carousel.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.destinations-carousel {
    cursor: grab;
    cursor: -webkit-grab;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 600;
}
.news-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}
.news-content h4 {
    color: var(--primary-color);
    font-weight: 600;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-viber {
    color: #665CAC;
    border-color: #665CAC;
}
.btn-outline-viber:hover {
    background-color: #665CAC;
    color: #fff;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.d-flex.overflow-auto::-webkit-scrollbar {
    height: 6px;
}
.d-flex.overflow-auto::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}
.d-flex.overflow-auto::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}
.blog-content h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-content li {
    margin-bottom: 0.5rem;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.section-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.vehicle-gallery {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.vehicle-gallery img {
    width: 250px;
}
@media screen and (max-width: 991px) {
    .vehicle-gallery img {
        width: calc(50% - 3px) !important;
    }
}
.gray-section {
    background: #f5f5f5 !important;
}
.dark-background {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%) !important;
}

.bg-border-bottom {
    border-bottom: 1px solid #0077BE;
    padding-bottom: 10px;
}
.bg-primary-btn {
    background: var(--primary-color) !important;
}
/* About us */
.about-block h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.about-block p,
.about-block li {
    line-height: 1.7;
}

.about-block + .about-block {
    margin-top: 30px;
}

.about-list li {
    padding: 3px 0;
    margin-bottom: 0;
}

.company-block {
    background: var(--primary-color);
    color: #fff;
    margin-top: 40px;
    border-radius: 5px;
}

.company-block h3 {
    font-weight: 700;
    font-size: 20px;
}

.company-block li {
    padding: 5px 0;
}
.min-h-70 {
    min-height: 70vh;
}
.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
}
.blog-card .card-title {
    font-weight: 600;
    color: var(--secondary-color);
}
.blog-card .card-text {
    line-height: 1.6;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.badge.bg-primary {
    font-size: 0.8rem;
    border-radius: 0.3rem;
}

.vehicle-block h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.vehicle-block p,
.vehicle-block li {
    line-height: 1.7;
}

.vehicle-block + .vehicle-block {
    margin-top: 30px;
}

.vehicle-list li {
    padding: 3px 0;
}

.vehicle-highlight {
    background: var(--primary-color);
    color: #fff;
    margin-top: 40px;
    border-radius: 5px;
}

.vehicle-highlight h3 {
    font-weight: 700;
    font-size: 20px;
}
.vehicle-gallery img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vehicle-gallery img:hover {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    opacity: 0.8;
}

.lightbox-nav:hover {
    opacity: 1;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.card-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.card-text {
    line-height: 1.7;
}
.object-fit-cover {
    object-fit: cover;
    height: 100%;
}
.news-card {
    height: 100%;
}

.destination-block {
    background: #0077BE;
    color: #fff;
}
@media screen and (min-width: 991px) {
    .destination-block {
        position: absolute;
        z-index: 1000;
        width: 600px;
        right: 15px;
        margin-top: 15px;
    }
}

#destination-map {
    height: 75vh;
    width: 100%;
}
.text-tree-rows {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-main-wrapper img {
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.content-main-wrapper img:hover {
    opacity: 0.9;
}

.img-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    cursor: zoom-out;
    backdrop-filter: blur(5px);
}

.img-lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.img-lightbox-overlay.active img {
    transform: scale(1);
}
