:root {
    --primary: #0056b3;
    --secondary: #343a40;
    --accent: #da2629 !important;
    --dark: #212529;
    --light: #f8f9fa;
}



body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--light);
}

.navbar {
    transition: all 0.5s ease;
    padding: 1.2rem 0;
    z-index: 1000;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 0.7rem 0;
}

.logo-container {
    width: 80px !important;
    height: 80px !important;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(src/img/hero.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: whitesmoke;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
}

.btn-custom {
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #23272b;
    border-color: #23272b;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    font-weight: 800;
    font-size: 2.8rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 100%;
    background-color: white;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-10px) scale(1.1);
    color: var(--accent) !important;
}

.service-content {
    padding: 40px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.counter-box {
    text-align: center;
    padding: 50px 20px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transition: all 0.4s ease;
}

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

.counter-box:hover::before {
    height: 10px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.counter-text {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.fleet-section {
    background-color: #f8f9fa;
}

.vehicle-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    margin-bottom: 30px;
    background-color: white;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.vehicle-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.8), rgba(52, 58, 64, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.vehicle-card:hover .vehicle-overlay {
    opacity: 0.9;
}

.vehicle-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}

.vehicle-card:hover .vehicle-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.vehicle-content {
    padding: 30px;
}

.vehicle-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vehicle-feature i {
    color: var(--primary);
    margin-right: 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.05);
}

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

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.1);
    border-color: var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-position {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info-box {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    text-align: center;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.contact-info-box:hover .contact-icon {
    transform: scale(1.2);
    color: var(--accent);
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    list-style: none;
    padding-left: 0;
    display: flex;
}

.social-links li {
    margin-right: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

/* Swiper styles */
.swiper {
    width: 100%;
    height: 100%;
    padding: 30px 0;
}
.fleet-swiper {
    margin: 0 auto !important;
    max-width: 1200px; /* beállíthatod a kívánt maximális szélességet */
  }
  

.swiper-slide {
    height: auto;
    margin: 0 auto !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

/* Process steps */
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    z-index: 1;
}

.process-step:last-child .process-line {
    display: none;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: white;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px 25px;
    background-color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #003b7a);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 120px;
    padding: 10px 0;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -150px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -150px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 2;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Partners section */
.partner-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Blog section */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

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

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    margin-bottom: 20px;
    color: #6c757d;
}

/* Parallax sections */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.parallax-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

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

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

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 90px);
        float: right !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        right: auto;
        left: -90px;
        top: -40px;
        width: 100px;
    }
    
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
        font-size: 2.2rem;
    }
    
    .logo-container {
        width: 80px !important;
        height: 80px !important;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .timeline-date {
        position: relative;
        top: -20px;
        left: 0 !important;
        right: auto !important;
        width: 120px;
        margin-bottom: 10px;
    }
}