/* Global Styles */
:root {
    --primary-color: #455da7;
    --primary-rgb: 69, 93, 167;
    --secondary-color: #455da7;
    --text-color: #333333;
    --text-secondary: #666;
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f5;
    --border-color: #e0e0e0;
    --card-bg: #fff;
    --success-color: #0ECB81;
    --error-color: #F6465D;
    --warning-color: #F0B90B;
    
    --header-height: 70px;
    --footer-height: 300px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #455da7;
    --primary-rgb: 69, 93, 167;
    --secondary-color: #243847;
    --text-color: #ffffff;
    --text-secondary: #aaa;
    --bg-color: #1a1a1a;
    --bg-secondary: #1e1e1e;
    --border-color: #2d2d2d;
    --card-bg: #2a2a2a;
}

body.dark-theme {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --border-color: #2d2d2d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

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

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    position: relative;
    flex-shrink: 0;
    margin-right: 1rem;
}

.logo img {
    height: 70px;
    transition: opacity 0.3s ease;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

[data-theme="dark"] .logo-light {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.currency-selector,
.language-selector {
    display: none;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.theme-toggle:hover {
    background: rgba(0,0,0,0.1);
}

body.dark-theme .theme-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.auth-buttons a {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.auth-buttons .btn-secondary {
    background: #dedede;
    color: #333;
}

.auth-buttons .btn-primary {
    background: #455da7;
    color: white;
}

.auth-buttons .btn-secondary:hover {
    background: #d0d0d0;
}

.auth-buttons .btn-primary:hover {
    background: #5974c9;
}

.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    padding: 6rem 2rem 4rem;
    margin-top: var(--header-height);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:.5rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .header-right {
        justify-content: flex-end;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.features {
    padding: 6rem 2rem;
    background: var(--bg-color);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-secondary);
    color: var(--text-color);
    padding: 1.5rem;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background-color: #1e1e1e;
    border-color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem;
    }
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-top {
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: space-between;
    }
    
    .footer-column {
        min-width: 140px;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-countries {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .footer-column {
        min-width: 45%;
    }
    
    .footer-app-links {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-column {
        width: 200px; 
    
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        
    }

    .header-right {
        gap: 0.8rem;
    }

    .currency-selector select,
    .language-selector select {
        padding: 0.3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-column {
        width: 200px; 
    
    }
    .header-container {
        padding: 0.5rem 1rem;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
    }

    .header-right {
        display: flex;
        gap: 0.5rem;
    }

    .currency-selector select,
    .language-selector select {
        min-width: 60px;
        padding: 0.3rem;
    }

    .auth-buttons {
        display: none;
    }

    .nav-list.active .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-list.active .auth-buttons a {
        flex: 1;
        max-width: 150px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem;
    }

    .logo img {
        height: 30px;
    }

    .header-right {
        gap: 0.3rem;
        
    }

    .currency-selector select,
    .language-selector select {
        min-width: 50px;
        padding: 0.2rem;
        font-size: 0.8rem;
    }

    .theme-toggle {
        padding: 0.3rem;
    }

    .nav-list.active .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-list.active .auth-buttons a {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--error-color);
}

.notification.warning {
    border-left: 4px solid var(--warning-color);
}

.notification.info {
    border-left: 4px solid var(--primary-color);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu i {
    font-size: 1.8rem;
    font-weight: bold;
}

.mobile-menu.active i {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-auth-buttons {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 1rem;
    }

    .mobile-auth-buttons a {
        flex: 1;
        text-align: center;
        padding: 0.8rem;
        border-radius: 5px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .mobile-auth-buttons .btn-secondary {
        background: var(--bg-secondary);
        color: var(--text-color);
    }

    .mobile-auth-buttons .btn-primary {
        background: var(--primary-color);
        color: white;
    }

    .nav-list .nav-item {
        width: 100%;
    }

    .nav-list .nav-item a {
        display: flex;
        align-items: center;
        padding: 0.8rem;
        border-radius: 5px;
        transition: all 0.3s;
    }

    .nav-list .nav-item a:hover {
        background: var(--bg-secondary);
    }

    .nav-list .nav-item i {
        display: inline-block;
        margin-right: 1rem;
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mobile-auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-menu i {
        font-size: 1.5rem;
    }
}

/* Dark Mode Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.theme-toggle i {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Stats Section */
.stats {
    padding: 64px 0;
    background: var(--background-color);
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: var(--background-color);
}

.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--card-background);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    width: 100%;
    max-width: 400px;
    animation: modalFadeIn 0.3s ease;
}

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

/* Checkbox Styles */
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.checkbox span {
    color: var(--text-color);
    font-size: 14px;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
}

.password-toggle:hover {
    color: var(--text-color);
}

/* Yeni özellikler için stiller */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
}

.chat-container.active {
    display: flex;
}

.chat-header {
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
    max-width: 80%;
}

.message.support {
    margin-right: auto;
}

.message.user {
    margin-left: auto;
}

.message p {
    padding: 10px;
    border-radius: 10px;
    background: var(--background-color);
    color: var(--text-color);
}

.message.support p {
    background: var(--primary-color);
    color: #fff;
}

.chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--background-color);
    color: var(--text-color);
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 460px;
    z-index: 1000;
}

.language-toggle {
    padding: 8px 12px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    display: none;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown button {
    display: block;
    width: 100%;
    padding: 8px 12px;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.language-dropdown button:hover {
    background: var(--background-color);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification i {
    font-size: 20px;
}

.notification.success {
    background: #2ecc71;
    color: #fff;
}

.notification.error {
    background: #e74c3c;
    color: #fff;
}

.notification.info {
    background: #3498db;
    color: #fff;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Settings Dropdown */
.settings-dropdown, .currency-dropdown {
    position: relative;
    margin-right: 1rem;
}

.settings-icon, .currency-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.settings-icon:hover, .currency-icon:hover {
    background-color: var(--bg-secondary);
}

.settings-content, .currency-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    transition: opacity 0.3s ease;
}

/* Hover ile açılma kaldırıldı, JavaScript ile kontrol edileceği için */
.settings-content.show,
.currency-content.show {
    display: block;
}

.settings-section {
    margin-bottom: 1rem;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.settings-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-options.scrollable {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.settings-option {
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settings-option:hover {
    background-color: var(--bg-secondary);
}

.settings-option.active {
    color: var(--primary-color);
    font-weight: 500;
}

.settings-option i {
    font-size: 0.8rem;
    margin-left: auto;
}

.settings-option-combined {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.country-flag {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    background-color: var(--bg-secondary);
    border-radius: 50%;
}

.option-details {
    display: flex;
    flex-direction: column;
}

.country-name {
    font-weight: 500;
    color: var(--text-color);
}

.language-name {
    font-size: 0.8rem;
    color: #9c9c9c;
}

/* Scrollbar Styling */
.settings-options.scrollable::-webkit-scrollbar {
    width: 6px;
}

.settings-options.scrollable::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.settings-options.scrollable::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.settings-options.scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Header Right düzenlemesi */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.currency-selector,
.language-selector {
    display: none;
}

/* Responsive tasarım güncellemesi */
@media (max-width: 768px) {
    .settings-content {
        position: fixed;
        top: var(--header-height);
        right: 1rem;
        max-height: calc(100vh - var(--header-height) - 2rem);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .settings-content {
        right: 0.5rem;
        left: 0.5rem;
        min-width: auto;
    }
}

@media (min-width: 769px) {
    .nav-list .nav-item i {
        display: none;
    }
    
    .mobile-auth-buttons {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-list .nav-item i {
        display: inline-block;
        margin-right: 1rem;
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }
    
    .mobile-auth-buttons {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
    text-decoration: none;
    border: none;
    outline: none;
}

.btn i {
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #4a61a8 0%, #455da7  100%);
    
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #898d9c 0%, #898d9c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Scroll bar stilleri */
::-webkit-scrollbar {
    width: 6px;
    transition: width 0.3s ease;
}

body:hover::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 4px solid transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #455da7 0%, #455da7 100%);
    border-radius: 30px;
    min-height: 40px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #455da7 0%, #3730a3 100%);
    width: 12px;
}

/* Dark tema için scroll bar */
[data-theme="dark"]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

[data-theme="dark"]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
}

/* Firefox için scroll bar */
* {
    scrollbar-width: thin;
    scrollbar-color: #455da7 transparent;
  
}

[data-theme="dark"] * {
    scrollbar-color: #455da7 rgba(255, 255, 255, 0.05);
}

/* Sıkça Sorulan Sorular Ana Sayfa Stili */
.faq-home {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.faq-home-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-home-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.faq-home-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-home-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    
}

.faq-item:hover {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    position: relative;
}

.faq-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    flex-grow: 1;
    padding-left: 0;
}

.faq-toggle {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 0;
}

.faq-answer {
    padding: 0 1.2rem 1.2rem 3.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer.hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 3rem;
        font-size: 0.9rem;
    }

    .faq-number {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
}

/* Nasıl Başlanır Bölümü Stili */
.get-started {
    padding: 5rem 2rem;
    background: var(--bg-color);
}

.get-started-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.get-started-container h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.get-started-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.get-started-steps {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 1.5rem;
    height: 2px;
    background: var(--primary-color);
    display: block;
}

.step:last-child::after {
    display: none;
}

.step-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.step-icon i {
    font-size: 1.6rem;
    color: white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.start-now {
    margin-top: 1.5rem;
}

.start-now-btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

.smooth-scroll {
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsive Styles for FAQ and Get Started sections */
@media (max-width: 1024px) {
    .get-started-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 450px;
        width: 100%;
    }
    
    .step::after {
        display: none;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon i {
        font-size: 1.4rem;
    }
}

/* Ülke Seçim Modalı */
.settings-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.settings-icon:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.country-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-modal.active {
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-color);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.country-modal.active .modal-content {
    transform: translateY(0);
}

.country-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.country-modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.country-item {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--bg-secondary);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.country-item:hover {
    background-color: var(--bg-hover);
}

.country-item.selected {
    background-color: rgba(var(--primary-rgb), 0.1);
    border: 1px solid var(--primary-color);
}

.country-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.country-code {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.country-check {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-item.selected .country-check {
    opacity: 1;
}

/* Dark Theme için modal stilleri */
[data-theme="dark"] .modal-content {
    background-color: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .country-item {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .country-item:hover {
    background-color: var(--bg-hover);
}

[data-theme="dark"] .country-item.selected {
    background-color: rgba(var(--primary-rgb), 0.15);
}

@media (max-width: 768px) {
    .country-list {
        grid-template-columns: 1fr;
    }
    
    .country-modal-body {
        max-height: 60vh;
    }
}

/* Hakkımızda Bölümü Stili */
.about {
    padding: 5rem 2rem;
    background: var(--bg-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.about-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Analiz Bölümü Stili */
.analytics-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.analytics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.analytics-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.analytics-charts {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.chart-container {
    flex: 1;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 8px;
}

.chart-placeholder i {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* WinVearn Pro Bölümü Stili */
.winvearn-pro {
    padding: 5rem 2rem;
    background: var(--bg-color);
}

.winvearn-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.winvearn-pro-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.winvearn-pro-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.pro-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.pro-features {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pro-feature {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pro-feature i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pro-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.pro-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pro-pricing {
    flex: 2;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.benefits li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.benefits li:last-child {
    border-bottom: none;
}

.benefits li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* İletişim Bölümü Stili */
.contact {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.contact-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
}

.contact-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    flex: 2;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Başvurular Bölümü Stili */
.applications {
    padding: 5rem 2rem;
    background: var(--bg-color);
}

.applications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.applications-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.applications-container h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.application-types {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.application-type {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.application-type:hover {
    transform: translateY(-10px);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.application-icon i {
    color: white;
}

.application-type h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.application-type p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .about-content,
    .pro-content,
    .contact-content,
    .application-types {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .analytics-charts {
        flex-direction: column;
    }
    
    .analytics-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .analytics-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

/* Aktif Menü İşaretleme */
.nav-item a.active {
    color: var(--primary-color);
    font-weight: 600;
} 