/* css/style.css - Yeni Ana Sayfa Stilları */

:root {
    --primary-color: #0d6934;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-custom.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: white !important;
    background: var(--gradient);
}

/* Logo Dinamik Boyutlar */
.navbar-brand.mx-auto {
    margin: 0 auto !important;
}

.navbar-brand img,
.navbar-brand > div > div {
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80% !important;
    width: auto !important;
    max-width: 200px !important;
}

.navbar-brand > div > div {
    height: 50px !important;
    width: 50px !important;
    font-size: 1.2rem !important;
}

.navbar-brand.mx-auto img {
    height: 100% !important;
    max-width: 300px !important;
}

.navbar-brand.mx-auto > div > div {
    height: 70px !important;
    width: 70px !important;
    font-size: 1.6rem !important;
}

/* ===== MODERN SPLIT-SCREEN HERO SLIDER ===== */
.modern-hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.modern-slider-wrapper {
    position: relative;
    height: 100vh;
}

.modern-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.modern-slide.active {
    opacity: 1;
}

.modern-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modern-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.modern-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.modern-slide-left {
    flex: 1;
    max-width: 50%;
    padding-right: 3rem;
    color: white;
}

.modern-slide-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3rem;
}

.modern-slide-subtitle {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #ffffff;
    animation: slideInLeft 0.8s ease-out;
}

.modern-slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.modern-slide-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #f8f9fa;
    max-width: 90%;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.modern-slide-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.modern-btn-primary {
    background: var(--gradient);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.modern-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
    color: white;
}

.modern-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-btn-outline:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.modern-slide-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.modern-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.modern-slide-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

/* Slider Controls */
.modern-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.modern-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-nav-dot.active {
    background: white;
    transform: scale(1.3);
}

.modern-nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.modern-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.modern-arrow-prev {
    left: 30px;
}

.modern-arrow-next {
    right: 30px;
}

.modern-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modern-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Scroll Indicator */
.modern-scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.modern-scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.modern-scroll-indicator span {
    font-size: 0.9rem;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-slide-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .modern-slide-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .modern-slide-right {
        max-width: 100%;
        padding-left: 0;
    }
    
    .modern-slide-title {
        font-size: 2.5rem;
    }
    
    .modern-slide-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .modern-slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .modern-btn-primary,
    .modern-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .modern-slide-image {
        max-width: 100%;
        height: 400px;
    }
    
    .modern-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modern-arrow-prev {
        left: 15px;
    }
    
    .modern-arrow-next {
        right: 15px;
    }
    
    .modern-scroll-indicator {
        right: 30px;
        bottom: 20px;
    }
    
    .navbar-brand img {
        height: 70% !important;
        max-width: 150px !important;
    }
    
    .navbar-brand > div > div {
        height: 40px !important;
        width: 40px !important;
        font-size: 1rem !important;
    }
    
    .navbar-brand.mx-auto img {
        height: 90% !important;
        max-width: 200px !important;
    }
    
    .navbar-brand.mx-auto > div > div {
        height: 55px !important;
        width: 55px !important;
        font-size: 1.3rem !important;
    }
}

