

:root {
    --primary-color: var(--color-rank-1);
    --primary-dark: var(--color-rank-4);
    --primary-light: var(--color-rank-5);
    --dark-bg: var(--color-rank-6);
    --darker-bg: var(--color-rank-7);
    --card-bg: var(--color-rank-19);
    --glass-bg: var(--color-rank-15);
    --glass-border: var(--color-rank-14);
    --glass-shadow: var(--color-rank-20);
    --text-light: var(--color-rank-2);
    --text-muted: var(--color-rank-3);
    --text-gray: var(--color-rank-8);
    --border-color: var(--color-rank-16);
    --success-color: var(--color-rank-9);
    --gradient-dark: linear-gradient(135deg, var(--color-rank-6) 0%, var(--color-rank-10) 50%, var(--color-rank-6) 100%);
    --navbar-not-scrolled: rgba(10, 22, 40, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-strong {
    background: var(--color-rank-16);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--color-rank-18);
    border-radius: 16px;
}

.glass-card {
    background: linear-gradient(135deg, var(--color-rank-14) 0%, var(--color-rank-21) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-14);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-rank-23);
    box-shadow: 0 25px 50px var(--color-rank-29);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-rank-24);
}

.btn-outline-glass {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 10px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-rank-2) 0%, var(--color-rank-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1rem;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: var(--navbar-not-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;





}

.navbar.scrolled {
    background: var(--color-rank-30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.brand-text {
    color: var(--text-light);
}

.brand-highlight {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-light);
}

.dropdown-menu {
    background: var(--color-rank-36);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--glass-bg);
    color: var(--text-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--text-light);
    background: var(--glass-bg);
}

.btn-contact-nav {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-contact-nav:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.offcanvas {
    background: var(--color-rank-31);
    backdrop-filter: blur(30px);
}

.offcanvas-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 20px;
}

.offcanvas-body .nav-link {
    color: var(--text-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}


/* Hero Slider Section - Radically Modernized */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.hero-slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center top,
        rgba(59, 130, 246, 0.15) 0%,
        transparent 60%
    );
    z-index: 3;
}

.hero-slide-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 100px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge-wrapper {
    margin-bottom: 30px;
    display: inline-block;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-light);
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    background: linear-gradient(135deg, var(--color-rank-16) 0%, var(--color-rank-21) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-14);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--color-rank-24);
    transform: translateY(-3px);
}

