/* Index Page CSS - Header Footer Layout */

:root {
    --meta-blue: #0866FF;
    --meta-dark: #1C2B33;
    --meta-gray: #F0F2F5;
    --meta-light: #FFFFFF;
    --webcanido-primary: #2563eb;
    --webcanido-secondary: #1e40af;
    --primary-gradient: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(99, 102, 241, 0.2);
    --ai-primary: #6366f1;
    --ai-secondary: #8b5cf6;
    --ai-accent: #06b6d4;
}

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

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    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);
        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: var(--webcanido-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch:hover {
    background: var(--webcanido-secondary);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 20px;
}

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

.hero-section {
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0;
    border-radius: 24px;
    margin: 20px 0;
    border: 1px solid var(--glass-border);
}

.ai-badge-main {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #4299e1, #2b6cb0);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    z-index: 10;
}

.ai-badge-main i {
    font-size: 1.5rem;
    animation: pulseIcon 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.ai-badge-main:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.ai-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ai-feature-item {
    position: absolute;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAI 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ai-feature-item i {
    font-size: 1.4rem;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.ai-feature-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.ai-feature-item:nth-child(1) { 
    top: 10%; 
    left: 5%; 
    animation-delay: 0s; 
}
.ai-feature-item:nth-child(1) .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.ai-feature-item:nth-child(2) { 
    top: 20%; 
    right: 10%; 
    animation-delay: 2s; 
}
.ai-feature-item:nth-child(2) .feature-icon-wrapper {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.ai-feature-item:nth-child(3) { 
    bottom: 15%; 
    left: 5%; 
    animation-delay: 4s; 
}
.ai-feature-item:nth-child(3) .feature-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.ai-feature-item:nth-child(4) { 
    bottom: 25%; 
    right: 5%; 
    animation-delay: 6s; 
}
.ai-feature-item:nth-child(4) .feature-icon-wrapper {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.ai-feature-item span {
    font-weight: 500;
}

.ai-feature-item .ai-badge {
    background: linear-gradient(45deg, #4299e1, #2b6cb0);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-left: 8px;
}

@keyframes floatAI {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-title::before {
    content: 'AI';
    position: absolute;
    top: -10px;
    left: -20px;
    background: linear-gradient(45deg, #4299e1, #2b6cb0);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    animation: pulseAI 2s ease-in-out infinite;
}

@keyframes pulseAI {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    line-height: 1.6;
}

.feature-card {
    border: none;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Index sayfası hover efektleri için renkli gölgeler */
.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(31, 41, 55, 0.6));
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* PRO Feature Styles */
.pro-feature {
    position: relative;
    overflow: visible;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 10;
    animation: pulsePro 2s ease-in-out infinite;
}

.feature-badge i {
    font-size: 0.9rem;
}

@keyframes pulsePro {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ai-primary);
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* Feature icon renkli sınıflar */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
    opacity: 0.3;
    animation: rotateIcon 4s linear infinite;
    z-index: -1;
}

/* Feature icon arka plan renkli sınıflar */
.feature-card:nth-child(1) .feature-icon::before {
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
}
.feature-card:nth-child(2) .feature-icon::before {
    background: linear-gradient(135deg, #10b981, #059669);
}
.feature-card:nth-child(3) .feature-icon::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-card:nth-child(4) .feature-icon::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.feature-card:nth-child(5) .feature-icon::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-card:nth-child(6) .feature-icon::before {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: none;
    -webkit-text-fill-color: white;
}

.feature-text {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.btn-meta {
    position: relative;
    z-index: 10;
    background: linear-gradient(45deg, #4299e1, #2b6cb0);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
    border: none;
    overflow: hidden;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-meta::before {
    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;
    z-index: 1;
}

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

.meta-logo-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #0866FF 0%, #0055D5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(8, 102, 255, 0.3);
    animation: metaPulse 3s ease-in-out infinite;
}

.meta-logo-wrapper i {
    color: white !important;
}

@keyframes metaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(8, 102, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(8, 102, 255, 0.5);
    }
}

.benefits-section {
    margin-top: 4rem;
    text-align: center;
    padding: 0 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

[lang="en"] {
    display: none;
}

[lang="tr"] {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(31, 41, 55, 0.4));
    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: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .feature-card {
        padding: 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;
    }
    
    .container {
        padding: 0px;
    }

    .hero-section {
        padding: 60px 15px;
        margin: 10px 0;
    }

    .ai-badge-main {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 20px;
        justify-content: center;
        width: fit-content;
    }

    .ai-feature-item {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0;
        margin-bottom: 1rem;
    }

    .hero-title::before {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 2rem;
    }

    .feature-card {
        margin-bottom: 20px;
        padding: 20px;
    }

    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .benefits-section {
        margin-top: 2rem;
        padding: 0 5px;
    }

    .benefits-section .row {
        margin: 0 -8px;
    }

    .benefits-section [class*="col-"] {
        padding: 0 8px;
    }

    .benefits-section .feature-card {
        padding: 15px;
        margin-bottom: 16px;
    }

    .benefits-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .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: 20px;
    }
    
    .container {
        padding: 0px;
    }

    .hero-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .feature-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .feature-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-meta {
        margin: 15px auto;
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 180px;
    }

    .benefits-section [class*="col-"] {
        padding: 0 6px;
    }

    .benefits-section .feature-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .col-6, .col-md-3, .col-md-4 {
        padding-left: 6px;
        padding-right: 6px;
    }

    .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;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .footer-container {
        padding: 0 10px;
    }
}

/* Yatay mobil görünüm optimizasyonu */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 20px;
    }

    .meta-logo {
        height: 40px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 15px;
    }
}

/* Dokunmatik cihazlar için hover efektlerini düzenleme */
@media (hover: none) {
    .feature-card:hover {
        transform: none;
    }

    .btn-meta:hover {
        background-color: var(--webcanido-primary);
    }
}

/* Karanlık mod desteği */
@media (prefers-color-scheme: dark) {
    [data-theme="auto"] {
        --meta-gray: #1a1a1a;
        --meta-light: #2d2d2d;
        --meta-dark: #ffffff;
    }
}

/* Erişilebilirlik iyileştirmeleri */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
