

:root {
    --primary: var(--color-rank-1);
    --primary-dark: var(--color-rank-6);
    --secondary: var(--color-rank-9);
    --dark: var(--color-rank-3);
    --dark-light: var(--color-rank-10);
    --gray: var(--color-rank-4);
    --gray-light: var(--color-rank-5);
    --white: var(--color-rank-2);
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-rank-8);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
}

.top-bar {
    background-color: var(--primary);
    padding: 10px 0;
    color: var(--white);
    font-size: 13px;
}

.top-info li {
    margin-right: 25px;
}

.top-info i {
    margin-right: 8px;
}

.top-right .social-link {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-right .social-link:hover {
    opacity: 0.8;
}

.lang-dropdown .dropdown-toggle {
    color: var(--white);
}

.lang-dropdown .dropdown-toggle::after {
    margin-left: 5px;
}

.navbar {
    background-color: var(--white);
    padding: 0;
    box-shadow: 0 2px 10px var(--color-rank-18);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px var(--color-rank-16);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary);
    margin-right: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo-accent {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    padding: 25px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px var(--color-rank-18);
    border-radius: 0;
    padding: 10px 0;
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-quote {
    padding: 10px 26px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 8px 18px var(--color-rank-25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.btn-quote:hover {
    box-shadow: 0 10px 24px var(--color-rank-26);
    transform: translateY(-1px);
}

.nav-search {
    font-size: 16px;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    max-width: 300px;
}

.offcanvas-header {
    background-color: var(--dark);
    color: var(--white);
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

.mobile-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-rank-7);
    font-weight: 500;
}

.mobile-nav .nav-link i {
    float: right;
    transition: transform 0.3s;
}

.mobile-nav .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}


.hero-slider {
    position: relative;
    margin-bottom: 60px;
    background-color: var(--dark);
    height: calc(100vh - 300px);
    min-height: 600px;
}

.hero-slide {
    height: calc(100vh - 300px);
    min-height: 600px;
    display: flex;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-rank-27) 0%, var(--color-rank-28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 50px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: italic;
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto 0;
}

.hero-content p {
    font-size: 17px;
    color: var(--color-rank-29);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons .btn {
    margin: 0 8px;
    padding: 12px 28px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 3px;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 1px solid var(--color-rank-30);
    border-radius: 0;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 16px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: var(--color-rank-19);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.5;
    will-change: opacity;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary);
}

.hero-stats {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1140px;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 10px 40px var(--color-rank-16);
    padding: 35px 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--color-rank-20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.stat-content .stat-number {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.1;
}

.stat-content .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 6px;
}



.about-section {
    padding-top: 80px;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-img .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    text-align: center;
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}

.experience-badge span {
    font-size: 14px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.about-feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 14px;
    margin-bottom: 0;
}


.services-section {
    background-color: var(--gray-light);
}

.service-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.service-card .card-img {
    position: relative;
    overflow: hidden;
}

.service-card .card-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

.service-card .card-img .service-icon {
    position: absolute;
    bottom: 25px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-card .card-body {
    padding: 40px 30px 30px;
}

.service-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card .card-title a {
    color: var(--dark);
}

.service-card .card-title a:hover {
    color: var(--primary);
}

.service-card .card-text {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card .read-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.service-card .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.service-card .read-more:hover i {
    margin-left: 10px;
}

.testimonials-section {
    background: linear-gradient(var(--color-rank-21), var(--color-rank-21)), url('https://picsum.photos/1920/800?random=50');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--primary);
}

.testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.5;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary);
}

.vehicle-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.vehicle-card .card-img {
    position: relative;
    overflow: hidden;
}

.vehicle-card .card-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .card-img img {
    transform: scale(1.1);
}

.vehicle-card .card-img .vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.vehicle-card .card-body {
    padding: 25px;
    text-align: center;
}

.vehicle-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-card .card-title a {
    color: var(--dark);
}

.vehicle-card .card-title a:hover {
    color: var(--primary);
}

.vehicle-card .vehicle-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.vehicle-card .vehicle-specs li {
    display: inline-block;
    font-size: 13px;
    color: var(--gray);
    margin-right: 15px;
}

.vehicle-card .vehicle-specs li i {
    color: var(--primary);
    margin-right: 5px;
}

.vehicle-card .btn {
    width: 100%;
}


.gallery-section {
    background-color: var(--gray-light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-rank-31);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.gallery-item:hover .gallery-overlay i {
    background-color: var(--dark);
    color: var(--white);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px var(--color-rank-15);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    padding: 20px 25px;
    background-color: var(--white);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-size: 16px;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    padding: 25px;
    color: var(--gray);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--color-rank-32);
    margin-bottom: 30px;
}

.cta-section .btn-light {
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .btn-light:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.page-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--color-rank-22), var(--color-rank-22));
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.banner-content .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.banner-content .breadcrumb-item a {
    color: var(--color-rank-17);
}