.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--color-rank-2) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-catalog {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(59, 130, 246, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-catalog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-catalog:hover::before {
    width: 300px;
    height: 300px;
}

.btn-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(59, 130, 246, 0.1);
}

.btn-catalog span,
.btn-catalog i {
    position: relative;
    z-index: 1;
}

.btn-catalog i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-catalog:hover i {
    transform: translateX(8px);
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.btn-outline-hero:hover::before {
    left: 0;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-hero span {
    position: relative;
    z-index: 1;
}

/* Hero Navigation - Modernized */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.hero-nav-prev {
    left: 40px;
}

.hero-nav-next {
    right: 40px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev svg,
.hero-nav-next svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-nav-prev:hover svg {
    transform: translateX(-3px);
}

.hero-nav-next:hover svg {
    transform: translateX(3px);
}

/* Hero Pagination - Modernized */
.hero-pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Progress Bar */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    width: 0%;
    transition: width 0.3s linear;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

/* Slide Counter */
.hero-slide-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
}

.hero-slide-counter .current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-slide-counter .separator {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0 5px;
}

.hero-slide-counter .total {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Hero Scroll Indicator - Modernized */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Hero Social */
.hero-social {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-social a {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-rank-16) 0%, var(--color-rank-21) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateX(-5px);
}

/* Responsive Hero Slider */
@media (max-width: 1199px) {
    .hero-nav-prev {
        left: 30px;
    }
    
    .hero-nav-next {
        right: 30px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 991px) {
    .hero-slider-section {
        min-height: 100vh;
    }
    
    .hero-swiper {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-slide-content-wrapper {
        padding: 100px 0 80px;
    }
    
    .hero-slide-content {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-catalog,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 45px;
        height: 45px;
        opacity: 0.8;
    }
    
    .hero-nav-prev {
        left: 20px;
    }
    
    .hero-nav-next {
        right: 20px;
    }
    
    .hero-pagination {
        bottom: 50px;
    }
    
    .hero-scroll {
        bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-section {
        min-height: 100vh;
    }
    
    .hero-swiper {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-slide-content-wrapper {
        padding: 80px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .hero-buttons {
        gap: 15px;
        max-width: 100%;
    }
    
    .btn-catalog,
    .btn-outline-hero {
        padding: 16px 32px;
        font-size: 0.9rem;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .hero-nav-prev {
        left: 15px;
    }
    
    .hero-nav-next {
        right: 15px;
    }
    
    .hero-pagination {
        bottom: 40px;
        gap: 8px;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-progress-bar {
        height: 3px;
    }
}

.services-section {
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, var(--color-rank-28) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-16);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--color-rank-16) 0%, var(--color-rank-21) 100%);
    border-color: var(--color-rank-18);
    transform: translateY(-5px);
}

.service-card .card-img {
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-card .card-content h5 a:hover {
    color: var(--primary-color);
}

.service-card .card-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.about-section {
    position: relative;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-16);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--color-rank-24);
}

.feature-item .number {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item .content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item .content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}


.video-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.video-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rank-30) 0%, var(--color-rank-42) 100%);
}

.video-banner .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-banner .container {
    position: relative;
    z-index: 2;
}

.video-banner .container > .row {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 35px 40px;
    box-shadow: 0 24px 60px var(--glass-shadow);
}

.play-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-rank-18) 0%, var(--color-rank-15) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-rank-27);
    animation: pulse-ring 2s infinite;
}

.play-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.fleet-section {
    position: relative;
}

.fleet-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.fleet-tabs .tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-tabs .tab-btn:hover,
.fleet-tabs .tab-btn.active {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.listing-card {
    background: linear-gradient(135deg, var(--color-rank-43) 0%, var(--color-rank-21) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.listing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-rank-18);
    box-shadow: 0 30px 60px var(--color-rank-29);
}

.listing-card .card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-rank-20) 0%, transparent 100%);
}

.listing-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .card-img img {
    transform: scale(1.08);
}

.listing-card .badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-rank-18) 0%, var(--color-rank-15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-23);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.listing-card .card-body {
    padding: 20px;
}

.listing-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.listing-card h5 a:hover {
    color: var(--primary-color);
}

.listing-card .car-model {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.listing-card .specs {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.listing-card .specs .spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.listing-card .specs .spec-item i {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.team-section {
    position: relative;
}

.team-card {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-rank-18);
}

.team-card .card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.team-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .card-img img {
    transform: scale(1.08);
}

.team-card .card-body {
    padding: 20px;
}

.team-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card h5 a:hover {
    color: var(--primary-color);
}

.team-card .position {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card .social-links a {
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.gallery-section {
    position: relative;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-rank-44) 0%, var(--color-rank-45) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .overlay {
    opacity: 0.8;
}

.gallery-item .overlay i {
    font-size: 1.6rem;
    color: var(--color-rank-46);
}

.blog-section {
    position: relative;
}

.blog-card {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-rank-18);
}

.blog-card .card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.08);
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-card .meta span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.blog-card .meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h5 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-card .read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card .read-more:hover {
    gap: 12px;
}

.cta-section {
    position: relative;
    padding: 50px 0 100px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*     background: radial-gradient(circle at top left, var(--color-rank-47) 0%, transparent 50%),
                radial-gradient(circle at bottom right, var(--color-rank-48) 0%, transparent 55%),
                linear-gradient(135deg, var(--color-rank-22) 0%, var(--color-rank-49) 100%); */
    opacity: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 45px 40px;
    max-width: 820px;
    margin-inline: auto;
    box-shadow: 0 24px 60px var(--glass-shadow);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cta-section .btn-light {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-rank-50), var(--color-rank-51));
    color: var(--color-rank-11);
    padding: 14px 38px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid var(--color-rank-52);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cta-section .btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, var(--color-rank-53), transparent 55%),
                radial-gradient(circle at 100% 100%, var(--color-rank-54), transparent 55%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    border-color: var(--color-rank-55);
    background: var(--color-rank-56);
}


.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rank-57) 0%, var(--color-rank-58) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.footer-area {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
}

