/* Feature Button Styles */
.feature-btn.active {
    background-color: rgb(15, 23, 42);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.1), 0 4px 6px -2px rgba(8, 145, 178, 0.05);
}

.feature-btn.active .icon-box {
    background-color: rgb(6, 182, 212);
    color: white;
}

.feature-btn.active .text-title {
    color: white;
}

.feature-btn.active .chevron {
    opacity: 1;
    color: rgb(34, 211, 238);
}

/* Profile Tab Navigation */
.profile-tab {
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    color: rgb(148, 163, 184);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-tab:hover {
    color: rgb(226, 232, 240);
}

.profile-tab.active {
    color: rgb(6, 182, 212);
    border-bottom-color: rgb(6, 182, 212);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Content Cards */
.content-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s;
}

.content-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.1);
}

/* Modal Animation */
.modal-enter {
    opacity: 0;
    transform: scale(0.95);
}

.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 300ms ease-out, transform 300ms ease-out;
}

.modal-exit {
    opacity: 1;
    transform: scale(1);
}

.modal-exit-active {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 200ms ease-in, transform 200ms ease-in;
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 300ms ease-in-out;
}

.faq-question {
    cursor: pointer;
    outline: none;
}

.faq-question:focus {
    outline: 2px solid rgba(6, 182, 212, 0.5);
    outline-offset: -2px;
}

/* Answer Container - Smooth Height Transition */
.faq-answer {
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
}

.faq-item.active .faq-answer {
    padding-top: 1.0rem; /* Soru ve cevap arasında boşluk */
}

/* Icon Rotation when Expanded */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Active State Border Glow */
.faq-item.active {
    border-color: rgba(6, 182, 212, 0.5) !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

/* Hover Effects - Subtle Lift */
.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item.active:hover {
    transform: translateY(0); /* Cancel lift when expanded */
}

/* Answer Text Animation */
.faq-answer > div {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 300ms ease-out 100ms, transform 300ms ease-out 100ms;
}

.faq-item.active .faq-answer > div {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Typography */
@media (max-width: 640px) {
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }
}

/* Toast/Notification Animation */
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.animate-slide-down {
    animation: slide-down 0.3s ease-out forwards;
}
