﻿
.floating-call-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-button-wrapper {
    position: relative;
    width: 200px;
    height: 60px;
}

.call-btn {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #00a2ff, #0066ff, #2d00ff);
    background-size: 400% 400%;
    border-radius: 30px;
    border: none;
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.3);
    animation: gradientBG 10s ease infinite;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-btn {
    background: linear-gradient(-45deg, #25d366, #128c7e, #075e54) !important;
    position: absolute;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

.call-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.call-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1;
}

.phone-icon {
    position: relative;
    margin-right: 10px;
    animation: ring 1.5s ease infinite;
}

.ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    left: -10px;
    top: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
    opacity: 0;
}

    .ripple:nth-child(2) {
        animation-delay: 0.5s;
    }

    .ripple:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        transform: translate(150%, 150%) rotate(45deg);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 20px;
        left: 20px;
    }

    .call-button-wrapper {
        width: 180px;
        height: 50px;
    }

    .call-content {
        font-size: 1rem;
    }
}

/* Genel Ürün Detay Stilleri */
.product-detail-container {
    padding: 40px 0;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.product-info {
    padding: 20px;
}

    .product-info h1 {
        font-size: 28px;
        margin-bottom: 10px;
        font-weight: bold;
    }

.teklif-buton {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

    .teklif-buton:hover {
        background-color: #1ebe5d;
    }

.tab-container {
    margin-top: 40px;
    display: block;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

    .tab-button.active {
        background-color: #e63946;
        color: #fff;
    }

.tab-content {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .tab-content.active {
        display: block;
    }

.usage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.usage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 110px;
    height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

    .usage-card span {
        font-size: 24px;
    }

    .usage-card p {
        margin-top: 10px;
        font-size: 14px;
        font-weight: bold;
        color: #333;
        line-height: 1.2;
    }

    .usage-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.certificates {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certificate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 150px;
    height: 180px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

    .certificate-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        background-color: #f0f0f5;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 95%;
    max-width: 1100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.4s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #121623;
    color: #fff;
}

    .modal-header h2 {
        margin: 0;
        font-size: 22px;
    }

.close {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.modal-body {
    padding: 20px;
    background-color: #f9f9f9;
}

.table-container {
    margin-top: 20px;
    overflow-x: auto;
}

.detailed-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .detailed-table th,
    .detailed-table td {
        padding: 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .detailed-table th {
        background-color: #121623;
        color: #ffffff;
        font-weight: bold;
        width: 25%;
    }

    .detailed-table td {
        color: #333;
    }

    .detailed-table tbody tr:nth-child(even) td {
        background-color: #f3f3f3;
    }

    .detailed-table tbody tr:nth-child(odd) td {
        background-color: #ffffff;
    }

    .detailed-table tbody tr:hover td {
        background-color: #e6f7ff;
    }

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
}

.referanslar {
    padding: 50px 0;
}

.section-title {
    margin-bottom: 30px;
}

.referans-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .referans-card:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .referans-card img {
        max-width: 80%;
        max-height: 70%;
    }

.sss-container .tab-content {
    display: inherit !important;
}
/* Header Styles */
.sss-title-decor {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.sss-title-decor span {
    width: 50px;
    height: 4px;
    background: #4070f4;
    border-radius: 2px;
}

    .sss-title-decor span:nth-child(2) {
        width: 30px;
    }

/* Category Styles */
.sss-category-box {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sss-nav-item {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    margin-bottom: 8px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .sss-nav-item:hover {
        background-color: rgba(64, 112, 244, 0.1);
        transform: translateX(5px);
    }

    .sss-nav-item.active {
        background: linear-gradient(145deg, #4070f4, #3060e0);
        color: white;
        box-shadow: 0 4px 10px rgba(64, 112, 244, 0.3);
    }

/* Accordion Styles */
.sss-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.sss-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: #fff;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .sss-btn:not(.collapsed) {
        background: linear-gradient(145deg, #4070f4, #3060e0);
        color: white;
    }

.sss-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 112, 244, 0.1);
    border-radius: 50%;
    color: #4070f4;
    margin-right: 15px;
}

.sss-btn:not(.collapsed) .sss-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.sss-answer-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    color: #28a745;
    margin-right: 15px;
}

.sss-body {
    padding: 20px;
    background: #f8f9fa;
    line-height: 1.6;
}

.sss-title-line {
    width: 50px;
    height: 4px;
    background: #4070f4;
    border-radius: 2px;
    margin-top: 10px;
}

/* Custom Animation */
.sss-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.sss-btn:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Responsive */
@media (max-width: 991px) {
    .sss-sidebar {
        margin-bottom: 2rem;
    }
}


.seo-box {
	    padding-top: 50px;
    padding-bottom: 50px;
}


.seo-box h1{
	        font-size: 42px;
    font-weight: 600;
}


.seo-box .section-title p {
	max-width: 80%;
	    text-align: left;
}

.mt-50 {
	margin-top: 50px;
}