.banner-content .breadcrumb-item a:hover {
    color: var(--white);
}

.banner-content .breadcrumb-item.active {
    color: var(--primary);
}

.banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-33);
}

.footer {
    background-color: var(--dark);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: var(--primary);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-widget p {
    color: var(--color-rank-17);
    font-size: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-rank-19);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-rank-17);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: var(--color-rank-17);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    background-color: var(--color-rank-23);
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--color-rank-24);
    font-size: 14px;
}

.footer-bottom-links a {
    color: var(--color-rank-24);
    font-size: 14px;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--dark);
}


.blog-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-rank-15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.blog-card .card-img {
    position: relative;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.1);
}

.blog-card .card-img .blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
}

.blog-card .card-img .blog-date span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.blog-card .card-img .blog-date small {
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card .blog-meta {
    margin-bottom: 10px;
}

.blog-card .blog-meta span {
    font-size: 13px;
    color: var(--gray);
    margin-right: 15px;
}

.blog-card .blog-meta span i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card .card-title a {
    color: var(--dark);
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

.blog-card .card-text {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.blog-card .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.blog-card .read-more:hover i {
    margin-left: 10px;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--color-rank-15);
}

.sidebar-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-widget .search-form .input-group {
    border: 1px solid var(--color-rank-7);
}

.sidebar-widget .search-form .form-control {
    border: none;
    padding: 12px 15px;
}

.sidebar-widget .search-form .btn {
    border-radius: 0;
}

.sidebar-widget .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .category-list li {
    border-bottom: 1px solid var(--color-rank-7);
}

.sidebar-widget .category-list li:last-child {
    border-bottom: none;
}

.sidebar-widget .category-list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    color: var(--gray);
    font-size: 14px;
}

.sidebar-widget .category-list a:hover {
    color: var(--primary);
}

.sidebar-widget .recent-post {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-rank-7);
}

.sidebar-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget .recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}

.sidebar-widget .recent-post h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-widget .recent-post h6 a {
    color: var(--dark);
}

.sidebar-widget .recent-post h6 a:hover {
    color: var(--primary);
}

.sidebar-widget .recent-post span {
    font-size: 12px;
    color: var(--gray);
}

.pagination-wrapper {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--dark);
    border: none;
    padding: 12px 18px;
    margin: 0 3px;
    background-color: var(--gray-light);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: var(--white);
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--color-rank-15);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.contact-info-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    box-shadow: 0 5px 20px var(--color-rank-15);
}

.contact-form .form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid var(--color-rank-7);
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.map-wrapper {
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.editor-content {
    line-height: 1.6;
}

.editor-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.editor-content h1, 
.editor-content h2, 
.editor-content h3, 
.editor-content h4 {
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 600;
}

.editor-content h2 {
    font-size: 28px;
}

.editor-content h3 {
    font-size: 24px;
}

.editor-content h4 {
    font-size: 20px;
}

.editor-content ul, 
.editor-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.editor-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

.editor-content blockquote {
    background-color: var(--gray-light);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--dark);
}

.editor-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.history-section {
    background-color: var(--gray-light);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary);
}

