/* Modern ve temiz görünüm için Poppins yazı tipini kullan */
body { font-family: 'Poppins', sans-serif; background-color: #ffffff; } /* Arkaplanı beyaz yaptık */
/* Yeni Renk Paleti: Koyu Teal (Primary) ve Turkuaz (Accent) */
.bg-primary { background-color: #009541; } /* Koyu Teal */
.text-primary { color: #009541; }
.bg-secondary { background-color: #000000; } /* Siyah */
.text-secondary { color: #000000; }
.bg-light-contrast { background-color: #F4F7F9; } /* Açık Kontrast Alanlar için (Gray-100 yerine) */

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.transition-all { transition: all 0.3s ease-in-out; }
/* Footer link stilleri */
.footer-link {
    color: #d1d5db; /* Gray-300 */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-link:hover {
    color: #ffffff; /* Beyaz */
}

/* Modern Slider Stillleri */
.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #009541;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-nav:hover {
    background: rgba(30, 144, 255, 0.9);
    border-color: #1E90FF;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
    left: 30px;
}

.slider-nav-next {
    right: 30px;
}

@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    .slider-nav-prev {
        left: 15px;
    }
    .slider-nav-next {
        right: 15px;
    }
}

/* Slide Content */
.slide-content {
    max-width: 700px;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

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

.slide-badge {
    display: inline-block;
    background: rgba(30, 144, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 144, 255, 0.5);
    color: #1E90FF;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

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

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.slide-title .text-secondary {
    color: #1E90FF;
    display: block;
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
}

.slide-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out 0.9s both;
}

@media (max-width: 768px) {
    .slide-description {
        font-size: 1rem;
    }
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 1.1s both;
}

.btn-primary {
    background: #1E90FF;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: white;
    color: #009541;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Modern Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: transparent;
    border-color: #1E90FF;
    width: 40px;
    border-radius: 6px;
}

.slider-dot.active::before {
    width: 8px;
    height: 8px;
    background: #1E90FF;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #009541, #063f21);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

/* YENİ: Görsel Üstü Overlay Stillleri - Sabit Görünüm */
.project-overlay {
    /* Sabit karartı */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease-in-out;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği alta hizala */
    padding: 1.25rem; /* p-5 */
}
/* Hover'da sadece hafif karartı artışı */
.product-item:hover .project-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
}
/* Metinleri ve butonu içeren alan - Her zaman görünür */
.overlay-content {
    transform: translateY(0); /* Sabit konumda */
    opacity: 1; /* Her zaman görünür */
    transition: all 0.3s ease-in-out;
}

/* Service Icons Stilleri */
.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(30, 144, 255, 0.08) 100%);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.2);
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-card:hover .service-icon-wrapper svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(30, 144, 255, 0.3));
}

.service-icon-wrapper svg {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Overlay Button Stilleri - Beyazlık Olmadan */
.overlay-button {
    background-color: #1E90FF !important;
    color: white !important;
    transition: all 0.3s ease;
}

.overlay-button:hover {
    background-color: rgba(30, 144, 255, 0.9) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.5);
}

/* Fixed Side Buttons - Sol Alt */
.fixed-side-buttons-left,
.fixed-side-buttons-right {
    position: fixed;
    left: 0;
    bottom: 30px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    align-items: flex-start;
}

.side-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border: none;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    color: #009541;
    min-width: 60px;
    overflow: visible;
}

.side-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    min-width: 140px;
}

.side-button-text {
    white-space: nowrap;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
}

.side-button:hover .side-button-text {
    opacity: 1;
    width: auto;
}

