/* ========================================
   PAKETLER CUSTOM SOLUTION CTA SECTION
   Professional, Modern, Clean Design
   ======================================== */

/* ===== SECTION WRAPPER ===== */
.paketler-custom-cta {
    padding: 80px 0;
    background: #ffffff;
}

/* ===== CTA CONTAINER ===== */
.paketler-custom-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.paketler-custom-cta__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.03) 0%, rgba(194, 24, 91, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.paketler-custom-cta__container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
}

.paketler-custom-cta__container:hover::before {
    opacity: 1;
}

/* ===== ICON ===== */
.paketler-custom-cta__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.paketler-custom-cta__icon i {
    font-size: 36px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.paketler-custom-cta__container:hover .paketler-custom-cta__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.4);
}

.paketler-custom-cta__container:hover .paketler-custom-cta__icon i {
    transform: scale(1.1);
}

/* ===== CONTENT ===== */
.paketler-custom-cta__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.paketler-custom-cta__title {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.paketler-custom-cta__description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ===== BUTTON ===== */
.paketler-custom-cta__button {
    flex-shrink: 0;
    padding: 18px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.paketler-custom-cta__button:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
    color: #ffffff !important;
}

.paketler-custom-cta__button i {
    font-size: 18px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.paketler-custom-cta__button:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .paketler-custom-cta {
        padding: 60px 0;
    }
    
    .paketler-custom-cta__container {
        padding: 48px 40px;
        gap: 32px;
    }
    
    .paketler-custom-cta__icon {
        width: 70px;
        height: 70px;
    }
    
    .paketler-custom-cta__icon i {
        font-size: 32px;
    }
    
    .paketler-custom-cta__title {
        font-size: 28px;
    }
    
    .paketler-custom-cta__description {
        font-size: 15px;
    }
    
    .paketler-custom-cta__button {
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .paketler-custom-cta {
        padding: 50px 0;
    }
    
    .paketler-custom-cta__container {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
        gap: 24px;
        margin: 0 20px;
        border-radius: 24px;
    }
    
    .paketler-custom-cta__icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
    
    .paketler-custom-cta__icon i {
        font-size: 28px;
    }
    
    .paketler-custom-cta__title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .paketler-custom-cta__description {
        font-size: 15px;
    }
    
    .paketler-custom-cta__button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .paketler-custom-cta__container {
        padding: 32px 24px;
    }
    
    .paketler-custom-cta__title {
        font-size: 22px;
    }
    
    .paketler-custom-cta__description {
        font-size: 14px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paketler-custom-cta {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* ===== ACCESSIBILITY ===== */
.paketler-custom-cta__button:focus {
    outline: 2px solid #E91E63;
    outline-offset: 4px;
}

.paketler-custom-cta__container:focus-within {
    border-color: rgba(233, 30, 99, 0.5);
}
