/* DESKTOP MENU FIXES */
@media (min-width: 992px) {
    .sub-submenu {
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 2px;
        background: #ffffff;
        min-width: 260px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border: 1px solid #eee;
        border-radius: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-6px);
        transition: all 0.2s ease;
        z-index: 9999;
    }
    
    .has-submenu:hover .sub-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .sub-submenu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .sub-submenu li a {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        transition: all 0.2s ease;
    }
    
    .sub-submenu li a:hover {
        background: #f8f9fa;
        color: #007bff;
        padding-left: 25px;
    }
    
    .sub-submenu li:last-child a {
        border-bottom: none;
    }
}

/* MOBILE FILTER CAROUSEL STYLES */
.desktop-filters {
    display: block;
}

.mobile-filter-carousel {
    display: none;
}

/* Desktop'ta mobile carousel gizle */
@media (min-width: 769px) {
    .mobile-filter-carousel {
        display: none !important;
    }
    
    .desktop-filters {
        display: block !important;
    }
}

.filter-item {
    padding: 0 5px;
}

.filter-item .btn-filter {
    display: block;
    text-align: center;
    padding: 15px 25px;
    margin: 0;
    white-space: nowrap;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-item .btn-filter:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.filter-item .btn-filter.btn-active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

/* MOBILE MENU FIXES */
@media (max-width: 991px) {
    .sub-submenu {
        position: static;
        left: auto;
        top: auto;
        margin-left: 0;
        margin-top: 0;
        background: #f8f9fa;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        z-index: auto;
        display: none;
        padding-left: 20px;
    }
    
    .has-submenu.active .sub-submenu {
        display: block;
    }
    
    .sub-submenu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .sub-submenu li a {
        display: block;
        padding: 10px 15px;
        color: #666;
        text-decoration: none;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.2s ease;
    }
    
    .sub-submenu li a:hover {
        background: #e9ecef;
        color: #007bff;
        padding-left: 20px;
    }
    
    .sub-submenu li:last-child a {
        border-bottom: none;
    }
}

/* MOBILE FOOTER FIXES */
@media (max-width: 768px) {
    .footer-widget {
        text-align: center !important;
        margin-bottom: 30px;
        padding: 20px 15px !important;
    }
    
    .footer-links {
        text-align: center !important;
    }
    
    .footer-links li {
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    
    .footer-links li a {
        display: inline-block;
        text-align: center;
        font-size: 14px;
    }
    
    .footer-title {
        text-align: center !important;
        margin-bottom: 20px !important;
        font-size: 16px !important;
    }
    
    .footer-logos {
        justify-content: center !important;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo-item {
        text-align: center;
        margin: 0 auto;
    }
    
    .app-download-buttons {
        justify-content: center !important;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .app-download-buttons a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 200px;
    }
    
    .social-media-section {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .social-title {
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .social-icons {
        text-align: center !important;
        justify-content: center;
    }
    
    .social-icon {
        margin: 0 8px !important;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .desktop-filters {
        display: none !important;
    }
    
    .mobile-filter-carousel {
        display: block !important;
    }
    
    .filter-item .btn-filter {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .filter-item .btn-filter {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* TESTIMONIALS GRID STYLES */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.testimonial-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
}

.testimonial-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* TESTIMONIALS RESPONSIVE */
@media (max-width: 768px) {
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-logo {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 15px;
    }
    
    .testimonial-logo {
        width: 80px;
        height: 60px;
    }
}

/* MOBILE ZOOM FIX */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* iOS BUTTON FIXES */
button, .btn, .v-button, .popup-close, .newsletter-btn, 
#accept-cookies, #decline-cookies, #close-cookie-banner,
.lang-dropdown-btn, .lang-option {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    touch-action: manipulation;
}

/* iOS POPUP FIXES */
#beautiful-popup, #cookie-consent {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* iOS CAROUSEL FIXES */
.owl-carousel {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.owl-carousel .owl-item {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* MOBILE SPECIFIC FIXES */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Prevent zoom on input focus */
    input[type="email"], input[type="text"], textarea {
        font-size: 16px !important;
    }
    
    /* Fix iOS button issues */
    .popup-close, .newsletter-btn, #accept-cookies, #decline-cookies, #close-cookie-banner {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    /* Fix carousel touch issues */
    .owl-carousel {
        touch-action: pan-y;
    }
}

/* STICKY HEADER FIXES - Original Theme Style */
.site-header {
    position: relative !important;
    z-index: 1000 !important;
    background: #fff !important;
}

.sticky-header {
    position: relative !important;
    z-index: 1000 !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
}

.sticky-header.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    z-index: 1000 !important;
}

/* Header sticky olduğunda breadcrumb margin ayarı */
/* Sticky header olduğunda breadcrumb header'ın hemen altında */
.sticky-header.is-sticky ~ .page-content .page-header-section {
    margin-top: 0;
    padding-top: 15px;
}

.main-bar-wraper {
    position: relative !important;
}

.main-bar {
    position: relative !important;
}

/* LANGUAGE SELECTOR INLINE */
.language-selector-inline {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.lang-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 35px !important;
    height: 28px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    color: #333 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 35px !important;
    flex-shrink: 0 !important;
}

.lang-link:hover {
    background: #f5f5f5 !important;
    border-color: #415EA8 !important;
    color: #415EA8 !important;
}

.lang-link.active {
    background: #415EA8 !important;
    border-color: #415EA8 !important;
    color: #fff !important;
}

/* EXTRA NAV STYLES */
.extra-nav {
    position: relative !important;
    z-index: 10001 !important;
    overflow: visible !important;
}

.extra-cell {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    height: 100% !important;
    position: relative !important;
    z-index: 10001 !important;
    overflow: visible !important;
}

.lang-dropdown-btn {
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 6px 18px 6px 6px !important;
    border-radius: 4px !important;
    color: #333 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    width: 35px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 10002 !important;
}

.lang-dropdown-btn .fa-chevron-down {
    position: absolute !important;
    right: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 8px !important;
}

.site-search-btn {
    width: 35px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background: #fff !important;
    color: #333 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.site-search-btn:hover {
    background: #f5f5f5 !important;
    border-color: #415EA8 !important;
    color: #415EA8 !important;
}

/* SEARCH MODAL STYLES - ENHANCED */
#search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#search-modal.show {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

#search-modal.show .search-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.search-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.search-modal-logo {
    position: absolute;
    top: 25px;
    left: 30px;
    font-weight: 700;
}

.search-modal-title {
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    flex: 1;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    border-radius: 50%;
}

.search-modal-close:hover {
    color: #333;
    background: #f5f5f5;
}

.search-modal-body {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.search-form-wrapper {
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 18px;
    z-index: 1;
}

.search-input-wrapper input {
    flex: 1;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-input-wrapper input:focus {
    border-color: #415EA8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(65, 94, 168, 0.1);
}

.search-input-wrapper input::placeholder {
    color: #999;
}

/* SEARCH INITIAL STATE */
.search-initial-state {
    display: block;
}

.search-popular-section,
.search-recent-section {
    margin-bottom: 30px;
}

.search-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.search-section-header i {
    color: #415EA8;
    font-size: 16px;
}

.search-section-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.search-tag:hover {
    background: #415EA8;
    color: #fff;
    transform: translateY(-2px);
}

.search-no-recent {
    color: #999;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

/* QUICK ACCESS */
.search-quick-access {
    margin-bottom: 30px;
}

.search-quick-access .search-quick-links {
    margin-bottom: 0;
    display: grid;
}

/* Force 2x2 grid on mobile for quick links */
@media (max-width: 991px) {
    .search-quick-access .search-quick-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .search-quick-access .quick-link-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }
}

.search-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* SEARCH MODAL MOBILE RESPONSIVE */
@media (max-width: 767px) {
    #search-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .search-modal-content {
        max-height: calc(100vh - 40px);
        max-width: 100%;
        margin: 0;
        border-radius: 20px 20px 0 0;
        transform: translateY(20px);
    }
    
    #search-modal.show .search-modal-content {
        transform: translateY(0);
    }
    
    .search-modal-header {
        padding: 20px 15px;
        flex-wrap: wrap;
    }
    
    .search-modal-logo {
        position: static;
        top: auto;
        left: auto;
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .search-modal-title {
        order: 2;
        font-size: 18px;
        width: 100%;
        margin: 0;
        padding: 0 40px;
    }
    
    .search-modal-close {
        order: 3;
        position: absolute;
        top: 20px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .search-modal-body {
        padding: 15px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Custom scrollbar for search modal body on mobile */
    .search-modal-body::-webkit-scrollbar {
        width: 6px;
    }
    
    .search-modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .search-modal-body::-webkit-scrollbar-thumb {
        background: #415EA8;
        border-radius: 10px;
    }
    
    .search-modal-body::-webkit-scrollbar-thumb:hover {
        background: #3559A7;
    }
    
    .search-form-wrapper {
        margin-bottom: 20px;
    }
    
    .search-input-wrapper input {
        padding: 14px 16px 14px 45px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .search-input-icon {
        left: 15px;
        font-size: 16px;
    }
    
    .search-popular-section,
    .search-recent-section {
        margin-bottom: 20px;
    }
    
    .search-quick-access {
        margin-bottom: 15px;
    }
    
    .search-section-header {
        margin-bottom: 12px;
    }
    
    .search-section-header h4 {
        font-size: 13px;
    }
    
    .search-tags {
        gap: 8px;
    }
    
    .search-tag {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 16px;
    }
    
    .search-quick-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 0 !important;
    }
    
    .quick-link-card {
        padding: 12px 8px !important;
        border-radius: 10px !important;
        min-height: 90px !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .quick-link-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 6px;
        border-radius: 10px;
    }
    
    .quick-link-card span {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .search-tip {
        padding: 12px;
        font-size: 12px;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .search-tip i {
        font-size: 14px;
    }
    
    .search-tip kbd {
        padding: 3px 6px;
        font-size: 11px;
        min-width: 25px;
    }
}

@media (max-width: 480px) {
    #search-modal {
        padding: 0;
        padding-top: 10px;
    }
    
    .search-modal-content {
        max-height: calc(100vh - 10px);
        border-radius: 16px 16px 0 0;
    }
    
    .search-modal-header {
        padding: 15px 12px;
    }
    
    .search-modal-title {
        font-size: 16px;
        padding: 0 35px;
    }
    
    .search-modal-close {
        top: 15px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
    
    .search-modal-body {
        padding: 12px;
        padding-bottom: 20px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .search-quick-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 0 !important;
    }
    
    .quick-link-card {
        padding: 10px 6px !important;
        min-height: 85px !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .quick-link-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .quick-link-card span {
        font-size: 10px;
        line-height: 1.3;
    }
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    background: #fff;
    border-color: #415EA8;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #415EA8;
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

.quick-link-icon.products {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.quick-link-icon.projects {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.quick-link-icon.news {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.quick-link-icon.contact {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.quick-link-card span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* SEARCH TIP */
.search-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

.search-tip i {
    color: #ffc107;
    font-size: 16px;
}

.search-tip kbd {
    padding: 4px 8px;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-family: monospace, 'Courier New', Courier !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    color: #333 !important;
    display: inline-block !important;
    min-width: 30px !important;
    text-align: center !important;
    line-height: 1.4 !important;
}

.search-results {
    margin-top: 20px;
}

.search-results-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.search-results-loading i {
    font-size: 32px;
    color: #415EA8;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-results-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.search-results-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    cursor: pointer;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
}

.search-result-icon.products {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.search-result-icon.projects {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.search-result-icon.news {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.search-result-icon.categories {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.search-result-icon.blogs {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.search-result-icon.services {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.search-result-icon.pages {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    word-wrap: break-word;
}

.search-result-description {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
}

.search-result-meta {
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.search-results-section {
    margin-top: 25px;
}

.search-results-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.search-results-count {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
}

/* SEARCH MODAL RESPONSIVE */
@media (max-width: 768px) {
    #search-modal {
        padding: 10px;
    }
    
    .search-modal-content {
        max-width: 100%;
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .search-modal-header {
        padding: 20px;
    }
    
    .search-modal-logo {
        position: static;
        margin-right: 10px;
    }
    
    .search-modal-title {
        font-size: 18px;
    }
    
    .search-modal-close {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .search-modal-body {
        padding: 20px;
    }
    
    .search-input-wrapper input {
        padding: 15px 20px 15px 50px;
        font-size: 16px;
    }
    
    .search-quick-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .search-result-item {
        padding: 12px;
    }
    
    .search-result-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .search-result-title {
        font-size: 15px;
    }
    
    .search-result-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .search-modal-header {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .search-modal-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .search-modal-title {
        font-size: 16px;
        width: 100%;
        order: 2;
    }
    
    .search-modal-close {
        order: 3;
    }
    
    .search-modal-body {
        padding: 15px;
    }
    
    .search-input-wrapper input {
        padding: 12px 15px 12px 45px;
        font-size: 14px;
    }
    
    .search-quick-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .search-result-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-result-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* FIXED CATALOG BUTTON - Sol Taraf */
.fixed-catalog-btn {
    position: fixed !important;
    left: -20px !important;
    top: calc(50% - 85px) !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    width: 50px !important;
    height: 160px !important;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 50%, #3559A7 100%) !important;
    background-size: 200% 200% !important;
    border-radius: 0 24px 24px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 6px 25px rgba(53, 89, 167, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    overflow: hidden !important;
    padding: 12px 6px !important;
    cursor: pointer !important;
    border: none !important;
    border-left: 3px solid rgba(255, 255, 255, 0.6) !important;
    animation: gradientShift 4s ease infinite !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.fixed-catalog-btn:hover {
    left: 0 !important;
    background: linear-gradient(135deg, #4A78B5 0%, #5A88C5 50%, #4A78B5 100%) !important;
    box-shadow: 0 8px 30px rgba(53, 89, 167, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-50%) !important;
    border-radius: 0 24px 24px 0 !important;
}

.catalog-btn-text {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    direction: ltr !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fixed-catalog-btn {
        width: 46px !important;
        height: 140px !important;
        left: -32px !important;
        border-radius: 0 22px 22px 0 !important;
        padding: 10px 5px !important;
        top: calc(50% - 75px) !important;
        border-left: 3px solid rgba(255, 255, 255, 0.6) !important;
    }
    
    .fixed-catalog-btn:hover {
        left: 0 !important;
        border-radius: 0 22px 22px 0 !important;
    }
    
    .catalog-btn-text {
        font-size: 10px !important;
        letter-spacing: 1.6px !important;
        padding: 0 !important;
    }
    
    .fixed-design-universe-btn {
        width: 46px !important;
        height: 140px !important;
        left: -32px !important;
        top: calc(50% + 65px) !important;
        border-radius: 0 22px 22px 0 !important;
        padding: 10px 5px !important;
        border-left: 3px solid rgba(255, 255, 255, 0.5) !important;
    }
    
    .fixed-design-universe-btn:hover {
        left: 0 !important;
        border-radius: 0 22px 22px 0 !important;
    }
    
    .design-universe-btn-text {
        font-size: 10px !important;
        letter-spacing: 1.6px !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .fixed-catalog-btn {
        width: 42px !important;
        height: 120px !important;
        left: -28px !important;
        top: calc(50% - 65px) !important;
        border-radius: 0 20px 20px 0 !important;
        padding: 8px 4px !important;
        border-left: 2px solid rgba(255, 255, 255, 0.6) !important;
    }
    
    .fixed-catalog-btn:hover {
        left: 0 !important;
        border-radius: 0 20px 20px 0 !important;
    }
    
    .catalog-btn-text {
        font-size: 9px !important;
        letter-spacing: 1.4px !important;
        padding: 0 !important;
    }
    
    .fixed-design-universe-btn {
        width: 42px !important;
        height: 120px !important;
        left: -28px !important;
        top: calc(50% + 55px) !important;
        border-radius: 0 20px 20px 0 !important;
        padding: 8px 4px !important;
        border-left: 2px solid rgba(255, 255, 255, 0.5) !important;
    }
    
    .fixed-design-universe-btn:hover {
        left: 0 !important;
        border-radius: 0 20px 20px 0 !important;
    }
    
    .design-universe-btn-text {
        font-size: 9px !important;
        letter-spacing: 1.4px !important;
        padding: 0 !important;
    }
}

/* FIXED DESIGN UNIVERSE BUTTON - Sol Taraf (Katalog butonunun altında) */
.fixed-design-universe-btn {
    position: fixed !important;
    left: -20px !important;
    top: calc(50% + 75px) !important;
    transform: translateY(-50%) !important;
    z-index: 9998 !important;
    width: 50px !important;
    height: 160px !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
    background-size: 200% 200% !important;
    border-radius: 0 24px 24px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
    padding: 12px 6px !important;
    cursor: pointer !important;
    border: none !important;
    border-left: 3px solid rgba(255, 255, 255, 0.5) !important;
    animation: gradientShiftDark 4s ease infinite !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.fixed-design-universe-btn:hover {
    left: 0 !important;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-50%) !important;
    border-radius: 0 24px 24px 0 !important;
}

.design-universe-btn-text {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    direction: ltr !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientShiftDark {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Hilite Title Link Hover Effect */
.hilite-title a.text-black {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.hilite-title a.text-black:hover {
    color: #3559A7 !important;
    opacity: 0.8;
}

/* Page Header Section (Title + Breadcrumb) */
.page-content {
    padding-top: 0;
    position: relative;
    z-index: 1;
    overflow: visible !important;
    font-size: 16px;
}

.page-content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.page-content .content {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.page-content .content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

/* Genel font boyutu artırma */
body {
    font-size: 16px !important;
}

p, .text, .content-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

/* Küçük yazılar için minimum boyut */
small, .small, .text-small {
    font-size: 14px !important;
}

/* Section-full ve container overflow ayarları - dropdown için */
.section-full {
    overflow: visible !important;
    position: relative;
}

/* Mobilde slider ile ürünler arası boşluğu ayarla */
@media (max-width: 768px) {
    .rev_slider_wrapper.fullscreen-container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .latest_project-outer.section-full.p-t80 {
        padding-top: 50px !important;
        margin-top: 20px !important;
    }
    
    .section-full.p-t80 {
        padding-top: 50px !important;
    }
    
    #welcome_wrapper {
        margin-bottom: 0 !important;
    }
    
    #welcome_wrapper + .section-full {
        margin-top: 20px !important;
        padding-top: 50px !important;
    }
    
    /* Revolution Slider tp-fullwidth-forcer yüksekliğini mobilde azalt */
    .tp-fullwidth-forcer {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: 500px !important;
    }
    
    #welcome .tp-fullwidth-forcer {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: 500px !important;
    }
    
    .rev_slider .tp-fullwidth-forcer {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: 500px !important;
    }
}

.page-content-wrapper {
    overflow: visible !important;
    position: relative;
}

.page-content-wrapper .container,
.section-full .container {
    overflow: visible !important;
    position: relative;
}

/* Page menu navigation için container overflow */
.page-menu-navigation .container {
    overflow: visible !important;
    position: relative;
}

.page-header-section {
    background: #fff;
    background-image: url('../images/iston-kurumsal.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
    min-height: 150px;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Overlay - hafif siyahımsı transparan */
.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

/* İçerik overlay'in üstünde olmalı */
.page-header-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-header-title {
    flex: 1;
}

.page-title-text {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header-breadcrumb {
    flex-shrink: 0;
}

.page-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.page-breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb-separator {
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.page-breadcrumb li:last-child {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .page-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .page-header-title {
        width: 100%;
    }
    
    .page-header-breadcrumb {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
    }
    
    .page-header-breadcrumb::-webkit-scrollbar {
        height: 3px;
    }
    
    .page-header-breadcrumb::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .page-header-breadcrumb::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 3px;
    }
    
    .page-breadcrumb {
        font-size: 11px;
        gap: 3px;
        min-width: max-content;
        padding-right: 20px;
    }
    
    .breadcrumb-separator {
        margin: 0 2px;
        font-size: 9px;
    }
    
    .page-breadcrumb li {
        font-size: 11px;
    }
    
    .page-breadcrumb li a {
        font-size: 11px;
        padding: 2px 4px;
        white-space: nowrap;
    }
    
    .page-title-text {
        font-size: 18px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .page-breadcrumb {
        font-size: 10px;
        gap: 2px;
    }
    
    .breadcrumb-separator {
        margin: 0 2px;
        font-size: 8px;
    }
    
    .page-breadcrumb li {
        font-size: 10px;
    }
    
    .page-breadcrumb li a {
        font-size: 10px;
        padding: 2px 3px;
    }
    
    .page-title-text {
        font-size: 16px;
    }
}

/* Page Menu Navigation (Horizontal Scrollable) */
.page-menu-navigation {
    background: #f8f9fa;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100000 !important;
    overflow: visible !important;
}

.page-menu-scroll-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100001;
    overflow: visible !important;
}

.page-menu-scroll-btn {
    background: #fff;
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.page-menu-scroll-btn:hover {
    background: #3559A7;
    color: #fff;
    border-color: #3559A7;
}

.page-menu-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-menu-scroll-left {
    border-right: none;
    border-radius: 0;
}

.page-menu-scroll-right {
    border-left: none;
    border-radius: 0;
}

.page-menu-scroll-container {
    flex: 1;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
    position: relative;
    pointer-events: auto;
    z-index: 100002;
}

.page-menu-scroll-container:active {
    cursor: grabbing;
}

.page-menu-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.page-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: #fff;
    min-height: 50px;
    position: relative;
    overflow: visible !important;
    z-index: 100003;
}

.page-menu-list li {
    display: inline-block;
    flex-shrink: 0;
}

.page-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.page-menu-list li a:hover {
    color: #3559A7;
    background: #f8f9fa;
}

/* Aktif sayfa için stil (dropdown açık değil) */
.page-menu-list li.page-active a {
    color: #3559A7;
    background: #fff;
    border-bottom-color: #3559A7;
    font-weight: 600;
}

.page-menu-list li.page-active a i {
    margin-left: 8px;
    font-size: 11px;
    display: inline-block;
}

/* Dropdown açık olduğunda */
.page-menu-list li.has-dropdown.dropdown-open a {
    color: #3559A7;
    background: #fff;
    border-bottom-color: #3559A7;
}

.page-menu-list li.has-dropdown.dropdown-open a i {
    transform: rotate(180deg);
}

/* Page Menu Dropdown Styles */
.page-menu-list li {
    position: relative;
    z-index: 1;
}

.page-menu-list li.has-dropdown {
    z-index: 100004 !important;
    position: relative;
}

.page-menu-list li.has-dropdown > a.has-children {
    padding-right: 30px;
}

.page-menu-list li.has-dropdown > a i {
    margin-left: 8px;
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Desktop'ta hover ile dropdown aç (sadece desktop) */
@media (min-width: 769px) {
    .page-menu-list li.has-dropdown:hover > .page-menu-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .page-menu-list li.has-dropdown:hover > a i {
        transform: rotate(180deg);
    }
}

.page-menu-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff !important;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100005 !important;
    white-space: nowrap;
    margin-top: 3px;
    pointer-events: none;
    display: block !important;
}

/* Dropdown açık olduğunda göster - Desktop */
.page-menu-list li.has-dropdown.dropdown-open > .page-menu-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
}

.page-menu-dropdown li {
    display: block;
    position: relative;
}

.page-menu-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.page-menu-dropdown li a:hover,
.page-menu-dropdown li.active a {
    background: #f5f5f5;
    color: #3559A7;
    padding-left: 25px;
}

/* Nested Dropdown (3+ levels) */
.page-menu-dropdown .page-menu-dropdown {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

.page-menu-dropdown li.has-dropdown > a {
    padding-right: 30px;
}

.page-menu-dropdown li.has-dropdown > a::after {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Page Sidebar Styles */
.widget-pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-pages-list li {
    border-bottom: 1px solid #e5e5e5;
}

.widget-pages-list li:last-child {
    border-bottom: none;
}

.widget-pages-list li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.widget-pages-list li a:hover {
    background-color: #f5f5f5;
    color: #3559A7;
    padding-left: 20px;
}

.widget-pages-list li.active a {
    background-color: #f5f5f5;
    color: #3559A7;
    font-weight: 500;
    padding-left: 20px;
}

/* Page Title Separator (if needed in content) */
.page-title-separator {
    width: 60px;
    height: 3px;
    background: #3559A7;
    margin-top: 15px;
    margin-bottom: 30px;
}

.widget-contact-info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.widget-contact-info p i {
    margin-right: 8px;
    color: #3559A7;
    width: 20px;
}

.widget-contact-info a {
    color: #3559A7;
    text-decoration: none;
}

.widget-contact-info a:hover {
    text-decoration: underline;
}

/* Organization Chart Styles */
.organization-chart-wrapper {
    margin-top: 40px;
}

.organization-chart {
    position: relative;
    padding: 40px 0;
}

.org-member {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.org-member-card {
    display: inline-block;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.org-member-card:hover {
    border-color: #415EA8;
    box-shadow: 0 4px 16px rgba(65, 94, 168, 0.2);
    transform: translateY(-5px);
}

.org-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #415EA8;
}

.org-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-member-info {
    text-align: center;
}

.org-member-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.org-member-title {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* Organization Chart Levels */
.org-level-0 {
    margin-bottom: 50px;
}

.org-level-0 .org-member-card {
    min-width: 250px;
    padding: 25px;
}

.org-level-0 .org-member-photo {
    width: 150px;
    height: 150px;
}

.org-level-0 .org-member-name {
    font-size: 18px;
    margin-bottom: 8px;
}

.org-level-0 .org-member-title {
    font-size: 14px;
}

.org-level-1 {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 30px;
}

.org-level-1 .org-member-card {
    min-width: 200px;
}

.org-level-2 {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 20px;
}

.org-level-2 .org-member-card {
    min-width: 180px;
    padding: 15px;
}

.org-level-2 .org-member-photo {
    width: 100px;
    height: 100px;
}

.org-level-2 .org-member-name {
    font-size: 14px;
}

.org-level-2 .org-member-title {
    font-size: 12px;
}

.org-children {
    margin-top: 30px;
    padding-top: 30px;
    position: relative;
}

.org-children::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: #415EA8;
}

.org-level-1 .org-children {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Member Modal Styles */
.member-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.member-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.member-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.member-modal-close:hover {
    color: #333;
    background: #f5f5f5;
}

.member-modal-body {
    padding: 40px;
}

.member-modal-loading,
.member-modal-error {
    text-align: center;
    padding: 40px 20px;
}

.member-modal-loading i {
    font-size: 48px;
    color: #3559A7;
    margin-bottom: 20px;
}

.member-modal-error {
    color: #d32f2f;
}

.member-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f5f5f5;
}

.member-modal-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3559A7;
}

.member-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-modal-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-modal-position {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.member-modal-content-section {
    margin-bottom: 25px;
}

.member-modal-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.member-modal-department {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.member-modal-department strong {
    color: #333;
    margin-right: 8px;
}

.member-modal-contact {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.member-modal-contact i {
    margin-right: 10px;
    color: #3559A7;
    width: 20px;
}

.member-modal-contact a {
    color: #3559A7;
    text-decoration: none;
}

.member-modal-contact a:hover {
    text-decoration: underline;
}

/* Page Menu Navigation Responsive */
@media (max-width: 768px) {
    .page-menu-scroll-btn {
        width: 35px;
        height: 45px;
        font-size: 14px;
    }
    
    .page-menu-list li a {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .page-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .page-header-title {
        width: 100%;
    }
    
    .page-header-breadcrumb {
        width: 100%;
    }
    
    .page-title-text {
        font-size: 20px;
    }
    
    .page-breadcrumb {
        font-size: 12px;
    }
    
    .page-header-section {
        padding: 35px 0;
        min-height: 120px;
        background-size: cover;
    }
    
    /* Mobile dropdown - full width, hidden by default */
    .page-menu-dropdown {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 1px solid #e5e5e5;
        margin-top: 0;
        margin-left: 0;
        min-width: 100%;
        display: none !important; /* Hidden by default on mobile */
        background: #f8f9fa;
    }
    
    .page-menu-list li.has-dropdown.dropdown-open > .page-menu-dropdown {
        display: block !important; /* Show when dropdown-open class is present */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .page-menu-dropdown li a {
        padding: 10px 20px 10px 30px; /* Indent for first level dropdown */
        font-size: 13px;
    }
    
    .page-menu-dropdown .page-menu-dropdown li a {
        padding-left: 50px; /* Indent for second level dropdown */
    }
    
    /* Mobile'da hover efektini kaldır */
    .page-menu-list li.has-dropdown:hover > .page-menu-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    
    .page-menu-list li.has-dropdown:hover > a i {
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .page-menu-scroll-btn {
        width: 30px;
        height: 40px;
        font-size: 12px;
    }
    
    .page-menu-list li a {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .page-header-wrapper {
        gap: 12px;
    }
    
    .page-title-text {
        font-size: 18px;
    }
    
    .page-breadcrumb {
        font-size: 11px;
    }
    
    .related-products-title {
        font-size: 18px;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
    }
    
    .page-header-section {
        padding: 30px 0;
        min-height: 110px;
        background-size: cover;
    }
}

/* Responsive Organization Chart */
@media (max-width: 768px) {
    .org-level-1 {
        display: block;
        margin: 0 0 20px;
    }
    
    .org-level-2 {
        display: block;
        margin: 0 0 15px;
    }
    
    .org-children {
        display: block !important;
    }
    
    .org-member-card {
        width: 100%;
        max-width: 300px;
    }
    
    .member-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .member-modal-body {
        padding: 30px 20px;
    }
    
    .member-modal-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-modal-title h3 {
        font-size: 20px;
    }
}

/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

.products-section {
    padding: 40px 0;
    background: #fff;
}

.products-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .products-section {
        padding: 15px 0;
    }
    
    .products-section .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }
    
    .products-main {
        padding: 0 2px;
    }
    
    .products-grid {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .products-main {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .products-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .products-main {
        padding: 0;
    }
    
    .products-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin-bottom: 12px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-info {
        padding: 12px;
    }
}

/* Sidebar Filters */
.products-sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.products-filter-toggle {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .products-filter-toggle {
        display: flex !important;
    }
}

.products-filter-toggle:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(53, 89, 167, 0.4);
}

.products-filter-toggle i {
    font-size: 16px;
}

.products-filters {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Mobile Filter Toggle Button */
.products-filter-toggle-mobile {
    display: none;
}

/* Desktop: Normal sidebar */
@media (min-width: 992px) {
    .products-filter-toggle-mobile {
        display: none !important;
    }
    
    .products-sidebar {
        position: sticky;
        top: 100px;
        margin-bottom: 30px;
    }
    
    .products-filters {
        position: relative;
        background: #fff;
        border: none;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
        transform: none;
        opacity: 1;
        max-height: calc(100vh - 120px);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .products-filters .filter-content-wrapper {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 8px;
        scrollbar-width: thin;
        scrollbar-color: #3559A7 #f1f1f1;
    }
    
    .products-filters .filter-content-wrapper::-webkit-scrollbar {
        width: 8px;
    }
    
    .products-filters .filter-content-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
        margin: 10px 0;
    }
    
    .products-filters .filter-content-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #3559A7 0%, #4A78B5 50%, #2a4780 100%);
        background-size: 200% 200%;
        border-radius: 4px;
        border: 2px solid #f1f1f1;
        transition: all 0.3s ease;
    }
    
    .products-filters .filter-content-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #2a4780 0%, #3559A7 50%, #1e3560 100%);
        background-size: 200% 200%;
        box-shadow: 0 2px 8px rgba(53, 89, 167, 0.4);
    }
    
    .products-filters .filter-header {
        display: none;
    }
    
    .filter-close {
        display: none !important;
    }
}

/* Mobile: Modal sidebar */
@media (max-width: 991px) {
    .page-header-section {
        position: relative;
        padding-bottom: 70px !important;
    }
    
    .page-header-breadcrumb {
        margin-bottom: 20px !important;
    }
    
    .products-filter-toggle-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #3559A7 0%, #4A78B5 50%, #2a4780 100%) !important;
        background-size: 200% 200% !important;
        color: #fff !important;
        border: none;
        border-radius: 0;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 4px 16px rgba(53, 89, 167, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        transform: translateY(0);
        animation: buttonGradientShift 3s ease infinite !important;
    }
    
    @keyframes buttonGradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .products-filter-toggle-mobile:hover,
    .products-filter-toggle-mobile:active {
        background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%) !important;
        box-shadow: 0 6px 16px rgba(53, 89, 167, 0.4);
        transform: scale(0.98);
    }
    
    .products-filter-toggle-mobile i {
        font-size: 18px;
    }
    
    .products-section .col-lg-3.col-md-4 {
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .products-section .col-lg-3.col-md-4 .products-sidebar {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 99999 !important;
    }
    
    .products-section .col-lg-9.col-md-8,
    .products-section .col-12 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .products-section {
        padding-top: 0;
    }
    
    .products-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 99999 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        pointer-events: none !important;
    }
    
    .products-sidebar.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .products-filter-toggle {
        display: none !important;
    }
    
    .products-sidebar .products-filters {
        position: relative !important;
        width: 92% !important;
        max-width: 520px !important;
        max-height: 88vh !important;
        z-index: 100000 !important;
        margin: 0 auto !important;
        border-radius: 24px !important;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        overflow: hidden !important;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        padding: 0 !important;
        padding-top: 75px !important;
        padding-bottom: 35px !important;
        -webkit-overflow-scrolling: touch !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%) !important;
        background-size: 200% 200% !important;
        transform: scale(0.85) translateY(30px) rotateX(5deg) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: hidden !important;
        backface-visibility: hidden !important;
        perspective: 1000px !important;
        border: none !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper {
        flex: 1 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 0 !important;
        margin-top: 0 !important;
        scrollbar-width: thin !important;
        scrollbar-color: #3559A7 #f1f1f1 !important;
    }
    
    .products-sidebar.active .products-filters {
        animation: modalGradientShift 4s ease infinite !important;
    }
    
    @keyframes modalGradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .products-sidebar.active .products-filters {
        transform: scale(1) translateY(0) rotateX(0deg) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper::-webkit-scrollbar {
        width: 8px !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
        border-radius: 4px !important;
        margin: 10px 0 !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #3559A7 0%, #4A78B5 50%, #2a4780 100%) !important;
        background-size: 200% 200% !important;
        border-radius: 4px !important;
        border: 2px solid #f1f1f1 !important;
        transition: all 0.3s ease !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #2a4780 0%, #3559A7 50%, #1e3560 100%) !important;
        background-size: 200% 200% !important;
        box-shadow: 0 2px 8px rgba(53, 89, 167, 0.4) !important;
    }
    
    .products-sidebar .products-filters .filter-content-wrapper::-webkit-scrollbar-thumb:active {
        background: linear-gradient(135deg, #1e3560 0%, #2a4780 50%, #0f1a30 100%) !important;
    }
    
    
    .products-sidebar .products-filters .filter-header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 75px !important;
        background: linear-gradient(135deg, #1e3560 0%, #2a4780 20%, #3559A7 40%, #4A78B5 50%, #5A88C5 60%, #4A78B5 70%, #3559A7 80%, #2a4780 90%, #1e3560 100%) !important;
        background-size: 400% 400% !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 70px 0 30px !important;
        color: #fff !important;
        font-weight: 800 !important;
        font-size: 20px !important;
        text-transform: uppercase !important;
        z-index: 1 !important;
    }
    
    .products-sidebar .products-filters .filter-header-title {
        margin: 0 !important;
        padding: 0 !important;
        color: #fff !important;
        font-weight: 700 !important;
        font-size: 20px !important;
        text-transform: uppercase !important;
        line-height: 1.2 !important;
        letter-spacing: 0.5px !important;
    }
    
    .products-sidebar .products-filters::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 75px !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), transparent) !important;
        animation: shimmer 4s ease-in-out infinite !important;
        z-index: 100002 !important;
        pointer-events: none !important;
    }
    
    @keyframes headerGradientShift {
        0% { background-position: 0% 50%; }
        25% { background-position: 100% 50%; }
        50% { background-position: 200% 50%; }
        75% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    @keyframes shimmer {
        0% { left: -100%; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { left: 100%; opacity: 0; }
    }
    
    .products-sidebar.active .products-filters .filter-header {
        display: flex !important;
    }
    
    .filter-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        z-index: 100002;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .filter-close:hover {
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.5);
        transform: rotate(90deg) scale(1.1);
    }
    
    .products-sidebar .products-filters .filter-group {
        padding: 0 28px !important;
        margin-bottom: 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .products-sidebar .products-filters .filter-actions {
        padding: 0 28px 28px 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .products-sidebar .products-filters .filter-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 16px !important;
        color: #2c3e50 !important;
        letter-spacing: 0.5px !important;
    }
    
    .products-sidebar .products-filters .filter-line {
        height: 4px !important;
        background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%) !important;
        width: 60px !important;
        margin-bottom: 20px !important;
        border-radius: 2px !important;
    }
    
    .products-sidebar .products-filters .filter-items {
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 12px !important;
    }
    
    .products-sidebar .products-filters .filter-item {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 8px 0 !important;
    }
    
    .products-sidebar .filter-close {
        position: absolute !important;
        top: 18px !important;
        right: 18px !important;
        width: 48px !important;
        height: 48px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 22px !important;
        cursor: pointer !important;
        z-index: 100002 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: blur(12px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }
    
    .products-sidebar .filter-close:hover,
    .products-sidebar .filter-close:active {
        background: rgba(255, 255, 255, 0.45) !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
        transform: rotate(90deg) scale(1.15) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    }
    
    .products-sidebar .filter-close i {
        font-size: 18px !important;
    }
    
    @media (max-width: 480px) {
        .products-filter-toggle-mobile {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .products-filters {
            width: 95%;
            max-width: 100%;
            max-height: 90vh;
            border-radius: 15px;
            padding-top: 65px;
        }
        
        .products-filters .filter-header {
            width: 100%;
            height: 65px;
            padding: 0 55px 0 20px;
            border-radius: 15px 15px 0 0;
        }
        
        .products-filters .filter-header-title {
            font-size: 16px !important;
        }
        
        .products-sidebar .filter-close {
            right: 14px !important;
            width: 42px !important;
            height: 42px !important;
            font-size: 20px !important;
            top: 14px !important;
        }
        
        .products-sidebar .products-filters .filter-group {
            padding: 0 20px !important;
            margin-bottom: 24px !important;
        }
        
        .products-sidebar .products-filters .filter-actions {
            padding: 0 20px 24px 20px !important;
        }
        
        .products-sidebar .products-filters .filter-title {
            font-size: 15px !important;
        }
    }
}

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

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-line {
    height: 3px;
    background: #FFD700;
    width: 50px;
    margin-bottom: 20px;
}

.filter-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s ease;
    position: relative;
}

.filter-item.has-children {
    margin-bottom: 4px;
}

.filter-item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.filter-item:hover .filter-item-wrapper {
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* Alt kategori için görsel iyileştirme - Modern ve profesyonel */
.filter-item-sub {
    padding-left: 0 !important;
    margin-left: 0;
    margin-top: 0;
    position: relative;
}

.filter-item-level-1 {
    padding-left: 0 !important;
    margin-left: 0;
}

.filter-item-level-2 {
    padding-left: 0 !important;
    margin-left: 0;
}

.filter-item-level-3 {
    padding-left: 0 !important;
    margin-left: 0;
}

.filter-item-sub .filter-item-wrapper {
    padding-left: 20px;
    position: relative;
}

.filter-item-sub .filter-item-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
    transition: background-color 0.2s ease;
}


.filter-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 10px 0;
    transition: color 0.2s ease;
    flex: 1;
    gap: 8px;
}

.filter-label {
    flex: 1;
}

.filter-link:hover {
    color: #3559A7;
    text-decoration: none;
}

.filter-link.active {
    color: #3559A7;
    font-weight: 600;
}

.filter-link.active .filter-count {
    color: #3559A7;
    font-weight: 500;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    color: #666;
    user-select: none;
    flex: 1;
}

.filter-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    color: #666;
    font-size: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
}

.filter-toggle:hover {
    color: #3559A7;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.filter-toggle i {
    transition: transform 0.2s ease;
}

.filter-children {
    margin-top: 2px;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    animation: slideDown 0.2s ease;
}

.filter-children .filter-item {
    margin-bottom: 0;
}

.filter-children .filter-item-wrapper {
    padding-left: 20px;
    position: relative;
}

.filter-children .filter-item-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
    transition: background-color 0.2s ease;
}

.filter-children .filter-item:hover .filter-item-wrapper::before {
    background: #3559A7;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.filter-checkbox:hover {
    color: #3559A7;
}

.filter-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: #3559A7;
}

.filter-input:checked ~ .checkmark {
    background-color: #3559A7;
    border-color: #3559A7;
}

.filter-input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-label {
    flex: 1;
}

.filter-count {
    color: #999;
    font-size: 13px;
    margin-left: auto;
    font-weight: normal;
}

.filter-label {
    flex: 1;
}

.filter-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.btn-clear-filters {
    width: 100%;
    padding: 10px 15px;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-clear-filters:hover {
    background: #e9ecef;
    color: #333;
    border-color: #ddd;
}

/* Products Main Area */
.products-main {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .products-main {
        padding-left: 0;
    }
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.products-count {
    font-size: 14px;
    color: #666;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sort label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
    border-color: #3559A7;
    outline: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #3559A7;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    background: #3559A7;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 1;
}

.product-badge-new {
    background: #28a745;
}

/* Product Card Info (for listing and related products) - already defined below */

.product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Product Card Title (Listing Page) */
.product-card .product-info .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-card .product-info .product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .product-info .product-title a:hover {
    color: #3559A7;
}

/* Product Detail Page Title */
.product-detail-section .product-info .product-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #3559A7;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px 0;
    flex: 1;
}

.product-code {
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

/* Products Empty State */
.products-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.products-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.products-empty h3 {
    font-size: 24px;
    color: #666;
    margin: 0 0 10px 0;
}

.products-empty p {
    font-size: 14px;
    margin: 0;
}

/* Pagination */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #666;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 44px;
    height: 44px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.page-link:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
    color: #3559A7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(53, 89, 167, 0.2), inset 0 0 0 2px rgba(53, 89, 167, 0.15);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.4), 0 2px 8px rgba(53, 89, 167, 0.3);
    transform: translateY(-2px);
}

.page-item.active .page-link:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.5);
}

.page-link i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .products-pagination {
        margin-top: 30px;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .page-link {
        padding: 10px 14px;
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }
    
    .page-link {
        padding: 8px 12px;
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 8px;
    }
}

/* Product Detail Mobile Horizontal Categories */
.product-detail-mobile-categories {
    margin-bottom: 20px;
    padding: 0;
}

.mobile-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3559A7 #f1f1f1;
    padding: 10px 0;
}

.mobile-categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.mobile-categories-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.mobile-categories-scroll::-webkit-scrollbar-thumb {
    background: #3559A7;
    border-radius: 2px;
}

.mobile-category-item {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-category-item:hover {
    background: #f8f9fa;
    border-color: #3559A7;
    color: #3559A7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(53, 89, 167, 0.15);
}

.mobile-category-item.active {
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    border-color: #3559A7;
    color: #fff;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-section {
        padding: 20px 0;
    }
    
    .products-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .product-detail-section {
        padding: 20px 0;
    }
    
    .product-detail-section .row {
        margin: 0;
    }
    
    .product-detail-section .col-lg-9,
    .product-detail-section .col-lg-12 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-sort {
        width: 100%;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .org-member-card {
        min-width: auto;
        padding: 15px;
    }
    
    .org-level-0 .org-member-photo {
        width: 120px;
        height: 120px;
    }
    
    .org-level-1 .org-member-photo {
        width: 100px;
        height: 100px;
    }
    
    .org-level-2 .org-member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-modal-body {
        padding: 20px 15px;
    }
    
    .member-modal-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-modal-title h3 {
        font-size: 18px;
    }
}

/* PRODUCT DETAIL PAGE STYLES */
.product-detail-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.product-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 89, 167, 0.2), transparent);
}

.product-images {
    margin-bottom: 30px;
}

.product-main-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(53, 89, 167, 0.1);
}

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

.product-gallery {
    margin-top: 15px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #3559A7;
    border-radius: 2px;
}

.gallery-thumb {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    flex-shrink: 0;
    border: none !important;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.25);
}

.gallery-thumb.active {
    box-shadow: 0 0 0 2px #3559A7, 0 4px 12px rgba(53, 89, 167, 0.3);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Product Detail Page - Main Product Info */
.product-detail-section .product-info {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    min-height: 400px;
}

/* Product Card Info (for listing and related products) */
.product-card .product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

/* Product Detail Page - Blue line on left */
.product-detail-section .product-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3559A7 0%, #2a4780 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.product-info .product-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-quote-button {
    margin-top: auto;
    padding-top: 20px;
}

.btn-request-quote {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 6px 24px rgba(53, 89, 167, 0.3), 0 2px 8px rgba(53, 89, 167, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-request-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-request-quote:hover::before {
    left: 100%;
}

.btn-request-quote:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(53, 89, 167, 0.4), 0 4px 12px rgba(53, 89, 167, 0.3);
    color: #fff;
}

/* Product Code - Detail Page */
.product-info .product-code {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info .product-code-label {
    font-weight: 600;
    color: #333;
}

.product-info .product-code-value {
    color: #3559A7;
    font-weight: 500;
}

.product-description {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    max-height: 350px;
    overflow-y: auto;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.product-description::-webkit-scrollbar {
    width: 6px;
}

.product-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-description::-webkit-scrollbar-thumb {
    background: #3559A7;
    border-radius: 10px;
}

.product-description::-webkit-scrollbar-thumb:hover {
    background: #2a4780;
}

.product-description h3,
.product-description h4 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-description ul,
.product-description ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-description li {
    margin-bottom: 8px;
}

.product-specs-row {
    margin-top: 40px;
    margin-bottom: 40px;
}

.spec-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(53, 89, 167, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 0 0 2px rgba(53, 89, 167, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3559A7 0%, #2a4780 50%, #3559A7 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spec-box:hover::before {
    opacity: 1;
}

.spec-box:hover {
    box-shadow: 0 12px 40px rgba(53, 89, 167, 0.2), 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 0 0 2px rgba(53, 89, 167, 0.25);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.spec-box-title {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #3559A7 0%, rgba(53, 89, 167, 0.3) 100%) 1;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.spec-box-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3559A7 0%, transparent 100%);
    border-radius: 2px;
}

.spec-box-title i {
    color: #3559A7;
    font-size: 22px;
}

.spec-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-box-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-box-list li:last-child {
    border-bottom: none;
}

.spec-box-label {
    font-weight: 600;
    color: #666;
    flex: 0 0 50%;
}

.spec-box-value {
    color: #333;
    flex: 1;
    text-align: right;
    font-weight: 500;
}

.spec-box-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-spec-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #3559A7;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3559A7;
    font-size: 14px;
}

.btn-spec-download:hover {
    background: #2a4780;
    border-color: #2a4780;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.4);
    color: #fff;
}

.btn-spec-download i {
    font-size: 16px;
}

.spec-box-empty {
    color: #999;
    font-style: italic;
    margin: 0;
    padding: 10px 0;
}

.product-downloads {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3559A7;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3559A7;
}

.btn-download:hover {
    background: #2a4780;
    border-color: #2a4780;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
    color: #fff;
}

.btn-download i {
    font-size: 18px;
}

.product-actions {
    margin-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #3559A7;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3559A7;
}

.btn-back:hover {
    background: #3559A7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

/* Product Detail Related Products - Modern Carousel */
.pd-related-products {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 40px;
}

.pd-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pd-related-slider {
    position: relative;
    width: 100%;
}

.pd-related-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.pd-related-wrapper {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.pd-related-item {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.pd-related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pd-related-card:hover {
    box-shadow: 0 4px 16px rgba(53, 89, 167, 0.2);
    transform: translateY(-4px);
}

.pd-related-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pd-related-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f8f9fa;
    overflow: hidden;
}

.pd-related-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.pd-related-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.pd-related-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pd-related-category {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pd-related-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    flex: 1;
}

.pd-related-code {
    font-size: 12px;
    color: #888;
    margin-top: auto;
}

.pd-related-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #3559A7;
    color: #3559A7;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    border: none;
    outline: none;
}

.pd-related-btn:hover {
    background: #3559A7;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.3);
}

.pd-related-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.pd-related-prev {
    left: -25px;
}

.pd-related-next {
    right: -25px;
}

/* Tablet */
@media (max-width: 1200px) {
    .pd-related-item {
        flex: 0 0 50%;
    }
    
    .pd-related-prev {
        left: 10px;
    }
    
    .pd-related-next {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pd-related-products {
        padding: 35px 0;
    }
    
    .pd-related-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .pd-related-item {
        flex: 0 0 100%;
        padding: 0 5px;
    }
    
    .pd-related-image {
        padding-top: 70%;
    }
    
    .pd-related-content {
        padding: 12px;
    }
    
    .pd-related-name {
        font-size: 14px;
    }
    
    .pd-related-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pd-related-products {
        padding: 25px 0;
    }
    
    .pd-related-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .pd-related-image {
        padding-top: 65%;
    }
    
    .pd-related-content {
        padding: 10px;
    }
    
    .pd-related-name {
        font-size: 13px;
    }
    
    .pd-related-code {
        font-size: 11px;
    }
}

.related-products-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 40px;
    overflow: hidden;
}

.related-products-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Related Products Carousel */
.related-products-carousel-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.related-products-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.related-products-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    will-change: transform;
    width: max-content;
    align-items: stretch;
}

.related-product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .related-product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 35px 0;
    }
    
    .related-product-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: 100%;
        width: 100%;
        scroll-snap-align: start;
    }
    
    .related-product-card .product-card {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .related-product-card .product-image-wrapper {
        height: 160px;
        padding-top: 0;
        position: relative;
        background: #f8f9fa;
        overflow: hidden;
    }
    
    .related-product-card .product-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }
    
    .related-product-card .product-info {
        padding: 10px;
    }
    
    .related-product-card .product-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .related-products-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .related-products-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .related-products-track {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .related-products-section {
        padding: 20px 0;
    }
    
    .related-products-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .related-product-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .related-product-card .product-card {
        height: auto;
        min-height: 100%;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
    .related-product-card .product-image-wrapper {
        height: 140px;
        padding-top: 0;
        position: relative;
        background: #f8f9fa;
        overflow: hidden;
    }
    
    .related-product-card .product-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }
    
    .related-product-card .product-info {
        padding: 8px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .related-product-card .product-title {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    
    .related-product-card .product-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .related-product-card .product-category {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .related-product-card .product-code {
        font-size: 9px;
        margin-top: auto;
    }
    
    .related-products-track {
        gap: 0;
    }
    
    .related-products-carousel-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }
    
    .related-products-carousel {
        padding: 0;
    }
}

.btn-related-products {
    display: inline-block;
    padding: 12px 30px;
    background: #3559A7;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3559A7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-related-products:hover {
    background: #2a4780;
    border-color: #2a4780;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(53, 89, 167, 0.4);
    color: #fff;
}

/* Professional Lightbox */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100000;
}

.lightbox-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-image {
    cursor: move;
    transition: transform 0.3s ease;
}

.lightbox-image-wrapper {
    overflow: hidden;
    cursor: grab;
}

.lightbox-image-wrapper:active {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 100000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESPONSIVE - PRODUCT DETAIL */
@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-info::before {
        display: none;
    }
    
    .product-info .product-title {
        font-size: 28px;
    }
    
    .btn-request-quote {
        max-width: 100%;
    }
    
    .product-specs-row {
        margin-top: 30px;
    }
    
    .spec-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .product-detail-section {
        padding: 20px 0;
    }
    
    .product-info .product-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .product-description {
        border-radius: 16px;
        padding: 16px;
    }
    
    .spec-box {
        border-radius: 20px;
        padding: 24px;
    }
    
    .spec-box-title {
        font-size: 20px;
    }
    
    .btn-request-quote {
        border-radius: 16px;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .product-main-image {
        border-radius: 20px;
    }
    
    .gallery-thumb {
        border-radius: 14px;
    }
    
    .related-products-title {
        font-size: 20px;
    }
    
    .btn-request-quote {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .spec-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .spec-box-title {
        font-size: 18px;
    }
    
    .spec-box-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .spec-box-value {
        text-align: left;
    }
    
    .gallery-thumbnails {
        justify-content: center;
    }
    
    .related-products-section {
        padding: 40px 0;
    }
    
    .related-products-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .btn-related-products {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .lightbox-container {
        padding: 20px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .lightbox-toolbar {
        top: 10px;
        right: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* QUOTE MODAL */
.quote-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 15px;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999998 !important;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal.active .quote-modal-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.quote-modal-container {
    position: relative !important;
    max-width: 950px;
    width: 100%;
    max-height: calc(100vh - 30px);
    margin: 15px auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 0 0 2px rgba(53, 89, 167, 0.08);
    overflow: hidden;
    transform: scale(0.92) translateY(30px) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 9999999 !important;
    perspective: 1000px;
}

.quote-modal.active .quote-modal-container {
    transform: scale(1) translateY(0) rotateX(0deg);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 0 0 2px rgba(53, 89, 167, 0.12);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: none;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 25%, #1e3560 50%, #2a4780 75%, #3559A7 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.quote-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.quote-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: borderShimmer 4s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@keyframes borderShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.quote-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transform: translateY(-5px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.quote-modal.active .quote-modal-title {
    transform: translateY(0);
    opacity: 1;
}

.quote-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(0.9);
    opacity: 0;
}

.quote-modal.active .quote-modal-close {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.quote-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.quote-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.quote-modal.active .quote-modal-body {
    transform: translateY(0);
    opacity: 1;
}

.quote-product-info {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 22px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 0 0 2px rgba(53, 89, 167, 0.1);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-product-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(53, 89, 167, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 0 0 2px rgba(53, 89, 167, 0.15);
}

.quote-product-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 2px rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-product-info:hover .quote-product-image {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.95);
}

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

.quote-product-details {
    flex: 1;
    min-width: 0;
}

.quote-product-details h3 {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.quote-product-code {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form .form-group:last-child,
.quote-form .form-group:nth-last-child(2) {
    grid-column: 1 / -1;
}

.quote-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.quote-form .required {
    color: #dc3545;
    margin-left: 2px;
}

.quote-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    font-family: inherit;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.quote-form .form-control:focus {
    outline: none;
    box-shadow: 0 6px 16px rgba(53, 89, 167, 0.15), inset 0 0 0 3px rgba(53, 89, 167, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    transform: translateY(-2px);
}

.quote-form .form-control::placeholder {
    color: #999;
    font-size: 13px;
}

.quote-form textarea.form-control {
    resize: vertical;
    min-height: 70px;
    line-height: 1.5;
}

.quote-form select.form-control {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.btn-quote-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 50%, #1e3560 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.3), 0 4px 12px rgba(53, 89, 167, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-quote-submit::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.5s ease;
}

.btn-quote-submit:hover::before {
    left: 100%;
}

.btn-quote-submit:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 50%, #152448 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(53, 89, 167, 0.4), 0 6px 16px rgba(53, 89, 167, 0.3);
}

.btn-quote-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(53, 89, 167, 0.3);
}

.btn-quote-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background: #ccc;
    box-shadow: none;
}

/* RESPONSIVE - QUOTE MODAL */
@media (max-width: 991px) {
    .quote-modal-container {
        max-width: 95%;
    }
    
    .quote-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-form .form-group:last-child,
    .quote-form .form-group:nth-last-child(2) {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    .quote-modal {
        padding: 10px;
    }
    
    .quote-modal-container {
        max-width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 20px 20px 0 0;
    }
    
    .quote-modal-header {
        padding: 15px 18px;
        border-radius: 20px 20px 0 0;
    }
    
    .quote-modal-title {
        font-size: 18px;
    }
    
    .quote-modal-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .quote-modal-body {
        padding: 18px;
    }
    
    .quote-product-info {
        padding: 12px;
        gap: 12px;
        margin-bottom: 18px;
        border-radius: 16px;
    }
    
    .quote-product-image {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }
    
    .quote-product-details h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .quote-product-code {
        font-size: 12px;
    }
    
    .quote-form {
        gap: 12px;
    }
    
    .quote-form label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .quote-form .form-control {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 14px;
    }
    
    .quote-form textarea.form-control {
        min-height: 80px;
    }
    
    .btn-quote-submit {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quote-modal {
        padding: 0;
    }
    
    .quote-modal-container {
        border-radius: 0;
    }
    
    .quote-modal-header {
        border-radius: 0;
        padding: 14px 16px;
    }
    
    .quote-modal-title {
        font-size: 16px;
    }
    
    .quote-modal-close {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .quote-modal-body {
        padding: 16px;
    }
    
    .quote-product-info {
        padding: 10px;
        gap: 10px;
    }
    
    .quote-product-image {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .quote-product-details h3 {
        font-size: 14px;
    }
    
    .quote-product-code {
        font-size: 11px;
    }
    
    .quote-form .form-control {
        padding: 9px 11px;
        font-size: 13px;
        border-radius: 12px;
    }
    
    .btn-quote-submit {
        padding: 11px 16px;
        font-size: 13px;
    }
}

/* MOBILE RESPONSIVE - PRODUCT DETAIL SPACING */
@media (max-width: 767px) {
    .product-detail-section .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .product-detail-section .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .product-specs-row {
        margin-top: 20px;
    }
    
    .product-specs-row .col-lg-4 {
        margin-bottom: 15px;
    }
    
    .product-images {
        margin-bottom: 20px;
    }
    
    .product-info {
        margin-top: 20px;
    }
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

/* Projects Section */
.projects-section {
    padding: 40px 0;
    background: #fff;
}

.projects-section .container {
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .projects-section .container {
        max-width: 1600px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1600px) {
    .projects-section .container {
        max-width: 1800px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .projects-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .projects-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .projects-section {
        padding: 15px 0;
    }
    
    .projects-section .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }
    
    .projects-main {
        padding: 0 2px;
    }
    
    .projects-grid {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card {
        margin-bottom: 12px;
    }
    
    .col-lg-9.col-md-8 {
        padding-left: 4px;
        padding-right: 4px;
    }
}

@media (max-width: 480px) {
    .projects-section .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .projects-main {
        padding: 0;
    }
    
    .projects-grid {
        gap: 8px;
        grid-template-columns: 1fr;
    }
    
    .project-card {
        margin-bottom: 10px;
    }
}

/* Projects Sidebar (same as products) */
.projects-sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
}

.projects-filter-toggle {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.projects-filter-toggle:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.projects-filters {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Projects Section - Genişletilmiş (ürünler gibi) */
.projects-section {
    padding: 40px 0;
}

.projects-section .container {
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
}

@media (min-width: 1400px) {
    .projects-section .container {
        max-width: 1600px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1600px) {
    .projects-section .container {
        max-width: 1800px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .projects-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 991px) {
    .projects-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Projects Main Area */
.projects-main {
    padding-left: 0;
}

@media (max-width: 991px) {
    .projects-main {
        padding-left: 0;
    }
}

.projects-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.projects-count {
    font-size: 14px;
    color: #666;
}

.projects-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.projects-sort label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card .project-info .project-title {
        font-size: 16px;
    }
    
    .project-info {
        padding: 18px;
    }
}

.project-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.15);
    transform: translateY(-4px);
    border-color: #3559A7;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 70%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(53, 89, 167, 0.95) 0%, rgba(42, 71, 128, 0.95) 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-category {
    font-size: 12px;
    color: #3559A7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.project-card .project-info .project-title {
    font-size: 16px;
    font-weight: 600;
    color: #000 !important;
    margin: 0 0 10px 0;
    line-height: 1.4;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000 !important;
    background-clip: unset !important;
}

.project-card .project-info .project-title a {
    color: #000 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000 !important;
    background-clip: unset !important;
}

.project-card .project-info .project-title a:hover {
    color: #3559A7;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3559A7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.project-link:hover {
    color: #2a4780;
    gap: 12px;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* Projects Empty State */
.projects-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.projects-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.projects-empty h3 {
    font-size: 24px;
    color: #666;
    margin: 0 0 10px 0;
}

.projects-empty p {
    font-size: 14px;
    margin: 0;
}

/* Projects Pagination */
.projects-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   PROJECT DETAIL SECTION
   ======================================== */

.project-detail-section {
    padding: 40px 0;
    background: #fff;
}

.project-image-gallery {
    margin-bottom: 30px;
}

.project-main-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-main-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.project-date-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(53, 89, 167, 0.95) 0%, rgba(42, 71, 128, 0.95) 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-thumb-wrapper {
    flex: 1;
    min-width: 100px;
    max-width: 120px;
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-thumb:hover {
    border-color: #3559A7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.gallery-thumb.active {
    border-color: #3559A7;
    box-shadow: 0 4px 16px rgba(53, 89, 167, 0.4);
}

.project-info {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .project-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

.project-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.project-title {
    font-size: 32px;
    font-weight: 800;
    color: #000 !important;
    margin: 0 0 20px 0;
    line-height: 1.2;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000 !important;
    background-clip: unset !important;
}

.project-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.project-meta-item i {
    color: #3559A7;
    width: 20px;
    text-align: center;
}

.meta-label {
    font-weight: 600;
    color: #666;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

.project-content {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3559A7;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.content-body h3 {
    color: #3559A7;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-body ul, .content-body ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-body li {
    margin-bottom: 8px;
}

.project-video {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.youtube-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-error p {
    margin-bottom: 15px;
    color: #dc3545;
    font-weight: 500;
}

.video-error .video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.video-error .video-link:hover {
    background: #0066cc;
    color: #fff;
}

.video-link {
    display: inline-block;
    padding: 15px 25px;
    background: #3559A7;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: #2a4780;
    transform: translateY(-2px);
}

/* Related Projects */
.related-projects-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.related-projects-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Related Projects Carousel */
.related-projects-carousel-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.related-projects-carousel {
    overflow: hidden;
    position: relative;
}

.related-projects-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.related-project-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
}

@media (max-width: 1200px) {
    .related-project-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .related-project-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .related-project-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.related-products-carousel-wrapper .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #3559A7;
    color: #3559A7;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.related-products-carousel-wrapper .carousel-nav-btn:hover {
    background: #3559A7;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.3);
}

.related-products-carousel-wrapper .carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.related-products-carousel-wrapper .carousel-prev {
    left: -25px;
}

.related-products-carousel-wrapper .carousel-next {
    right: -25px;
}

@media (max-width: 768px) {
    .related-products-carousel-wrapper .carousel-prev {
        left: 10px;
    }
    
    .related-products-carousel-wrapper .carousel-next {
        right: 10px;
    }
    
    .related-products-carousel-wrapper .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.related-project-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-project-card:hover {
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.15);
    transform: translateY(-4px);
    border-color: #3559A7;
}

.related-project-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-project-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.related-project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-project-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(53, 89, 167, 0.95) 0%, rgba(42, 71, 128, 0.95) 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 2;
}

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

.related-project-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-project-category {
    font-size: 11px;
    color: #3559A7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.related-project-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
    flex: 1;
}

.related-project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3559A7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.related-project-link:hover {
    color: #2a4780;
    gap: 10px;
}

.related-project-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.related-project-link:hover i {
    transform: translateX(4px);
}

.related-project-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.related-projects-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.btn-view-all-projects:hover {
    background: linear-gradient(135deg, #2a4780 0%, #1e3560 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.4);
    color: #fff;
}

.btn-view-all-projects i {
    transition: transform 0.3s ease;
}

.btn-view-all-projects:hover i {
    transform: translateX(4px);
}

/* Project Lightbox - Full Featured */
.project-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.project-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.project-lightbox .lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.project-lightbox .lightbox-toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100000;
}

.project-lightbox .lightbox-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-lightbox .lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.project-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.project-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.project-lightbox .lightbox-prev,
.project-lightbox .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.project-lightbox .lightbox-prev {
    left: 20px;
}

.project-lightbox .lightbox-next {
    right: 20px;
}

.project-lightbox .lightbox-prev:hover,
.project-lightbox .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.project-lightbox .lightbox-image-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
    cursor: grab;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.project-lightbox .lightbox-image-wrapper:active {
    cursor: grabbing;
}

.project-lightbox .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: move;
    user-select: none;
}

.project-lightbox .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    z-index: 100000;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .project-lightbox .lightbox-toolbar {
        top: 10px;
        right: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .project-lightbox .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .project-lightbox .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .project-lightbox .lightbox-prev {
        left: 10px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .project-lightbox .lightbox-next {
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .project-lightbox .lightbox-counter {
        bottom: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .project-lightbox .lightbox-image-wrapper {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Mobile Responsive for Projects */
@media (max-width: 767px) {
    .projects-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 99999;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
    }
    
    .projects-sidebar.active {
        opacity: 1;
        visibility: visible;
    }
    
    .projects-filter-toggle {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: auto;
        min-width: 140px;
        padding: 16px 24px;
        border-radius: 50px;
        z-index: 99998;
        box-shadow: 0 4px 16px rgba(53, 89, 167, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .projects-filters {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        z-index: 100000;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 24px 20px;
        border: none;
        border-radius: 0;
    }
    
    .projects-sidebar.active .projects-filters {
        left: 0;
    }
    
    .projects-filters::before {
        content: 'Filtreler';
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 400px;
        background: linear-gradient(135deg, #3559A7 0%, #2a4780 100%);
        color: #fff;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 700;
        z-index: 100001;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .filter-close {
        position: fixed;
        top: 10px;
        right: calc(15% + 10px);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        z-index: 100002;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .filter-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .project-detail-section {
        padding: 20px 0;
    }
    
    .project-main-image-wrapper {
        border-radius: 16px;
    }
    
    .project-main-image {
        border-radius: 16px;
    }
    
    .project-info {
        padding-left: 0;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .project-content,
    .project-video {
        padding: 20px;
        border-radius: 16px;
    }
    
    .related-projects-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .projects-filters {
        width: 90%;
    }
    
    .projects-filters::before {
        width: 90%;
    }
    
    .filter-close {
        right: calc(10% + 10px);
    }
    
    .project-card .project-info .project-title {
        font-size: 15px;
    }
    
    .project-meta {
        padding: 15px;
    }
    
    .content-body {
        font-size: 14px;
    }
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 40px 0;
    background: #fff;
}

.news-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.news-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.news-count {
    font-size: 14px;
    color: #666;
}

.news-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-sort label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.news-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.15);
    transform: translateY(-4px);
    border-color: #3559A7;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(53, 89, 167, 0.95) 0%, rgba(42, 71, 128, 0.95) 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.news-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.news-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #3559A7;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3559A7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    color: #2a4780;
    gap: 12px;
    transform: translateX(4px);
}

.news-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.news-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.news-empty h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #666;
}

.news-pagination {
    margin-top: 40px;
}

/* News Detail */
.news-detail-section {
    padding: 40px 0;
    background: #fff;
}

.news-detail-article {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-detail-image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #f5f5f5;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-detail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.news-detail-image:hover {
    transform: scale(1.02);
}

.news-detail-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.news-meta-item i {
    color: #3559A7;
    font-size: 16px;
}

.news-meta-item i {
    color: #3559A7;
}

.news-detail-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid #3559A7;
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.news-detail-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-detail-content h2 {
    font-size: 28px;
}

.news-detail-content h3 {
    font-size: 24px;
}

.news-detail-content h4 {
    font-size: 20px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.news-detail-content li {
    margin-bottom: 10px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-detail-gallery {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.news-detail-gallery h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail-gallery h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    border-radius: 2px;
}

.news-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.news-gallery-item {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(53, 89, 167, 0.2);
}

.news-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News Detail Sidebar */
.news-detail-sidebar {
    position: sticky;
    top: 100px;
}

.related-news-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-news-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3559A7;
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.related-news-item:hover {
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.15);
    transform: translateY(-2px);
}

.related-news-item a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.related-news-image {
    width: 100px;
    min-width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news-info {
    flex: 1;
    padding: 5px 0;
}

.related-news-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-news-item:hover .related-news-info h4 {
    color: #3559A7;
}

.related-news-date {
    font-size: 12px;
    color: #999;
}

/* News Lightbox */
.news-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.news-lightbox-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    cursor: move;
    user-select: none;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.news-lightbox-content.zoomed {
    cursor: grab;
}

.news-lightbox-content.zoomed:active {
    cursor: grabbing;
}

.news-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
    transition: transform 0.3s ease, background 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.news-lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(255, 0, 0, 0.7);
}

.news-lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-lightbox-prev,
.news-lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 1000001;
}

.news-lightbox-prev:hover,
.news-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.news-lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000001;
}

.news-lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.news-lightbox-counter {
    position: absolute;
    top: 20px;
    left: 30px;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 1000001;
}

/* Responsive News */
@media (max-width: 767px) {
    .news-section {
        padding: 15px 0;
    }
    
    .news-section .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }
    
    .news-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-grid {
        gap: 15px;
    }
    
    .news-info {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-summary {
        font-size: 13px;
    }
    
    .news-detail-section {
        padding: 20px 0;
    }
    
    .news-detail-article {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .news-detail-image-wrapper {
        margin-bottom: 20px;
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }
    
    .news-detail-image {
        width: 100%;
        height: 100%;
    }
    
    .news-detail-meta {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .news-detail-summary {
        padding: 18px;
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .news-detail-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .news-detail-content h2 {
        font-size: 24px;
    }
    
    .news-detail-content h3 {
        font-size: 20px;
    }
    
    .news-detail-content h4 {
        font-size: 18px;
    }
    
    .news-detail-gallery {
        margin-top: 35px;
        padding-top: 25px;
    }
    
    .news-detail-gallery h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .news-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .news-detail-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .related-news-section {
        padding: 20px;
    }
    
    .related-news-item a {
        flex-direction: column;
    }
    
    .related-news-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .news-section .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .news-grid {
        gap: 12px;
    }
    
    .news-detail-article {
        padding: 15px 12px;
    }
    
    .news-detail-image-wrapper {
        aspect-ratio: 16 / 9;
        margin-bottom: 15px;
    }
    
    .news-detail-image {
        width: 100%;
        height: 100%;
    }
    
    .news-detail-meta {
        padding: 12px;
        gap: 10px;
    }
    
    .news-meta-item {
        font-size: 13px;
    }
    
    .news-detail-summary {
        padding: 15px;
        font-size: 15px;
    }
    
    .news-detail-content {
        font-size: 14px;
    }
    
    .news-detail-content h2 {
        font-size: 22px;
    }
    
    .news-detail-content h3 {
        font-size: 18px;
    }
    
    .news-detail-content h4 {
        font-size: 16px;
    }
    
    .news-gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .related-news-section {
        padding: 15px;
    }
    
    .related-news-title {
        font-size: 18px;
    }
    
    .news-lightbox-content {
        max-width: 95%;
    }
    
    .news-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 40px 0;
    background: #fff;
}

.services-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.services-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.services-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.15);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

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

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.service-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #3559A7;
}

.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-link {
    color: #3559A7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #4A78B5;
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.services-empty i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.services-empty h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

/* Service Detail */
.service-detail-section {
    padding: 40px 0;
    background: #fff;
}

.service-detail-article {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-detail-image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #f5f5f5;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-content h2 {
    font-size: 28px;
}

.service-detail-content h3 {
    font-size: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
}

.service-detail-content ul,
.service-detail-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
}

.related-services-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-services-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3559A7;
}

.related-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-service-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.related-service-item:hover {
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.15);
    transform: translateY(-2px);
}

.related-service-item a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.related-service-image {
    width: 100px;
    min-width: 100px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-service-info {
    flex: 1;
    padding: 10px 0;
}

.related-service-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 5px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-service-item:hover .related-service-info h4 {
    color: #3559A7;
}

/* Responsive Services */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 20px 0;
    }
    
    .services-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .service-detail-section {
        padding: 20px 0;
    }
    
    .service-detail-article {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .service-detail-image-wrapper {
        margin-bottom: 20px;
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }
    
    .service-detail-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .service-detail-content h2 {
        font-size: 24px;
    }
    
    .service-detail-content h3 {
        font-size: 20px;
    }
    
    .service-detail-content h4 {
        font-size: 18px;
    }
    
    .service-detail-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .related-services-section {
        padding: 20px;
    }
    
    .related-service-item a {
        flex-direction: column;
    }
    
    .related-service-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .service-detail-article {
        padding: 15px 12px;
    }
    
    .service-detail-image-wrapper {
        aspect-ratio: 16 / 9;
        margin-bottom: 15px;
    }
    
    .service-detail-content {
        font-size: 14px;
    }
    
    .service-detail-content h2 {
        font-size: 22px;
    }
    
    .service-detail-content h3 {
        font-size: 18px;
    }
    
    .service-detail-content h4 {
        font-size: 16px;
    }
    
    .related-services-section {
        padding: 15px;
    }
    
    .related-services-title {
        font-size: 18px;
    }
}

/* ============================================
   FACILITIES SECTION
   ============================================ */

.facilities-section {
    padding: 40px 0;
    background: #fff;
}

.facilities-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.facilities-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.facilities-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.facility-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(53, 89, 167, 0.15);
}

.facility-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

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

.facility-card:hover .facility-image {
    transform: scale(1.05);
}

.facility-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.facility-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.facility-title a:hover {
    color: #3559A7;
}

.facility-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.facility-contact {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.facility-phone,
.facility-address {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-phone:last-child,
.facility-address:last-child {
    margin-bottom: 0;
}

.facility-phone i,
.facility-address i {
    color: #3559A7;
    width: 16px;
    text-align: center;
}

.facility-link {
    color: #3559A7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.facility-link:hover {
    color: #4A78B5;
    gap: 12px;
}

.facility-link i {
    transition: transform 0.3s ease;
}

.facility-link:hover i {
    transform: translateX(5px);
}

.facilities-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.facilities-empty i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.facilities-empty h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

/* Facility Detail */
.facility-detail-section {
    padding: 40px 0;
    background: #fff;
}

/* Facility Navigation */
.facility-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.facility-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #3559A7;
    background: #fff;
    color: #3559A7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.facility-nav-btn:hover {
    background: #3559A7;
    color: #fff;
    transform: scale(1.1);
}

.facility-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.facility-nav-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.facility-nav-scroll::-webkit-scrollbar {
    display: none;
}

.facility-nav-items {
    display: inline-flex;
    gap: 10px;
    padding: 5px 0;
}

.facility-nav-item {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}

.facility-nav-item:hover {
    border-color: #3559A7;
    color: #3559A7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.15);
}

.facility-nav-item.active {
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    border-color: #3559A7;
    color: #fff;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

/* Facility Images */
.facility-images {
    margin-bottom: 30px;
}

.facility-main-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.facility-main-image-wrapper:hover {
    transform: scale(1.02);
}

.facility-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #3559A7 #f5f5f5;
}

.facility-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.facility-thumbnails::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.facility-thumbnails::-webkit-scrollbar-thumb {
    background: #3559A7;
    border-radius: 3px;
}

.facility-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.facility-thumb:hover {
    border-color: #3559A7;
    transform: scale(1.05);
}

.facility-thumb.active {
    border-color: #3559A7;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.facility-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Facility Info Section */
.facility-info-section {
    padding-left: 20px;
}

.facility-info-box {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.facility-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.facility-info-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.facility-info-description p {
    margin-bottom: 15px;
}

.facility-info-description p:last-child {
    margin-bottom: 0;
}

/* Facility Details Row */
.facility-details-row {
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
}

@media (min-width: 992px) {
    .facility-details-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 20px;
    }
    
    .facility-details-row .col-lg-5 {
        flex: 0 0 auto;
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px);
    }
    
    /* Resim kısmını daralt, bilgi kısmını genişlet */
    .facility-images {
        max-width: 100%;
    }
    
    .facility-info-section {
        padding-left: 30px;
    }
}

/* Facility Details Box */
.facility-details-box,
.facility-products-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 400px;
    max-width: 100%;
}

.facility-details-box:hover,
.facility-products-box:hover {
    border-color: #3559A7;
    box-shadow: 0 4px 20px rgba(53, 89, 167, 0.15);
    transform: translateY(-2px);
}

.facility-details-title,
.facility-products-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1e3560 0%, #2a4780 20%, #3559A7 40%, #4A78B5 50%, #5A88C5 60%, #4A78B5 70%, #3559A7 80%, #2a4780 90%, #1e3560 100%);
    background-size: 400% 400%;
    animation: facilityHeaderGradientShift 5s ease infinite;
    padding: 20px 30px;
    margin: -40px -40px 25px -40px;
    border-radius: 16px 16px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.facility-details-title::before,
.facility-products-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: facilityHeaderShimmer 3s infinite;
}

@keyframes facilityHeaderGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes facilityHeaderShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.facility-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.facility-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.facility-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.detail-value a {
    color: #3559A7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value a:hover {
    color: #4A78B5;
    text-decoration: underline;
}

/* Facility Products List */
.facility-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facility-products-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-products-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.facility-products-list li i {
    color: #3559A7;
    font-size: 16px;
    flex-shrink: 0;
}

.facility-product-dot {
    color: #3559A7;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 0;
}

.facility-products-list li span:not(.facility-product-dot) {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.facility-products-empty {
    color: #999;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

/* Facility Lightbox */
.facility-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.facility-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.facility-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: zoom-in;
    user-select: none;
}

.facility-lightbox-content img.zoomed {
    cursor: grab;
    transform-origin: center center;
}

.facility-lightbox-content img.zoomed:active {
    cursor: grabbing;
}

.facility-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000001;
}

.facility-lightbox-close:hover {
    background: rgba(255, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.facility-lightbox-prev,
.facility-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000001;
}

.facility-lightbox-prev {
    left: 30px;
}

.facility-lightbox-next {
    right: 30px;
}

.facility-lightbox-prev:hover,
.facility-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.facility-lightbox-counter {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000002;
}

.facility-lightbox-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000002;
}

.facility-lightbox-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.facility-lightbox-control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Facilities */
@media (max-width: 991px) {
    .facility-details-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .facility-details-row .col-lg-5 {
        width: 100% !important;
        max-width: 100%;
    }
    
    .facility-details-box,
    .facility-products-box {
        padding: 30px;
    }
    
    .facility-details-title,
    .facility-products-title {
        padding: 18px 25px;
        margin: -30px -30px 20px -30px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .facility-info-section {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .facilities-section {
        padding: 20px 0;
    }
    
    .facilities-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-info {
        padding: 20px;
    }
    
    .facility-title {
        font-size: 18px;
    }
    
    .facility-description {
        font-size: 13px;
    }
    
    .facility-details-row {
        gap: 20px;
        flex-direction: column;
    }
    
    .facility-details-box,
    .facility-products-box {
        padding: 25px;
        min-height: auto;
    }
    
    .facility-details-title,
    .facility-products-title {
        padding: 16px 20px;
        margin: -25px -25px 20px -25px;
        font-size: 16px;
    }
    
    .facility-detail-section {
        padding: 20px 0;
    }
    
    .facility-navigation {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .facility-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .facility-nav-item {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .facility-main-image-wrapper {
        aspect-ratio: 16 / 9;
        margin-bottom: 12px;
    }
    
    .facility-thumb {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .facility-info-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .facility-info-title {
        font-size: 24px;
    }
    
    .facility-info-description {
        font-size: 15px;
    }
    
    .facility-details-box,
    .facility-products-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .facility-details-title,
    .facility-products-title {
        font-size: 16px;
        padding: 12px 18px;
        margin: -20px -20px 15px -20px;
    }
    
    .facility-lightbox-prev {
        left: 15px;
    }
    
    .facility-lightbox-next {
        right: 15px;
    }
    
    .facility-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .facility-navigation {
        padding: 12px;
        gap: 10px;
    }
    
    .facility-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .facility-nav-item {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .facility-info-box {
        padding: 15px;
    }
    
    .facility-info-title {
        font-size: 20px;
    }
    
    .facility-info-description {
        font-size: 14px;
    }
    
    .facility-details-box,
    .facility-products-box {
        padding: 15px;
    }
    
    .facility-details-title,
    .facility-products-title {
        font-size: 14px;
        padding: 10px 15px;
        margin: -15px -15px 12px -15px;
    }
    
    .facility-thumb {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #3559A7;
    box-shadow: 0 0 0 3px rgba(53, 89, 167, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.kvkk-consent-group {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    position: relative;
}

.kvkk-consent-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.kvkk-consent-header strong {
    font-size: 15px;
    color: #3559A7;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kvkk-consent-header strong::before {
    content: "⚠️";
    font-size: 18px;
}

.kvkk-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 5px;
}

.kvkk-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.kvkk-checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    border: 3px solid #3559A7;
    border-radius: 6px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(53, 89, 167, 0.2);
}

.kvkk-checkbox-custom::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.kvkk-checkbox:checked + .kvkk-checkbox-custom {
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    border-color: #3559A7;
    box-shadow: 0 2px 8px rgba(53, 89, 167, 0.4);
}

.kvkk-checkbox:checked + .kvkk-checkbox-custom::after {
    opacity: 1;
}

.kvkk-checkbox:focus + .kvkk-checkbox-custom {
    outline: 3px solid rgba(53, 89, 167, 0.3);
    outline-offset: 2px;
}

.kvkk-checkbox-custom:hover {
    border-color: #4A78B5;
    box-shadow: 0 2px 6px rgba(53, 89, 167, 0.3);
    transform: scale(1.05);
}

.kvkk-text {
    flex: 1;
    padding-top: 2px;
}

.kvkk-text a {
    color: #3559A7;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}

.kvkk-text a:hover {
    color: #4A78B5;
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc !important;
    box-shadow: none !important;
    animation: none !important;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 50%, #3559A7 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(53, 89, 167, 0.3);
    animation: gradientShift 4s ease infinite;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-info-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #3559A7;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.15);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 700;
    color: #3559A7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.contact-info-value a {
    color: #3559A7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #4A78B5;
    text-decoration: underline;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.contact-social-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.3);
}

.contact-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(53, 89, 167, 0.4);
    color: #fff;
}

.contact-social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.contact-social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #1da1f2 0%, #4fc3f7 100%);
}

.contact-social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #e4405f 0%, #f56040 100%);
}

.contact-social-link:nth-child(4):hover {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.contact-social-link:nth-child(5):hover {
    background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
}

.contact-social-link:nth-child(6):hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-map {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.contact-map-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
        border-radius: 16px;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 22px;
    }
    
    .contact-form-subtitle {
        font-size: 14px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .btn-contact-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .contact-info-card {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .contact-map-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 20px;
    }
    
    .contact-info-card {
        padding: 15px;
    }
    
    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .kvkk-consent-group {
        padding: 15px;
    }
    
    .kvkk-consent-header strong {
        font-size: 14px;
    }
    
    .kvkk-checkbox-custom {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }
    
    .kvkk-consent-label {
        font-size: 13px;
        gap: 12px;
    }
}

/* ============================================
   CATALOGS PAGE STYLES
   ============================================ */
.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.catalog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(53, 89, 167, 0.15);
}

.catalog-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 140%; /* 5:7 aspect ratio for catalog cover */
    overflow: hidden;
    background: #f5f5f5;
}

.catalog-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.catalog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-link:hover .catalog-image {
    transform: scale(1.05);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(53, 89, 167, 0.9) 0%, rgba(74, 120, 181, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-link:hover .catalog-overlay {
    opacity: 1;
}

.catalog-overlay-content {
    text-align: center;
    color: #fff;
}

.catalog-pdf-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    animation: catalog-pulse 2s infinite;
}

@keyframes catalog-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.catalog-view-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
    flex: 1;
}

.catalog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3559A7 0%, #4A78B5 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(53, 89, 167, 0.3);
}

.catalog-download-btn:hover {
    background: linear-gradient(135deg, #4A78B5 0%, #3559A7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 89, 167, 0.4);
    color: #fff;
}

.catalog-download-btn i {
    font-size: 16px;
}

.catalogs-empty {
    text-align: center;
    padding: 80px 20px;
}

.catalogs-empty-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 24px;
}

.catalogs-empty-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.catalogs-empty-text {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .catalogs-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .catalogs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }
    
    .catalog-info {
        padding: 20px;
    }
    
    .catalog-title {
        font-size: 16px;
    }
    
    .catalog-download-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .catalogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-image-wrapper {
        padding-top: 130%;
    }
}