.phone-button {
    background: linear-gradient(135deg, #1E90FF 0%, #009541 100%);
    color: white;
}

.phone-button:hover {
    background: linear-gradient(135deg, #009541 0%, #1E90FF 100%);
}

.email-button {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.email-button:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 12px;
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 50;
    font-size: 0.75rem;
    font-weight: 600;
    color: #009541;
    animation: pulse 2s infinite;
}

.notification-badge::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.notification-badge.show {
    opacity: 1;
    visibility: visible;
}

.phone-badge {
    border-left: 3px solid #1E90FF;
}

.whatsapp-badge {
    border-left: 3px solid #25D366;
}

.email-badge {
    border-left: 3px solid #6366f1;
}

.notification-text {
    display: block;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.notification-badge.show {
    animation: slideInLeft 0.4s ease-out, pulse 2s infinite 0.4s;
}

/* Google Maps Container */
.map-container {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Proje Görselleri Galerisi */
.project-gallery-container {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.project-gallery-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.project-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.project-gallery-track.dragging {
    cursor: grabbing;
    transition: none;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    color: #009541;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: #1E90FF;
    color: white;
    border-color: #1E90FF;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: 0;
}

.gallery-nav-next {
    right: 0;
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
    .project-gallery-container {
        padding: 0 45px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(100% - 0px);
    }
    .project-gallery-container {
        padding: 0 40px;
    }
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
}

/* Hizmet Sayfası Galeri - Tek Sütun */
#service-gallery-track .gallery-item {
    flex: 0 0 calc(100% - 0px);
}

@media (min-width: 768px) {
    #service-gallery-track .gallery-item {
        flex: 0 0 calc(100% - 0px);
    }
}

/* Modern Service Slider */
.modern-service-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modern-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.modern-slider-item {
    flex: 0 0 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.modern-slider-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.modern-slider-item:hover .modern-slider-image {
    transform: scale(1.05);
}

.modern-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(10, 42, 78, 0.1);
    border-radius: 50%;
    color: #009541;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.modern-slider-nav:hover {
    background: #1E90FF;
    color: white;
    border-color: #1E90FF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
}

.modern-slider-prev {
    left: 20px;
}

.modern-slider-next {
    right: 20px;
}

.modern-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.modern-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 42, 78, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.modern-slider-dot:hover {
    background: rgba(10, 42, 78, 0.5);
    transform: scale(1.2);
}

.modern-slider-dot.active {
    background: #1E90FF;
    width: 32px;
    border-radius: 6px;
}

/* Modern Slider Modal */
.modern-slider-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modern-slider-modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-slider-modal-img {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
    transition: opacity 0.15s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modern-slider-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-slider-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modern-slider-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-slider-modal-nav:hover {
    background: rgba(30, 144, 255, 0.8);
    border-color: #1E90FF;
    transform: translateY(-50%) scale(1.1);
}

.modern-slider-modal-prev {
    left: 20px;
}

.modern-slider-modal-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-slider-image {
        height: 350px;
    }
    
    .modern-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .modern-slider-prev {
        left: 10px;
    }
    
    .modern-slider-next {
        right: 10px;
    }
    
    .modern-slider-dots {
        margin-top: 16px;
    }
    
    .modern-slider-modal-nav {
        width: 40px;
        height: 40px;
    }
    
    .modern-slider-modal-prev {
        left: 10px;
    }
    
    .modern-slider-modal-next {
        right: 10px;
    }
    
    .modern-slider-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .modern-slider-image {
        height: 280px;
    }
    
    .modern-slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .modern-slider-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* Galeri Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalImageFadeIn 0.3s ease-out;
}

@keyframes modalImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-nav:hover {
    background: rgba(30, 144, 255, 0.8);
    border-color: #1E90FF;
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-modal-nav {
        width: 40px;
        height: 40px;
    }
    .gallery-modal-prev {
        left: 10px;
    }
    .gallery-modal-next {
        right: 10px;
    }
    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.side-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.side-button:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .fixed-side-buttons-right {
        left: -10px;
        bottom: 20px;
    }
    
    .side-button {
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .side-button:hover {
        min-width: 120px;
    }
    
    .side-button-text {
        font-size: 0.75rem;
    }
}


/* Modern Header Stillleri */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1E90FF;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menü Stillleri */
.dropdown-menu {
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Mobil Menü - Soldan Açılır */
.mobile-menu-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay.active .mobile-menu-sidebar {
    transform: translateX(0);
}

.mobile-menu-sidebar {
    overflow-y: auto;
    position: relative;
    height: auto;
    max-height: 90vh;
}

.mobile-menu-link {
    transition: all 0.2s ease-in-out;
}

/* Hizmet Sayfası Galeri Stilleri */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

/* Lightbox için görsel tıklama efekti */
.gallery-item:active {
    transform: scale(0.98);
}

/* REFERANSLAR - PROJE GÖRSELLERİ GİBİ */
#referans-gallery-track .gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    aspect-ratio: 1 / 1; /* Kare görünüm - logo için */
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#referans-gallery-track .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logo tam görünsün */
    object-position: center;
}

@media (max-width: 1024px) {
    #referans-gallery-track .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    #referans-gallery-track .gallery-item {
        flex: 0 0 calc(100% - 0px);
    }
}

/* Filtreleme için gizleme */
#referans-gallery-track .gallery-item[style*="display: none"] {
    display: none !important;
}

/* Mikronize Elek Sistemleri Premium V6 Theme */
:root { --primary-color:#009541; --mikro-green:#009541; }
a:hover, .text-primary { color:#009541 !important; }
.bg-primary, .btn-primary, button[type='submit'] { background-color:#009541 !important; }
.border-primary { border-color:#009541 !important; }
.nav-link:hover, .mobile-menu-link:hover { color:#009541 !important; }
.header, header { border-bottom-color: rgba(0,149,65,.12) !important; }
.product-content-rich { font-size:16px; line-height:1.85; color:#475569; }
.product-content-rich h2 { font-size:34px; line-height:1.18; color:#0f172a; font-weight:950; margin:0 0 18px; }
.product-content-rich h3 { font-size:24px; color:#063f21; font-weight:950; margin:34px 0 14px; }
.product-content-rich p { margin:0 0 16px; }
.product-content-rich ul { padding-left:22px; margin:0 0 20px; }
.product-content-rich li { margin-bottom:8px; }
.product-content-rich table { width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border:1px solid #e2e8f0; border-radius:18px; margin:22px 0; background:#fff; }
.product-content-rich td { padding:15px 16px; border-bottom:1px solid #e2e8f0; vertical-align:top; }
.product-content-rich tr:last-child td { border-bottom:0; }
.product-content-rich td:first-child { background:#f8fff9; color:#063f21; width:30%; }
.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:26px 0; }
.feature-grid > div { background:linear-gradient(180deg,#ffffff,#f8fff9); border:1px solid rgba(0,149,65,.18); border-radius:22px; padding:20px; box-shadow:0 12px 30px rgba(15,23,42,.05); }
.feature-grid h3 { margin:0 0 8px !important; font-size:18px !important; }
.info-band { background:linear-gradient(135deg,#063f21,#009541); color:#fff; border-radius:26px; padding:28px; margin:30px 0; }
.info-band h3 { color:#fff !important; margin-top:0 !important; }
.info-band p { color:#eafff1; }
.sector-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:24px 0; }
.sector-grid div { background:#fff; border:1px solid #e2e8f0; border-left:4px solid #009541; border-radius:18px; padding:18px; }
.faq-box { background:#f8fafc; border:1px solid #e2e8f0; border-radius:22px; padding:22px; margin:24px 0; }
.cta-box { background:#0f172a; color:#fff; border-radius:26px; padding:28px; margin:30px 0; }
.cta-box h3 { color:#fff !important; margin-top:0 !important; }
@media(max-width:900px){.feature-grid,.sector-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.feature-grid,.sector-grid{grid-template-columns:1fr} .product-content-rich h2{font-size:28px}}

/* Mikronize Elek Sistemleri Final V8 - ürün içerik görsel blokları */
.product-hero-panel{background:linear-gradient(135deg,#063f21,#009541);color:#fff;border-radius:30px;padding:34px;margin:0 0 28px;box-shadow:0 22px 55px rgba(0,149,65,.22);position:relative;overflow:hidden}.product-hero-panel:after{content:"";position:absolute;right:-80px;top:-80px;width:220px;height:220px;border-radius:50%;background:rgba(255,255,255,.12)}.product-hero-panel .eyebrow{display:inline-block;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.28);border-radius:999px;padding:7px 14px;font-weight:800;margin-bottom:14px}.product-hero-panel h2{color:#fff!important;margin:0 0 12px!important}.product-hero-panel p{color:#ecfdf5!important;font-size:18px}.product-content-rich .intro-box{border-left:6px solid #009541}.product-content-rich .micro-kpis div{position:relative;overflow:hidden}.product-content-rich .micro-kpis div:before{content:"";position:absolute;right:-24px;bottom:-24px;width:80px;height:80px;border-radius:50%;background:rgba(0,149,65,.08)}.product-content-rich .process-steps div{box-shadow:0 10px 25px rgba(15,23,42,.05)}.product-content-rich .sector-grid div:hover,.product-content-rich .micro-kpis div:hover{transform:translateY(-3px);transition:.25s ease;box-shadow:0 16px 38px rgba(15,23,42,.10)}.about-rich-content .intro-box{background:linear-gradient(135deg,#f0fdf4,#fff);border-left:6px solid #009541;border-radius:26px;padding:28px;margin-bottom:24px}.about-rich-content .feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:24px 0}.about-rich-content .feature-grid div{background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:20px;box-shadow:0 12px 30px rgba(15,23,42,.06)}.about-rich-content .feature-grid h3{color:#064e3b;font-weight:900;margin:0 0 8px}@media(max-width:768px){.about-rich-content .feature-grid{grid-template-columns:1fr}.product-hero-panel{padding:24px;border-radius:22px}}


/* Mikronize Elek Sistemleri - ürün detay zengin HTML görünümü */
.product-content-rich{font-family:inherit;color:#334155;line-height:1.82;font-size:16px}.product-content-rich h2{font-size:34px;line-height:1.18;color:#064e3b;font-weight:900;margin:0 0 18px}.product-content-rich h3{font-size:24px;color:#0f172a;font-weight:900;margin:34px 0 12px}.product-content-rich p{margin:0 0 16px}.product-content-rich .product-hero-panel{background:linear-gradient(135deg,#052e16,#009541);color:#fff;border-radius:28px;padding:32px;margin:0 0 26px;box-shadow:0 22px 60px rgba(0,149,65,.18)}.product-content-rich .product-hero-panel h2,.product-content-rich .product-hero-panel h3{color:#fff;margin-top:0}.product-content-rich .product-hero-panel p{color:#ecfdf5;font-size:18px}.product-content-rich .eyebrow{display:inline-flex;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);border-radius:999px;padding:8px 13px;font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;margin-bottom:14px}.product-content-rich .intro-box{background:linear-gradient(135deg,#ecfdf5,#ffffff);border:1px solid rgba(0,149,65,.18);border-radius:22px;padding:24px;margin:22px 0;box-shadow:0 14px 34px rgba(0,149,65,.08)}.product-content-rich .micro-kpis,.product-content-rich .feature-grid,.product-content-rich .sector-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:22px 0}.product-content-rich .micro-kpis div,.product-content-rich .feature-grid div,.product-content-rich .sector-grid div{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:18px;box-shadow:0 10px 25px rgba(15,23,42,.06)}.product-content-rich .micro-kpis strong{display:block;font-size:24px;color:#009541;margin-bottom:5px}.product-content-rich .feature-grid h3,.product-content-rich .sector-grid h3{font-size:18px;margin:0 0 8px;color:#064e3b}.product-content-rich .process-steps{counter-reset:step;display:grid;gap:14px;margin:22px 0}.product-content-rich .process-steps div{position:relative;background:#f8fafc;border-left:5px solid #009541;border-radius:16px;padding:18px 18px 18px 58px}.product-content-rich .process-steps div:before{counter-increment:step;content:counter(step);position:absolute;left:18px;top:18px;width:28px;height:28px;border-radius:50%;background:#009541;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900}.product-content-rich table{width:100%;border-collapse:separate;border-spacing:0;margin:22px 0;border:1px solid #dbe7df;border-radius:18px;overflow:hidden;background:#fff}.product-content-rich td,.product-content-rich th{padding:14px 16px;border-bottom:1px solid #e5e7eb;vertical-align:top}.product-content-rich tr:last-child td{border-bottom:0}.product-content-rich td:first-child{font-weight:900;color:#064e3b;width:34%;background:#f0fdf4}.product-content-rich ul{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:20px 24px 20px 42px;margin:18px 0;box-shadow:0 8px 22px rgba(15,23,42,.04)}.product-content-rich li{margin:8px 0}.product-content-rich .note-box{background:#052e16;color:#ecfdf5;border-radius:22px;padding:24px;margin:26px 0}.product-content-rich .note-box h3{color:#fff;margin-top:0}.product-content-rich .faq-box{background:#f8fafc;border:1px solid #e2e8f0;border-radius:22px;padding:22px;margin:26px 0}.product-content-rich .faq-box p{border-bottom:1px dashed #cbd5e1;padding-bottom:12px}.product-content-rich .faq-box p:last-child{border-bottom:0;padding-bottom:0}.product-content-rich .cta-box{background:linear-gradient(135deg,#009541,#064e3b);color:#fff;border-radius:24px;padding:28px;margin:30px 0}.product-content-rich .cta-box h3{color:#fff;margin-top:0}.product-content-rich .cta-box p{color:#f0fdf4}@media(max-width:768px){.product-content-rich .micro-kpis,.product-content-rich .feature-grid,.product-content-rich .sector-grid{grid-template-columns:1fr}.product-content-rich h2{font-size:27px}.product-content-rich h3{font-size:21px}}