@media (max-width: 576px) {
    .modern-slide-title {
        font-size: 2rem;
    }
    
    .modern-slide-description {
        font-size: 1rem;
    }
    
    .modern-slide-image {
        height: 300px;
    }
    
    .navbar-brand img {
        height: 60% !important;
        max-width: 120px !important;
    }
    
    .navbar-brand > div > div {
        height: 35px !important;
        width: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .navbar-brand.mx-auto img {
        height: 80% !important;
        max-width: 160px !important;
    }
    
    .navbar-brand.mx-auto > div > div {
        height: 45px !important;
        width: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .navbar-brand span {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 991px) {
    .navbar-toggler[style*="position: absolute"] {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

/* 2. About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.about-experience {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.about-experience h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.about-experience p {
    margin: 0;
    font-size: 0.9rem;
}

.about-content {
    padding-left: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.section-title.text-start {
    text-align: left !important;
}

.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.personal-info {
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.info-list i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 1rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    border-width: 2px;
    border-color: var(--gradient);
}

/* 3. Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    color: white;
}

/* 4. Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: white;
}

.portfolio-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    margin: 0 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.portfolio-item {
    margin-bottom: 2rem;
}

.portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.9), rgba(46, 204, 113, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    margin-bottom: 1rem;
}

.portfolio-info i {
    font-size: 2rem;
}

.success-stats-modal .stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.success-stats-modal .stat-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.success-story {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

/* 5. Blog Section */
.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* 6. Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
    background: white;
}

.contact-info {
    padding-left: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: white;
}

/* Mobile Responsive for other sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .contact-info {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-buttons {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ===== GELİŞMİŞ SLIDER ANİMASYONLARI ===== */

/* Her slider geçişinde çalışacak animasyonlar */
.animate-slide-in-left {
    animation: slideInLeftRepeatable 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRightRepeatable 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUpRepeatable 0.8s ease-out forwards;
}

/* Repeatable animations - her seferinde çalışabilir */
@keyframes slideInLeftRepeatable {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightRepeatable {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUpRepeatable {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider elementleri için başlangıç durumu */
.modern-slide:not(.active) .modern-slide-subtitle,
.modern-slide:not(.active) .modern-slide-title,
.modern-slide:not(.active) .modern-slide-description,
.modern-slide:not(.active) .modern-slide-buttons,
.modern-slide:not(.active) .modern-slide-image {
    opacity: 0;
    transform: translateX(-50px);
}

.modern-slide:not(.active) .modern-slide-image {
    transform: translateX(50px);
}

/* Aktif slide elementleri */
.modern-slide.active .modern-slide-subtitle,
.modern-slide.active .modern-slide-title,
.modern-slide.active .modern-slide-description,
.modern-slide.active .modern-slide-buttons,
.modern-slide.active .modern-slide-image {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out;
}

/* Geliştirilmiş slide geçişleri */
.modern-slide {
    transition: opacity 1s ease-in-out;
}

.modern-slide.active {
    opacity: 1;
}

.modern-slide:not(.active) {
    opacity: 0;
}

/* Hover efektleri */
.modern-slide-image {
    position: relative;
    overflow: hidden;
}

.modern-slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
}

.modern-slide.active .modern-slide-image::before {
    transform: translateX(100%) rotate(45deg);
}

/* Button hover animations */
.modern-btn-primary,
.modern-btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-btn-primary::before,
.modern-btn-outline::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;
    z-index: 1;
}

.modern-btn-primary:hover::before,
.modern-btn-outline:hover::before {
    left: 100%;
}

/* Improved dot animations */
.modern-nav-dot {
    position: relative;
    overflow: hidden;
}

.modern-nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.modern-nav-dot:hover::before {
    width: 100%;
    height: 100%;
}

.modern-nav-dot.active::before {
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
}

/* Arrow hover animations */
.modern-arrow {
    position: relative;
    overflow: hidden;
}

.modern-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-arrow:hover::before {
    opacity: 1;
}

.modern-arrow i {
    transition: transform 0.3s ease;
}

.modern-arrow:hover i {
    transform: scale(1.2);
}

/* Scroll indicator animation enhancement */
.modern-scroll-indicator {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modern-scroll-indicator i {
    animation: bounceEnhanced 2s infinite;
}

@keyframes bounceEnhanced {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Mobile animations optimization */
@media (max-width: 768px) {
    .animate-slide-in-left,
    .animate-slide-in-right {
        animation-duration: 0.6s;
    }
    
    .modern-slide-bg {
        transform: none !important;
    }
    
    .modern-slide.active .modern-slide-bg {
        transform: none !important;
    }
}

/* Performance optimizations - WILL-CHANGE KALDIRILMIŞ */
.modern-slide {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-slide-in-left,
    .animate-slide-in-right,
    .animate-fade-in-up {
        animation: none;
    }
    
    .modern-slide-subtitle,
    .modern-slide-title,
    .modern-slide-description,
    .modern-slide-buttons,
    .modern-slide-image {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .modern-scroll-indicator {
        animation: none;
    }
}