/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.header {
    padding: 30px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.maya-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.maya-logo:hover {
    transform: scale(1.05);
}

.maya-logo-img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Ana İçerik Stilleri */
.main-content {
    padding: 40px 0;
}

/* Apps Grid Bölümü */
.apps-grid-section {
    margin-bottom: 60px;
}

.apps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

/* App Container */
.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* App Header */
.app-header {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* App Grid Kartları */
.app-grid-item {
    background: linear-gradient(145deg, #9ca3af, #6b7280);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.app-grid-item:hover::before {
    left: 100%;
}

.app-grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #a8b3c1, #7c8a9a);
}

.app-grid-img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.app-grid-item:hover .app-grid-img {
    transform: scale(1.1);
}

/* CloudOffix Logo Özel Stili */
.cloudoffix-logo {
    width: 140% !important;
    height: 140% !important;
    object-fit: contain;
    transform: scale(1.2);
    margin: -10px;
}

.app-grid-item:hover .cloudoffix-logo {
    transform: scale(1.3);
}

/* Intranet Erişim Notu - Kutucuk İçinde */
.intranet-access-note {
    font-style: italic;
    font-size: 0.7rem;
    color: #d5d5d5;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    margin-top: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.app-grid-item:hover .intranet-access-note {
    opacity: 1;
    color: #cbd5e0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.footer p {
    margin-bottom: 8px;
}

.footer .company-info {
    font-weight: 500;
    color: #4a5568;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .maya-logo-img {
        max-height: 60px;
    }
    
    .apps-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .app-container {
        gap: 12px;
    }
    
    .app-header {
        font-size: 0.95rem;
        padding: 6px 12px;
    }
    
    .app-grid-item {
        width: 150px;
        height: 150px;
        padding: 30px;
    }
    
    .cloudoffix-logo {
        width: 130% !important;
        height: 130% !important;
        transform: scale(1.3);
        margin: -8px;
    }
    
    .intranet-access-note {
        font-size: 0.65rem;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .app-header {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .app-grid-item {
        width: 120px;
        height: 120px;
        padding: 25px;
    }
    
    .cloudoffix-logo {
        width: 120% !important;
        height: 120% !important;
        transform: scale(1.15);
        margin: -5px;
    }
    
    .intranet-access-note {
        font-size: 0.6rem;
        margin-top: 5px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-container {
    animation: fadeInUp 0.6s ease-out;
}

.app-container:nth-child(1) { animation-delay: 0.1s; }
.app-container:nth-child(2) { animation-delay: 0.2s; }
.app-container:nth-child(3) { animation-delay: 0.3s; } 