.timeline-item .timeline-content {
    width: 45%;
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 5px 20px var(--color-rank-15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item .timeline-year {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-item .timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-item .timeline-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0;
}

.vision-mission-section .vm-card {
    background-color: var(--white);
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px var(--color-rank-15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-section .vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.vision-mission-section .vm-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 25px;
}

.vision-mission-section .vm-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vision-mission-section .vm-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.values-section {
    background-color: var(--gray-light);
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--color-rank-16);
}

.value-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0;
}

.vehicle-specs-table {
    background-color: var(--white);
    box-shadow: 0 5px 20px var(--color-rank-15);
}

.vehicle-specs-table table {
    margin-bottom: 0;
}

.vehicle-specs-table th {
    background-color: var(--gray-light);
    font-weight: 600;
    width: 40%;
}

.vehicle-specs-table td,
.vehicle-specs-table th {
    padding: 15px 20px;
    border-color: var(--color-rank-7);
}

.related-section {
    background-color: var(--gray-light);
}

.gallery-filter {
    margin-bottom: 40px;
}

.gallery-filter .btn {
    margin: 0 5px 10px;
    padding: 10px 25px;
    border-radius: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.make-sticky {
    position: sticky;
    top: 100px;
}

@media (max-width: 1199.98px) {

    .btn-quote {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-slider {
        padding-bottom: 160px;
    }
    
    .services-slider {
        bottom: 25px;
        width: 94%;
    }
    
    .about-section {
        padding-top: 80px;
    }
}

@media (max-width: 991.98px) {

    
    .hero-slider {
        padding-bottom: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .services-slider {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: -50px;
        padding: 30px 20px 20px;
    }
    
    .about-section {
        padding-top: 80px;
    }
    
    .about-img .experience-badge {
        right: 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item .timeline-dot {
        left: 20px;
    }
    
    .timeline-item .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {

        padding: 25px 15px;
        }

        .hero-slider .stat-icon {
            width: 40px;
            height: 40px;
            min-width: 40px; 
            font-size: 18px;
        }    

        html,body {
            overflow-x: hidden;
        }

        .navbar.sticky-top {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
        }

        .hero-slider, .page-banner {
            margin-top: 71px;
        }

}

@media (max-width: 767.98px) {

    
    .btn-quote {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .services-slider {
        margin-top: -40px;
        padding: 25px 15px 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .page-banner {
        height: 280px;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        width: 100%;
        padding: 25px 15px;
        }
        .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
           display: none;
        }

        .hero-slider {
            margin-bottom: 0;
        }

}

@media (max-width: 575.98px) {

    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .services-slider {
        padding: 20px 10px 10px;
        margin-top: -30px;
    }
    
    .service-slide-item {
        padding: 0 10px;
    }
    
    .service-slide-item img {
        aspect-ratio: 4/3;
        margin-bottom: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider, .hero-slide {
        min-height: 500px;
    }
}

/* AOS Fallback for older browsers */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Ensure elements are visible if AOS fails to load */
.no-js [data-aos] {
    opacity: 1;
    transform: none;
}

/* Performance optimization for AOS */
[data-aos] {
    will-change: transform, opacity;
}

[data-aos].aos-animate {
    will-change: auto;
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-23);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-8);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-18);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary);

    color: var(--white);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-11);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-2);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.navbar-brand img, footer .footer-logo img, .offcanvas-title img{
  object-position: left;
  object-fit: contain;
  width: 200px;
  height: auto;
}


.dropdown-menu.show {
  z-index: 99999999999 !important;
}

.offcanvas {
    z-index: 99999999999 !important;
}

.offcanvas-backdrop {
    z-index: 99999 !important;
}

.service-icon img {
    all: unset !important;
    width: 30px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
.testimonials-section {
    position: relative;
}
.testimonials-section .testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: var(--color-rank-34) !important;
}


.sidebar-widget .category-list a.active {
    color: var(--primary);
}

.sidebar-widget .category-list a:hover {
    color: var(--primary);
}

.sidebar-widget .category-list a span {
    color: var(--gray);
}


/* Minimalist Blog Meta (Tarih) */
.blog-meta-minimal {
    display: flex;
    align-items: center;
}

.blog-meta-minimal .blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-rank-12);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.blog-meta-minimal .blog-date i {
    font-size: 13px;
    color: var(--primary);
    opacity: 0.8;
}

/* Modern Blog Footer */
.blog-footer-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--color-rank-13);
    padding-top: 24px;
}

/* Modern Kategoriler */
.blog-categories-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.category-tag-modern {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    background-color: var(--color-rank-20);
    border: 1px solid var(--color-rank-35);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tag-modern:hover {
    background-color: var(--primary);
    color: var(--color-rank-2);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--color-rank-36);
}

/* Modern Paylaş Butonları */
.blog-share-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share-modern a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-rank-14);
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.blog-share-modern a:hover {
    background-color: var(--primary);
    color: var(--color-rank-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-rank-37);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-footer-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-share-modern {
        width: 100%;
        justify-content: flex-start;
    }
}

.custom-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.category-list .custom-icon {
    width: 16px;
    height: 16px;
    background-color: var(--gray);
}

.category-list li a:hover .custom-icon, .sidebar-widget .category-list a.active .custom-icon {
    background-color: var(--primary);
}

.btn-primary:active, .btn-primary:disabled {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}