/* See And Boss Vocens Eklentisi - Slider Styles */
/* Developed by Vocens - https://vocens.cloud */

.sb-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.sb-vocens-carousel .owl-stage-outer {
    height: 100vh;
}

.sb-vocens-carousel .owl-item {
    height: 100vh;
}

.sb-slide-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sb-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sb-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.856) 20%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.sb-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.sb-slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.sb-slide-left {
    flex: 1;
    max-width: 600px;
    animation: sbSlideInLeft 1s ease-out;
}

@keyframes sbSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sb-slide-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 197, 214, 0.1);
    border-radius: 5px;
    border: 2px solid rgba(184, 197, 214, 0.3);
}

.sb-slide-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.sb-slide-description {
    font-size: 18px;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 550px;
}

.sb-slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sb-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.sb-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sb-btn:hover::before {
    width: 300px;
    height: 300px;
}

.sb-btn span {
    position: relative;
    z-index: 1;
}

.sb-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sb-btn:hover i {
    transform: translateX(5px);
}

.sb-btn-primary {
    background: linear-gradient(135deg, #505050 0%, #2a2a2a 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(80, 80, 80, 0.4);
}

.sb-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(80, 80, 80, 0.6);
    transform: translateY(-3px);
}

.sb-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sb-btn-secondary:hover {
    background: #ffffff;
    color: #333;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.sb-slide-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: sbSlideInRight 1s ease-out;
}

@keyframes sbSlideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sb-product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.sb-product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.sb-product-image:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

.sb-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sb-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: sbFloat 20s infinite ease-in-out;
}

.sb-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sb-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.sb-shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes sbFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Owl Carousel Custom Navigation */
.sb-vocens-carousel .owl-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.sb-vocens-carousel .owl-nav button {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-size: 24px !important;
    transition: all 0.3s ease !important;
}

.sb-vocens-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

.sb-vocens-carousel .owl-dots {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sb-slide-title {
        font-size: 48px;
    }

    .sb-slide-content {
        gap: 40px;
    }

    .sb-container {
        padding: 0 30px;
    }

    .sb-slide-description {
        font-size: 17px;
    }

    .sb-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .sb-slide-content {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 30px;
        padding-top: 80px;
    }

    .sb-slide-left {
        max-width: 100%;
    }

    .sb-slide-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .sb-slide-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .sb-slide-description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .sb-slide-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }

    .sb-btn {
        flex: 1;
        max-width: 200px;
        padding: 14px 20px;
        font-size: 13px;
    }

    .sb-btn span {
        display: none;
    }

    .sb-btn i {
        margin: 0;
    }

    .sb-btn::after {
        content: attr(data-text);
        font-size: 11px;
        text-transform: uppercase;
    }

    .sb-btn-primary::after {
        content: 'Contact Us';
    }

    .sb-btn-secondary::after {
        content: 'İncele';
    }

    .sb-product-image-wrapper {
        max-width: 280px;
    }

    .sb-vocens-carousel .owl-nav {
        bottom: 20px;
        right: 20px;
    }

    .sb-vocens-carousel .owl-nav button {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    .sb-container {
        padding: 0 20px;
    }

    .sb-floating-shapes {
        display: none;
    }

    .sb-slide-bg::before {
        linear-gradient(0deg, rgba(0, 0, 0, 0.856) 30%, rgba(0, 0, 0, 0.0) 100%);
    }
}

@media (max-width: 480px) {
    .sb-slide-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .sb-slide-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .sb-slide-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        padding: 5px 14px;
    }

    .sb-btn {
        padding: 12px 15px;
        font-size: 12px;
        max-width: 150px;
    }

    .sb-product-image-wrapper {
        max-width: 240px;
    }

    .sb-vocens-carousel .owl-nav {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .sb-vocens-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .sb-container {
        padding: 0 15px;
    }

    .sb-slide-content {
        gap: 25px;
        padding-top: 70px;
    }
}

@media (max-width: 360px) {
    .sb-slide-title {
        font-size: 24px;
    }

    .sb-slide-description {
        font-size: 13px;
    }

    .sb-btn {
        padding: 11px 12px;
        font-size: 11px;
        max-width: 140px;
    }

    .sb-product-image-wrapper {
        max-width: 200px;
    }
}
