/* General Styles */
:root {
    --primary-color: #46a2ff;
    --secondary-color: #004085;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}


body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
}

.btn {
    font-family: var(--heading-font);
    font-weight: 500;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    margin-right: 0;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-selector a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    opacity: 0.8;
}

.language-selector a.active {
    opacity: 1;
    font-weight: bold;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

/* Slider Styles */
#mainSlider {
    position: relative;
    margin-bottom: 50px;
}

#mainSlider .carousel-item {
    height: 600px; /* veya istediğiniz yükseklik */
}

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

#mainSlider .carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 5px;
    bottom: 50px;
}

#mainSlider .carousel-caption h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

#mainSlider .carousel-caption p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: var(--body-font);
}

/* Responsive Slider */
@media (max-width: 768px) {
    #mainSlider .carousel-item {
        height: 400px;
    }

    #mainSlider .carousel-caption h2 {
        font-size: 1.8rem;
    }

    #mainSlider .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #mainSlider .carousel-item {
        height: 300px;
    }

    #mainSlider .carousel-caption {
        bottom: 20px;
        padding: 15px;
    }

    #mainSlider .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    #mainSlider .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Brands Section */
.brands-slider {
    padding: 20px 0;
}

.brand-item img {
    max-height: 80px;
    margin: 0 auto;
    /*filter: grayscale(100%);*/
    transition: all 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(100%);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer p {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: #cccccc;
}

.footer-bottom a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
} 

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* About Section */
.about-content {
    padding-right: 30px;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.mission-vision h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-image img {
    width: auto;
    height: 240px;
}

/* Counter Section */
.counter-item {
    padding: 20px;
}

.counter-item i {
    font-size: 40px;
    color: var(--primary-color);
}

.counter-item .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0;
}

.counter-item p {
    color: var(--text-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .counter-item {
        margin-bottom: 30px;
    }
} 

/* Product Categories */
.category-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 450px;
}

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

.category-card.active {
    border: 2px solid var(--primary-color);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: all 0.3s ease;
}

.category-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    .category-image {
        height: 200px;
    }
}

/* Product List */
.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
}

/* Product Detail */
.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail-images a {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.thumbnail-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.product-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 20px 0 15px;
} 

/* Gallery Styles */
.gallery-tabs {
    margin-bottom: 40px;
}

.nav-pills .nav-link {
    color: var(--text-color);
    padding: 10px 30px;
    border-radius: 30px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
}

.gallery-project-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Video Card */
.video-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--primary-color);
    font-size: 24px;
}

.play-button:hover {
    background: var(--primary-color);
}

.play-button:hover i {
    color: white;
}

.video-content {
    padding: 20px;
}

.video-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Gallery Project Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .gallery-filter .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .gallery-filter .nav-link {
        white-space: nowrap;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Video Modal */
#videoModal .modal-content {
    background: none;
    border: none;
}

#videoModal .modal-body {
    padding: 0;
    position: relative;
}

#videoModal .btn-close {
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    opacity: 1;
    text-shadow: none;
    z-index: 1;
} 

/* Contact Styles */
.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-control {
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
} 

/* Slider Navigation */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
} 

.top-bar .col-md-6.text-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
} 

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    margin-right: auto; /* Logo sola */
}

.navbar-nav {
    margin-left: auto; /* Menü sağa */
    display: flex;
    align-items: center;
}

/* 7/24 Arama butonu için */
.call-button {
    margin-left: 20px;
    white-space: nowrap;
} 

@media (max-width: 991px) {
    .navbar > .container {
        padding-left: 15px; /* Logo için sol boşluk */
        padding-right: 15px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        border-radius: 5px;
    }

    .navbar-nav .nav-link:hover {
        background: var(--light-gray);
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    .call-button {
        margin: 10px 15px;
    }
}

/* Overlay when menu is open */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-overlay.show {
    display: block;
}

/* Slider Styles */
.carousel-item {
    height: 600px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color) !important;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

#mainSlider {
    cursor: grab;
}

#mainSlider:active {
    cursor: grabbing;
} 

/* Carousel Transitions */
.carousel-item {
    transition: transform .6s ease-in-out;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    transform: translateX(0);
} 

/* Gallery Styles */
.gallery-filter .nav-pills {
    gap: 10px;
}

.gallery-filter .nav-link {
    color: var(--text-color);
    background: var(--light-gray);
    border-radius: 30px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.gallery-filter .nav-link:hover,
.gallery-filter .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .gallery-filter .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .gallery-filter .nav-link {
        white-space: nowrap;
    }
    
    .gallery-item img {
        height: 250px;
    }
} 

/* Gallery Category Card */
.gallery-category-card {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gallery-category-card .category-image {
    position: relative;
    height: 300px;
}

.gallery-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-category-card .category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: center;
}

.gallery-category-card .category-title h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

/* Gallery Images */
.gallery-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.gallery-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
} 

/* Video Player Styles */
.video-player-wrapper {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.video-player-wrapper .ratio-16x9 {
    --bs-aspect-ratio: 56.25%;  /* 16:9 oranı */
    height: 500px;  /* Sabit yükseklik */
}

.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
    background: white;
}

