/* Minimal Sol Menü Tasarımı */
.sidebar-modern {
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.sidebar-modern .widget {
    background: transparent;
    border: none;
    margin: 0;
}

.sidebar-modern .widget-title {
    background: #f8f9fa;
    color: #2f3967;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid #e8ecef;
    position: relative;
}

.sidebar-modern .widget-title:before {
    content: '';
    position: absolute;
    left: 24px;
    bottom: -1px;
    width: 40px;
    height: 3px;
    background: #ee3131;
    border-radius: 2px;
}

.sidebar-modern .widget-title span {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.sidebar-modern .unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-modern .unstyled li {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
}

.sidebar-modern .unstyled li:last-child {
    border-bottom: none;
}

.sidebar-modern .unstyled li a {
    display: flex;
    align-items: center;
    color: #495057;
    text-decoration: none;
    padding: 16px 24px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.sidebar-modern .unstyled li a:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dee2e6;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.sidebar-modern .unstyled li a:hover {
    color: #2f3967;
    background: #f8f9fa;
    border-left-color: #ee3131;
    padding-left: 28px;
}

.sidebar-modern .unstyled li a:hover:before {
    background: #ee3131;
    transform: scale(1.2);
}

.sidebar-modern .unstyled li a.active {
    background: linear-gradient(90deg, rgba(238, 49, 49, 0.1), rgba(238, 49, 49, 0.05));
    color: #2f3967;
    font-weight: 600;
    border-left-color: #ee3131;
    padding-left: 28px;
}

.sidebar-modern .unstyled li a.active:before {
    background: #ee3131;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(238, 49, 49, 0.3);
}

.sidebar-modern .unstyled li a.active:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ee3131;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(238, 49, 49, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(238, 49, 49, 0); }
    100% { box-shadow: 0 0 0 0 rgba(238, 49, 49, 0); }
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .sidebar-modern {
        margin-bottom: 30px;
        position: relative;
        top: 0;
    }
    
    .sidebar-modern .widget-title {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .sidebar-modern .unstyled li a {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .sidebar-modern .unstyled li a:hover,
    .sidebar-modern .unstyled li a.active {
        padding-left: 24px;
    }
}

/* Hover container efekti */
.sidebar-modern:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Focus efekti */
.sidebar-modern .unstyled li a:focus {
    outline: 2px solid #ee3131;
    outline-offset: -2px;
}

/* Alt Sayfalar Card Tasarımı */
.hover-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 49, 49, 0.25) !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-title a:hover {
    color: #ee3131 !important;
    transition: color 0.3s ease;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #ee3131;
    border-color: #ee3131;
    color: #ffffff;
    font-weight: 500;
    border-radius: 25px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d62828;
    border-color: #d62828;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 49, 49, 0.3);
}

/* Section Title Styling */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title span {
    color: #ee3131;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ee3131, #2f3967);
    border-radius: 2px;
}

/* Referanslar Card Tasarımı */
.reference-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 49, 49, 0.25) !important;
}

.reference-card .card-img-wrapper img {
    transition: transform 0.3s ease;
}

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

.reference-card .card-body {
    padding: 1.25rem;
}

.reference-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #2f3967;
}

.reference-card .card-text {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #686b7c;
}


.fs30 {
    font-size: 30px !important;
}

.banner-area{background-size: cover !important;}

.grecaptcha-badge{display:none !important;}

/* Video Slider Stilleri */
.slider-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.slider-items {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.slider-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-content h1 small {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ee3131;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-content .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Video Slider */
@media (max-width: 768px) {
    .slider-items {
        min-height: 400px;
    }
    
    .slider-content h1 {
        font-size: 2.5rem;
    }
    
    .slider-content h1 small {
        font-size: 1rem;
    }
    
    .slider-desc {
        font-size: 1rem;
    }
    
    .slider-content .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {
    .slider-items {
        min-height: 350px;
    }
    
    .slider-content h1 {
        font-size: 2rem;
    }
    
    .slider-content h1 small {
        font-size: 0.9rem;
    }
    
    .slider-desc {
        font-size: 0.9rem;
    }
}