.footer-widget p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-rank-14) 0%, var(--color-rank-15) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.sidebar {
    position: sticky;
    top: 100px;
}

/* Mobile Filter Button */
.filter-toggle-btn {
    display: none;
}

@media (max-width: 991.98px) {
    .filter-toggle-btn {
        display: block;
    }
    
    /* Hide sidebar column on mobile, show only when active */
    .col-lg-3:first-child {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s ease;
        margin: 0;
        padding: 0;
        overflow: visible;
    }
    
    .col-lg-3:first-child.active {
        left: 0;
    }
    
    #filterSidebar.sidebar {
        position: relative;
        top: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-rank-31) 0%, var(--color-rank-59) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-right: 1px solid var(--glass-border);
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 20px var(--color-rank-32);
    }
    
    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sidebar-header h5 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .close-sidebar-btn {
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px 10px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .close-sidebar-btn:hover {
        background: var(--glass-bg);
        color: var(--primary-color);
    }
    
    .filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-rank-60);
        backdrop-filter: blur(5px);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.sidebar-widget {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget .form-control {
    background: var(--color-rank-19);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 10px;
}

.sidebar-widget .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--color-rank-25);
    background: var(--color-rank-15);
}

.sidebar-widget .form-control::placeholder {
    color: var(--text-muted);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

.sidebar-widget ul li a span {
    background: var(--glass-bg);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.recent-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

.recent-post h6 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post h6 a:hover {
    color: var(--primary-color);
}

.recent-post .date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.filter-widget .form-check {
    padding: 10px 0 10px 28px;
}

.filter-widget .form-check-input {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

.filter-widget .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-widget .form-check-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}





.pagination-area {
    margin-top: 50px;
}

.pagination .page-link {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 12px 18px;
    margin: 0 4px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.topbar-filter {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 14px;
    padding: 18px 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-filter .result-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.topbar-filter .result-count span {
    color: var(--primary-color);
    font-weight: 600;
}

.topbar-filter .form-select {
    background: var(--color-rank-19);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    width: auto;
    min-width: 150px;
    padding: 10px 40px 10px 15px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23E5E7EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}

.topbar-filter .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background: var(--color-rank-26);
    color: var(--text-light);
}

.topbar-filter .form-select option {
    background: var(--color-rank-22);
    color: var(--text-light);
}


.detail-gallery {
    margin-bottom: 30px;
}

.detail-gallery .main-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.detail-gallery .main-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.detail-gallery .thumb-slider .swiper-slide {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-gallery .thumb-slider .swiper-slide-thumb-active,
.detail-gallery .thumb-slider .swiper-slide:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

.detail-gallery .thumb-slider img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.detail-info {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}

.detail-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.detail-info .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 20px 0;
}

.detail-specs .spec-item {
    text-align: center;
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 12px;
}

.detail-specs .spec-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-specs .spec-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.detail-specs .spec-item h6 {
    font-weight: 600;
    font-size: 0.95rem;
}

.features-list {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}

.features-list h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.features-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list ul li i {
    color: var(--success-color);
}

.seller-card {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.seller-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--glass-border);
}

.seller-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.seller-card .position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.seller-card .contact-info {
    text-align: left;
}

.seller-card .contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.seller-card .contact-info p i {
    color: var(--primary-color);
    width: 18px;
}

.editor-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.editor-content p {
    margin-bottom: 20px;
}

.editor-content h1, 
.editor-content h2, 
.editor-content h3, 
.editor-content h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.editor-content ul, 
.editor-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.editor-content li {
    margin-bottom: 10px;
}

.editor-content blockquote {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-light);
}

.editor-content img {
    border-radius: 16px;
    margin: 25px 0;
}

.accordion-item {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16) !important;
    margin-bottom: 15px;
    border-radius: 14px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    padding: 20px 25px;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: transparent;
    color: var(--text-muted);
    padding: 20px 25px;
    line-height: 1.7;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.contact-info-box .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-rank-33) 0%, var(--color-rank-28) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--color-rank-19);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--color-rank-25);
    background: var(--color-rank-26);
    color: var(--text-light);
}

