/* Authentication Pages CSS - Header Footer Layout */

:root {
    --meta-blue: #0866FF;
    --meta-dark: #1C2B33;
    --meta-gray: #F0F2F5;
    --meta-hover: #0055D5;
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background: var(--primary-gradient);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-section .slogan {
    font-size: 0.85rem;
    font-weight: 400;
    color: #94a3b8;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-section a {
    transition: all 0.3s ease;
}

.logo-section a:hover {
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.05);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #cbd5e1;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo-section .slogan {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-gradient);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 10px;
        font-size: 1.1rem;
        text-align: left;
        border: 1px solid transparent;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--glass-border);
    }
    
    .nav-links a.active {
        background: rgba(8, 102, 255, 0.2);
        border-color: var(--meta-blue);
        color: #60a5fa;
    }
    
    .lang-switch {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--glass-border);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-section img {
        height: 35px;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
}

.lang-switch {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - 140px); /* Header + Footer height */
}

.auth-container {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 50px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .brand-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #0866FF 0%, #0055D5 100%);
    box-shadow: 0 8px 32px rgba(8, 102, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-header .brand-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.auth-header .brand-icon:hover::before {
    transform: translateX(100%);
}

.auth-header .brand-icon i {
    font-size: 2rem;
    color: #fff;
    transform-origin: center;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.auth-header .brand-icon:hover {
    transform: rotate(10deg);
    box-shadow: 0 12px 40px rgba(8, 102, 255, 0.4);
}

.auth-header h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.auth-header h5 {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 400;
}

/* AI Robot Logo */
.ai-robot-logo {
    text-align: center;
    margin-bottom: 20px;
}

.ai-robot-logo i {
    font-size: 4rem;
    background: linear-gradient(45deg, #4299e1, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    animation: rainbowGlow 3s ease-in-out infinite;
}

@keyframes rainbowGlow {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(30deg) brightness(1.2); }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.welcome-section h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #4299e1;
    font-weight: 600;
}

.welcome-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* AI Features */
.ai-features {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.ai-features h6 {
    color: #4299e1;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.ai-features h6 i {
    margin-right: 8px;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(66, 153, 225, 0.3);
}

.feature-icon {
    margin-bottom: 12px;
}

.feature-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* AI Feature kartları için renkli ikonlar */
.ai-feature-card:nth-child(1) .feature-icon i { 
    color: #4299e1; /* Mavi */
}
.ai-feature-card:nth-child(2) .feature-icon i { 
    color: #10b981; /* Yeşil */
}
.ai-feature-card:nth-child(3) .feature-icon i { 
    color: #f59e0b; /* Turuncu */
}
.ai-feature-card:nth-child(4) .feature-icon i { 
    color: #ef4444; /* Kırmızı */
}

.ai-feature-card:hover .feature-icon i {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.feature-content h4 {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-content p {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Eski feature-item stilleri (geriye uyumluluk için) */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.feature-item i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #4299e1;
    display: inline-block;
}

.feature-item span {
    font-size: 0.95rem;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.info-section {
    flex: 1;
    padding: 25px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.form-section {
    flex: 1.5;
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.info-section h3, .form-section h3 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-section h3 i, .form-section h3 i {
    margin-right: 10px;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Benefit Items Container */
.benefit-items-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Benefit item ikon hover animasyonları */
.benefit-item i:hover {
    filter: brightness(1.2);
}

/* Benefit item ikonları için renkli sınıflar */
.info-section .benefit-item:nth-of-type(1) i { 
    color: #10b981; 
    background: linear-gradient(45deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .benefit-item:nth-of-type(2) i { 
    color: #4299e1; 
    background: linear-gradient(45deg, #4299e1, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .benefit-item:nth-of-type(3) i { 
    color: #f59e0b; 
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .benefit-item:nth-of-type(4) i { 
    color: #ef4444; 
    background: linear-gradient(45deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-content h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Hover efektleri için renkli gölgeler */
.info-section .feature-grid .feature-card:nth-of-type(1):hover {
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}
.info-section .feature-grid .feature-card:nth-of-type(2):hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.info-section .feature-grid .feature-card:nth-of-type(3):hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}
.info-section .feature-grid .feature-card:nth-of-type(4):hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: #4299e1;
    margin: 0 auto 10px auto;
    transition: all 0.3s ease;
    display: block;
    width: auto;
    text-align: center;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", sans-serif;
    font-weight: 900;
    line-height: 1;
}

/* Feature card ikonları için renkli sınıflar */
.info-section .feature-grid .feature-card:nth-of-type(1) i { 
    color: #4299e1; 
    background: linear-gradient(45deg, #4299e1, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .feature-grid .feature-card:nth-of-type(2) i { 
    color: #10b981; 
    background: linear-gradient(45deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .feature-grid .feature-card:nth-of-type(3) i { 
    color: #f59e0b; 
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-section .feature-grid .feature-card:nth-of-type(4) i { 
    color: #ef4444; 
    background: linear-gradient(45deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-label.required {
    color: #60a5fa;
}

.form-label.required::after {
    content: " *";
    color: #ef4444;
    font-weight: bold;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    padding: 12px 16px;
    height: auto;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(66, 153, 225, 0.5);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.25);
    color: white;
    outline: none;
}

/* Password Toggle Button */
.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field .form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal-content {
    background: #1e293b;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 3.5rem;
    color: #10b981;
}

.modal-content h3 {
    color: #e2e8f0;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-message {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #60a5fa;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
}

.info-item span {
    font-size: 0.95rem;
}

.modal-actions {
    margin-bottom: 20px;
}

.modal-actions .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Modal */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-primary {
    background: linear-gradient(45deg, #4299e1, #2b6cb0);
    color: white;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    color: white;
    text-decoration: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
    0% { transform: rotate(45deg) translateX(-200%); }
    100% { transform: rotate(45deg) translateX(200%); }
}

.btn-facebook {
    background: #1877F2;
    color: white;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-facebook:hover {
    background: #166fe5;
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
    color: white;
    text-decoration: none;
}

.btn-facebook:active {
    /* Transform kaldırıldı - performans için */
}

/* Alert Styles */
.alert {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fecaca;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.1rem;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider span {
    padding: 0 15px;
    font-size: 14px;
}

/* Text Center */
.text-center {
    text-align: center;
    margin-top: 20px;
    color: #e2e8f0;
}

.text-center a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.text-center a:hover {
    color: #63b3ed;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        max-width: 800px;
        padding: 30px;
    }
    
    .content-wrapper {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .logo-section .slogan {
        font-size: 0.75rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .auth-container {
        padding: 25px;
        margin: 0 10px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .info-section, .form-section {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .ai-feature-card {
        padding: 12px;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-section {
        gap: 6px;
    }
    
    .logo-section img {
        height: 35px;
    }
    
    .logo-section .slogan {
        font-size: 0.7rem;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .auth-container {
        padding: 20px;
        margin: 0 5px;
    }
    
    .auth-header h4 {
        font-size: 1.5rem;
    }
    
    .auth-header h5 {
        font-size: 1rem;
    }
    
    .ai-robot-logo i {
        font-size: 3rem;
    }
    
    .welcome-section h4 {
        font-size: 1.2rem;
    }
    
    .welcome-section p {
        font-size: 0.9rem;
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .ai-feature-card {
        padding: 10px;
    }
    
    .feature-content h4 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .feature-content p {
        font-size: 0.7rem;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: 12px;
    }
    
    .feature-card h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
    
    .feature-card i {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .benefit-items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-item i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .benefit-content h4 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .benefit-content p {
        font-size: 0.7rem;
    }
    
    .info-section, .form-section {
        padding: 15px;
    }
    
    .benefit-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .benefit-items-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-item {
        margin-bottom: 0;
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 8px;
        margin-top: 0;
    }
    
    .benefit-content h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .benefit-content p {
        font-size: 0.75rem;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 360px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-section img {
        height: 30px;
    }
    
    .logo-section .slogan {
        font-size: 0.65rem;
    }
    
    .auth-container {
        padding: 15px;
        margin: 0 2px;
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .ai-feature-card {
        padding: 8px;
    }
    
    .feature-content h4 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .feature-content p {
        font-size: 0.65rem;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-card {
        padding: 10px;
    }
    
    .feature-card h4 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .feature-card p {
        font-size: 0.7rem;
    }
    
    .feature-card i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .benefit-items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .benefit-item {
        padding: 8px;
    }
    
    .benefit-item i {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .benefit-content h4 {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .benefit-content p {
        font-size: 0.6rem;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .footer-container {
        padding: 0 10px;
    }
}