.video-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsive ayarları */
@media (max-width: 1200px) {
    .video-player-wrapper .ratio-16x9 {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .video-player-wrapper .ratio-16x9 {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-player-wrapper .ratio-16x9 {
        height: 300px;
    }
    
    .video-info h2 {
        font-size: 1.5rem;
    }
    
    .video-info p {
        font-size: 1rem;
    }
}

/* Video Playlist Styles */
.video-playlist {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.video-playlist h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.playlist-items {
    max-height: 600px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: white;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.playlist-item:hover,
.playlist-item.active {
    background: var(--light-gray);
    transform: translateX(5px);
}

.playlist-item .thumbnail {
    position: relative;
    width: 120px;
    height: 68px;
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.playlist-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-item:hover .play-icon {
    opacity: 1;
}

.playlist-item .video-info {
    flex: 1;
}

.playlist-item h4 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.playlist-item p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}
.carousel-indicators li {
    list-style: none; /* Liste stilini kaldırır */
}
.category-content{
    padding: 20px;
}
.brand-item{
    cursor:pointer;
}
@media (max-width: 991px) {
    .video-playlist {
        margin-top: 30px;
    }
} 

/* Filtre Sistemi Stilleri */
.filter-sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.filter-sidebar h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-title {
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-options {
    padding-left: 10px;
}

.filter-count {
    background: #e9ecef;
    color: #495057;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.active-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.filter-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #e9ecef;
    border-radius: 15px;
    margin: 0 5px 5px 0;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: #dee2e6;
    text-decoration: none;
}

.filter-tag .remove {
    margin-left: 5px;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.filter-tag .remove:hover {
    color: #dc3545;
}

/* Özel Checkbox Tasarımı */
.filter-checkbox-wrapper {
    position: relative;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-checkbox-wrapper:hover {
    background: rgba(0,0,0,0.02);
    border-radius: 4px;
    padding-left: 5px;
}

.filter-checkbox-wrapper input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.filter-checkbox-wrapper label {
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .filter-sidebar {
        margin-bottom: 30px;
    }
}

/* Filtre Sistemi - Mobil */
@media (max-width: 767px) {
    /* Filtre Toggle Butonu */
    .filter-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .filter-toggle-btn.active {
        right: 280px;
        left: auto;
        border-radius: 8px 0 0 8px;
    }

    /* Filtre Panel */
    .filter-sidebar {
        position: fixed;
        top: 0;
        right: -290px;
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
    }

    .filter-sidebar.active {
        right: 0;
    }

    /* Overlay */
    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .filter-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Scroll Lock */
    body.filter-open {
        overflow: hidden;
    }

    /* Filtre İçerik Düzenlemeleri */
    .filter-sidebar h4 {
        margin: 0 0 20px;
        padding: 0 0 15px;
        border-bottom: 2px solid var(--primary-color);
        color: var(--text-color);
        font-size: 1.1rem;
    }

    .filter-group {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .filter-group:last-child {
        border-bottom: none;
    }

    /* Aktif Filtreler */
    .active-filters {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .filter-tag {
        display: inline-flex;
        align-items: center;
        margin: 3px;
        padding: 5px 10px;
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 20px;
        font-size: 0.85rem;
    }
}

/* Filtre Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.filter-overlay.active {
    display: block;
}

/* Filtre Toggle Butonu */
.filter-toggle-btn {
    display: none;
    position: fixed;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    padding: 10px 15px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: none;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 60px;
    height: 60px;
}

/* Fancybox özelleştirmeleri */
.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.95);
}

.fancybox__toolbar {
    --fancybox-color: #fff;
}

.fancybox__nav {
    --fancybox-color: #fff;
}

/* Pagination Styles */
.pagination {
    margin: 0;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 576px) {
    .pagination .page-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Search Styles */
.search-form {
    position: relative;
    margin-bottom: 30px;
}

.search-form .form-control {
    height: 50px;
    padding-right: 50px;
    border-radius: 25px;
    border: 2px solid #eee;
    box-shadow: none;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(70, 162, 255, 0.15);
}

.search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    border-radius: 0 25px 25px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-count {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.category-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.category-name a {
    color: var(--primary-color);
    text-decoration: none;
}

.category-name a:hover {
    text-decoration: underline;
}

/* Navbar Search */
.navbar-search {
    width: 100%;
    max-width: 400px;
    margin: 0 20px;
}

.navbar-search .input-group {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-search .form-control {
    border: none;
    height: 40px;
    padding-left: 20px;
    font-size: 0.9rem;
}

.navbar-search .form-control:focus {
    box-shadow: none;
}

.navbar-search .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 25px 25px 0;
}

/* Search Modal */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    padding: 15px 20px;
}

.modal-body {
    padding: 20px;
}

#searchModal .search-form {
    margin: 0;
}

#searchModal .form-control {
    height: 45px;
}

@media (max-width: 991px) {
    .navbar-search {
        display: none;
    }
}

/* Page Content Styles */
.content-section {
    min-height: 500px;
    background: #fff;
}

.content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-wrapper h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.content-wrapper p {
    margin-bottom: 1.2rem;
}

.content-wrapper ul, 
.content-wrapper ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.25rem;
    }
}

