/* === SOCIAL LINKS - Footer ve Header için ortak === */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f07b26;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: #bc570d;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(240, 123, 38, 0.4);
}

.social-links a i {
    font-size: 18px;
    line-height: 1;
}

/* Header'daki social links için özel stil */
.header_top .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.header_top .social-links a i {
    font-size: 16px;
}

/* === WHATSAPP FLOATING BUTTON - SOL TARAFA === */
.whatsapp-float {
    position: fixed;
    left: 20px !important;
    bottom: 80px !important;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128C7E, #25d366);
    animation: none;
}

.whatsapp-float i {
    font-size: 32px;
    line-height: 1;
}

.whatsapp-text {
    position: fixed;
    left: 90px !important;
    bottom: 95px !important;
    background: #252525;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover + .whatsapp-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(5px);
}

/* === SCROLL TO TOP BUTTON - SAĞ TARAFA === */
.scroll-top {
    position: fixed;
    right: 20px !important;
    bottom: 80px !important;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f07b26, #bc570d);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(240, 123, 38, 0.4);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #bc570d, #f07b26);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(240, 123, 38, 0.6);
}

.scroll-top i {
    font-size: 20px;
    line-height: 1;
}

/* === SLIDER SECTION === */
.slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin: 0;
    background: #f8f8f8;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

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

.slide-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    color: #ddd;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-content .btn {
    display: inline-block;
    padding: 12px 35px;
    background: #f07b26;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #f07b26;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content .btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(240, 123, 38, 0.4);
}

/* === SLIDER NAVIGATION === */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #252525;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.arrow:hover {
    background: #f07b26;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #f07b26;
    transform: scale(1.3);
    border-color: #ffffff;
}

.dot:hover {
    background: #ffffff;
    transform: scale(1.2);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #f07b26;
    border-radius: 8px;
    color: #0c0c0c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pagination a:hover, .pagination a.active, .pagination .current {
    background: #f07b26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pagination a.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    color: #6c757d;
    font-weight: bold;
}