.contact-form textarea {
    min-height: 150px;
    resize: none;
}

.contact-form .form-control::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.contact-form .form-select {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23E5E7EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}

.contact-form .form-select option {
    background: var(--color-rank-22);
    color: var(--text-light);
}

.map-area {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    border: 1px solid var(--glass-border);
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(180deg);
}

.gallery-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter a {
    padding: 10px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gallery-filter a:hover,
.gallery-filter a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.values-box {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.values-box:hover {
    transform: translateY(-10px);
    border-color: var(--color-rank-18);
}

.values-box .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-rank-33) 0%, var(--color-rank-28) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.values-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.values-box p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.ik-form {
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-rank-16);
    border-radius: 20px;
    padding: 40px;
}

.ik-form h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ik-form .form-control,
.ik-form .form-select {
    background: var(--color-rank-19);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 12px;
}

.ik-form .form-control:focus,
.ik-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--color-rank-25);
    background: var(--color-rank-26);
    color: var(--text-light);
}

.ik-form .form-control::placeholder,
.ik-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.ik-form .form-select {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23E5E7EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}

.ik-form .form-select option {
    background: var(--color-rank-22);
    color: var(--text-light);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-light);
    background: linear-gradient(135deg, var(--color-rank-14) 0%, var(--color-rank-15) 100%);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.listings-swiper, .team-swiper, .related-swiper {
    padding-bottom: 50px;
}

.listings-swiper .listing-card:hover {
    box-shadow: none;
    border-color: var(--primary-color);
    transform: none;
}
.team-swiper .team-card:hover {
    box-shadow: none;
    border-color: var(--primary-color);
    transform: none;
}
.related-swiper .listing-card:hover {
    box-shadow: none;
    border-color: var(--primary-color);
    transform: none;
}

.text-muted {
    color: var(--text-muted) !important;
}

@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .nav-right {
        display: none;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-box {
        padding: 15px 20px;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .detail-info h1 {
        font-size: 1.4rem;
    }
    
    .topbar-filter {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-card .card-img {
        width: 100%;
        height: 150px;
    }
}

/* AOS Fallback Styles */
@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;
}

/* Custom AOS animations for better performance and earlier trigger */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animated state */
[data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* Force visibility for critical elements */
.section-title[data-aos],
.service-card[data-aos],
.values-box[data-aos] {
    will-change: opacity, transform;
}

/* Ensure smooth transitions */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: 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-61);

    /* 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-12);

    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-62);

    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-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--color-rank-2);

    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-13);

    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-color);
}

/* 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-logo img, .offcanvas-title img {
    width: 160px;
    height: auto;
    object-fit: contain;
    object-position: left;
}


.video-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
        background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 35px 40px;
    box-shadow: 0 24px 60px var(--glass-shadow);
}

@media (max-width: 767.98px) {
    .video-banner-content {
            flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
}


.custom-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.listing-card .car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 10px;
    margin-top: 18px;
}

.listing-card .car-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    padding: 4px 0;
}

 .listing-card .car-model {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.make-sticky {
    position: sticky;
    top: 120px;
}

.sidebar-widget ul li a.active {
    color: var(--primary-color);
}

/* Disable all backdrop-filter effects globally */
* {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#filterSidebar .form-select {
    background: var(--color-rank-19);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    width: auto;
    min-width: 150px;
    padding: 10px 40px 10px 15px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23E5E7EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}

#filterSidebar .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background: var(--color-rank-26);
    color: var(--text-light);
}

