/* Modal açıldığında padding-right eklenmesini ve scroll çubuğu genişliğini engelle */
body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

.modal.fade.show {
    padding-right: 0 !important;
}

.modal-scrollbar-measure {
    width: 0 !important;
}

:root {
    /* Temel Renkler */
    --color-blue-50: #e6f1fe;
    --color-blue-100: #c0d9fd;
    --color-blue-200: #95bcfb;
    --color-blue-300: #6a9ef9;
    --color-blue-400: #4b80f8;
    --color-blue-500: #3a6ff5;
    --color-blue-600: #3563e9;
    --color-blue-700: #2f56d8;
    --color-blue-800: #2945b8;
    --color-blue-900: #1e3a8a;
    
    --color-purple-50: #f3effe;
    --color-purple-100: #e4d9fd;
    --color-purple-200: #d0bdfa;
    --color-purple-300: #bd9df8;
    --color-purple-400: #ac7ef5;
    --color-purple-500: #9b60f2;
    --color-purple-600: #8b45e9;
    --color-purple-700: #7e3bd7;
    --color-purple-800: #6e32b8;
    --color-purple-900: #5e2c9b;
    
    --color-cyan-50: #e8f9fd;
    --color-cyan-100: #d2f1fc;
    --color-cyan-200: #a6e4f9;
    --color-cyan-300: #73d4f5;
    --color-cyan-400: #4ac0ef;
    --color-cyan-500: #21a8e6;
    --color-cyan-600: #1890d3;
    --color-cyan-700: #1576b5;
    --color-cyan-800: #145e94;
    --color-cyan-900: #134e7a;
    
    /* Navbar Styles */
    --navbar-bg-color: rgba(16, 24, 40, 1);
    --nav-link-color: white;
    --nav-link-hover-color: var(--color-blue-400);
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-3xl: 1.5rem;
    --border-radius-full: 9999px;
}

/* Navbar */
.navbar {
    background-color: var(--navbar-bg-color);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

/* Desktop Menu */
.nav-links {
    display: none;
}

.menu-links {
    display: flex;
    gap: 1.5rem;
}

.menu-links a {
    color: var(--nav-link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--nav-link-hover-color);
}

.action-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:after {
    content: '\f107'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 3px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-btn:hover:after {
    transform: translateY(2px);
}

.lang-btn .lang-text {
    font-weight: 500;
    font-size: 0.8rem;
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    min-width: 10rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
    z-index: 10;
    overflow: hidden;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #344054;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    background-color: #f5f7ff;
    color: #4E6BFF;
    padding-left: 1.2rem;
}

.language-dropdown a.active {
    color: #4E6BFF;
    background-color: rgba(78, 107, 255, 0.08);
    font-weight: 600;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 100;
    min-width: 140px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-dropdown.active {
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    color: white;
    font-size: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu Content */
.mobile-menu {
    display: none;
    background-color: rgba(16, 24, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    color: white;
    padding: 0.5rem 0;
    text-decoration: none;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn {
    display: block;
    text-align: center;
    width: 100%;
}

.mobile-lang-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-options a {
    color: var(--color-blue-300);
    font-size: 0.875rem;
    text-decoration: none;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background-image: linear-gradient(to right, #3a6ff5, #9b60f2);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -1px rgba(16, 24, 40, 0.06);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -2px rgba(16, 24, 40, 0.05), 0 0 0.5rem #4b80f8;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-blue-300);
    color: var(--color-blue-300);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(58, 111, 245, 0.1);
    color: var(--color-blue-300);
    border-color: var(--color-blue-300);
}

/* Desktop View */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Needed for navbar offset */
body {
    padding-top: 100px; /* Adjust based on navbar height */
}

/* Main content spacing */
#main-content {
    margin-top: 2rem;
}

/* FAQ Bölümü Stilleri */
:root {
    --bg-gradient-purple: linear-gradient(135deg, #3f0e40 0%, #6b32a8 100%);
    --color-gray-300: #d1d5db;
    --text-4xl: 2.25rem;
    --text-lg: 1.125rem;
    --text-sm: 0.875rem;
    --border-radius-2xl: 1rem;
    --border-radius-full: 9999px;
    --color-pink-400: #f472b6;
}

.faq {
    background-image: var(--bg-gradient-purple);
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: var(--text-4xl);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-gray-300);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: var(--text-lg);
    cursor: pointer;
    border: none;
    background: transparent;
}

.icon-plus {
    display: inline-block;
    color: var(--color-purple-400);
}

.icon-minus {
    display: none;
    color: var(--color-purple-400);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-gray-300);
}

.faq-question.active + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
}

/* Badge stilleri */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.badge.purple {
    background-color: rgba(155, 96, 242, 0.2);
    color: var(--color-purple-300);
}

.badge.purple .badge-dot {
    background-color: var(--color-purple-400);
}

/* Gradient metin */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.purple-pink {
    background-image: linear-gradient(to right, var(--color-purple-400), var(--color-pink-400));
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(155, 96, 242, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(155, 96, 242, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(155, 96, 242, 0);
    }
}