/* CTA Özel Stilleri - Premium Apple Tarzı */
.apple-cta-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 10s ease-out;
    animation: subtle-zoom 20s infinite alternate ease-in-out;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
    }
}

.apple-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.apple-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cam efektli çerçeve kaldırıldı */

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.apple-cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apple-cta-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.apple-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.apple-cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apple-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.apple-cta-button:hover::before {
    transform: translateY(0);
}

.apple-cta-button.primary {
    background-color: #fff;
    color: #000;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.apple-cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f7;
}

.apple-cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.apple-cta-button.secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .apple-cta-section {
        height: 600px;
    }
    
    .apple-cta-text-container {
        padding: 40px 30px;
    }
    
    .apple-cta-title {
        font-size: 42px;
    }
    
    .apple-cta-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .apple-cta-section {
        height: 550px;
    }
    
    .apple-cta-text-container {
        padding: 30px 20px;
    }
    
    .apple-cta-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .apple-cta-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .apple-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .apple-cta-button {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }
}
