/* ====================================
   MOBILE MENU STYLES (Sağdan Açılan Drawer)
   ==================================== */

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #1a1a2e;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Education Badge */
.mobile-education-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-education-badge i {
    font-size: 16px;
}

/* Mobile Menu Greeting */
.mobile-menu-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.mobile-menu-greeting i {
    font-size: 24px;
    color: #667eea;
}

/* Mobile Menu Title */
.mobile-menu-title {
    margin-bottom: 30px;
}

.mobile-menu-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.mobile-menu-title p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    visibility: visible !important;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    background: rgba(102, 126, 234, 0.2);
    padding-left: 30px;
}

/* Mobile Language Buttons */
.mobile-menu-lang {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-lang-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

/* Admin Panel Button */
.mobile-admin-panel-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.mobile-admin-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Mobile Menu Share Section */
.mobile-menu-share {
    margin-bottom: 30px;
}

.mobile-menu-share h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-social-btn {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-social-btn:hover {
    transform: translateY(-2px);
}

.mobile-social-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.mobile-social-btn.facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.mobile-social-btn.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.mobile-social-btn.copy:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important;
    visibility: visible !important;
}

.mobile-footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.mobile-menu-footer > p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

.mobile-footer-section {
    margin-bottom: 20px;
}

.mobile-footer-section h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mobile-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-footer-section ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-footer-section ul li i {
    color: #667eea;
    font-size: 12px;
}

.mobile-footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide on Desktop */
@media (min-width: 769px) {
    .mobile-menu-drawer {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Optimize for smaller screens */
@media (max-width: 480px) {
    .mobile-menu-drawer {
        max-width: 100%;
    }
    
    .mobile-menu-title h2 {
        font-size: 20px;
    }
    
    .mobile-social-buttons {
        grid-template-columns: 1fr;
    }
}