#filterSidebar .form-select option {
    background: var(--color-rank-22);
    color: var(--text-light);
}

#filterSidebar .filter-btn-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    
}

#filterSidebar .filter-btn-area .filter-btn {
    font-weight: 500;
}

#filterSidebar .temizle-btn {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

#filterSidebar .temizle-btn:hover {
    color: var(--primary-color);
}

#filterSidebar .filter-btn-area.make-float {
    position: sticky;
    bottom: 30px;
    background: linear-gradient(135deg, var(--color-rank-15) 0%, var(--color-rank-17) 100%);
    border: 1px solid var(--color-rank-16);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    background: var(--gradient-dark);
    
}

#filterSidebar .sidebar-widget {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-rank-34) transparent;
}

/* --- Scrollbar Genişliği --- */
#filterSidebar .sidebar-widget::-webkit-scrollbar {
    width: 4px !important; /* !important ekleyerek garantiye alalım */
    height: 4px !important;
}

/* --- Track (Arka Plan) --- */
#filterSidebar .sidebar-widget::-webkit-scrollbar-track {
    background: transparent !important;
}

/* --- Thumb (Çubuk) --- */
#filterSidebar .sidebar-widget::-webkit-scrollbar-thumb {
    background-color: var(--color-rank-34) !important;
    border-radius: 10px !important;
}

/* --- KRİTİK BÖLÜM: Okları Yok Etme --- */
/* Display none yerine block yapıp boyutunu yok ediyoruz */
#filterSidebar .sidebar-widget::-webkit-scrollbar-button {
    display: block !important; 
    height: 0px !important;
    width: 0px !important;
    background: transparent !important;
    border: none !important;
}

/* Garanti olsun diye track-piece alanını da temizleyelim */
#filterSidebar .sidebar-widget::-webkit-scrollbar-track-piece {
    background: transparent !important;
}

/* Köşedeki kareyi de temizleyelim */
#filterSidebar .sidebar-widget::-webkit-scrollbar-corner {
    background: transparent !important;
}

@media screen and (max-width: 575.98px) {
    .topbar-filter .form-select {
        width: 100%;
    }
    .topbar-filter {
        align-items: flex-start;
    }
}


.listing-card {
    height: 100%;
}
/* GRID: Listeleme sayfasında kartların eşit yükseklikte olması için */
.listing-list .row.g-4 > .col-md-6 {
    display: flex;
}

.listing-list .row.g-4 > .col-md-6 .listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* SLIDER: Swiper içindeki ilan kartları için */
.listings-swiper .swiper-slide,
.related-swiper .swiper-slide {
    height: auto;
}

.listings-swiper .listing-card,
.related-swiper .listing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detail-gallery .swiper-button-next, .detail-gallery .swiper-button-prev {
    color: var(--text-light);
    background: var(--gradient-dark);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    &:hover {
        opacity: 1;
    }
}

.detail-info {
    margin-bottom: 0px;
}


/* Google'ın kendi dark mode'u yetmezse bunu kullanabilirsin */
.g-recaptcha {
    filter: invert(0.9) hue-rotate(180deg);
}

#dynamicPopup .modal-content {
    background: var(--gradient-dark);
    border: 1px solid var(--glass-border);
    box-shadow: 0 24px 60px var(--glass-shadow);
    color: var(--text-light);

    /* İçerik taşarsa scroll açılsın */
    max-height: 80vh;
    overflow-y: auto;

    /* Firefox için dark scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--color-rank-35) transparent;
}

/* Chrome / Edge / Safari için dark scrollbar */
#dynamicPopup .modal-content::-webkit-scrollbar {
    width: 6px;
}

#dynamicPopup .modal-content::-webkit-scrollbar-track {
    background: transparent;
}

#dynamicPopup .modal-content::-webkit-scrollbar-thumb {
    background-color: var(--color-rank-35);
    border-radius: 999px;
}

#dynamicPopup .modal-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-rank-63);
}
#dynamicPopup .modal-footer {
    border-top: 1px solid var(--glass-border);
}